.scf-news-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 10px 100px;
}

.section-divider {
    border: none;
    border-top: 2px solid #e5e7eb;
    margin: 40px 0;
}

.news-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 16px;
    align-items: stretch;
}

.news-card {
    display: flex;
    flex-direction: column;
    text-decoration: none !important;
    color: inherit;
    overflow: hidden;
    transition: transform 0.2s;
}

.news-card:hover {
    transform: translateY(-2px);
}

.news-card--featured {
    grid-row: 1 / 3;
    height: 100%;
}

.news-card__image-wrap {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 12px;
    background: linear-gradient(90deg, #e5e7eb 25%, #f0f0f0 50%, #e5e7eb 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}

.news-card--featured .news-card__image-wrap {
    flex: 1;
    padding-bottom: 0;
    min-height: 208px;
}

.news-card--small .news-card__image-wrap {
    padding-bottom: 56.25%;
}

.news-card__image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-card__title {
    margin: 10px 0 0;
    font-size: 15px;
    font-weight: 600;
    color: #1e5a8e;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.news-card--featured .news-card__title {
    font-size: 17px;
}

.news-card__placeholder,
.slider-card__placeholder {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: #e5e7eb;
}

.news-grid-right {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 16px;
}

@media (max-width: 768px) {
    .news-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .news-card--featured {
        grid-row: auto;
    }

    .news-grid-right {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    .news-grid-right {
        grid-template-columns: 1fr;
    }
}

.section-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.section-badge {
    display: inline-block;
    padding: 6px 24px;
    border: 2px solid #1e5a8e;
    border-radius: 24px;
    color: #1e5a8e;
    background: transparent;
    white-space: nowrap;
}

.slider-arrows {
    display: flex;
    gap: 8px;
    margin-left: auto;
}

.arrow-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: linear-gradient(135deg, #f857a6, #ff5858, #ff8c38);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0;
}

.slider-track-wrapper {
    overflow: hidden;
    position: relative;
}

.slider-track {
    display: flex;
    gap: 20px;
    transition: transform 0.4s ease;
}

.slider-card {
    flex: 0 0 calc(33.333% - 14px);
    min-width: 0;
    text-decoration: none !important;
    color: inherit;
    display: flex;
    flex-direction: column;
    transition: transform 0.2s;
}

.slider-card:hover {
    transform: translateY(-2px);
}

.slider-card__image-wrap {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    overflow: hidden;
    border-radius: 12px;
    background: linear-gradient(90deg, #e5e7eb 25%, #f0f0f0 50%, #e5e7eb 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}

.slider-card__image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.slider-card__title {
    margin: 10px 0 0;
    font-size: 15px;
    font-weight: 600;
    color: #1e5a8e;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

@media (max-width: 1024px) {
    .slider-card {
        flex: 0 0 calc(50% - 10px);
    }
}

.mobile-category-grid,
.mobile-see-more {
    display: none;
}

@media (max-width: 600px) {
    .slider-card {
        flex: 0 0 100%;
    }
    .slider-arrows {
        display: none;
    }
    .slider-track-wrapper {
        display: none;
    }
    .mobile-category-grid {
        display: flex;
        flex-direction: column;
        gap: 14px;
    }
    .mobile-see-more {
        display: flex;
        justify-content: center;
        margin-top: 18px;
    }
}

.mobile-category-card {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none !important;
    color: inherit;
}

.mobile-category-card__image-wrap {
    flex: 0 0 100px;
    width: 100px;
    height: 70px;
    border-radius: 8px;
    overflow: hidden;
    background: linear-gradient(90deg, #e5e7eb 25%, #f0f0f0 50%, #e5e7eb 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    position: relative;
}

.mobile-category-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.mobile-category-card__placeholder {
    width: 100%;
    height: 100%;
    background: #e5e7eb;
}

.mobile-category-card__title {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    color: #1e5a8e;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.mobile-category-card--featured {
    flex-direction: column;
    align-items: stretch;
}

.mobile-category-card__featured-image-wrap {
    width: 100%;
    height: 200px;
    border-radius: 12px;
    overflow: hidden;
    background: linear-gradient(90deg, #e5e7eb 25%, #f0f0f0 50%, #e5e7eb 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    position: relative;
}

.mobile-category-card--featured .mobile-category-card__title {
    margin-top: 8px;
    font-size: 16px;
    -webkit-line-clamp: 3;
}

.mobile-see-more__btn {
    display: inline-block;
    padding: 12px 36px;
    border: none;
    border-radius: 30px;
    background: linear-gradient(135deg, #f857a6, #ff5858, #ff8c38);
    color: #fff !important;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none !important;
}

.mobile-see-more__btn:hover {
    opacity: 0.9;
    color: #fff;
}

@keyframes shimmer {
    0%   { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}