.news-hero {
    position: relative;
    width: 100%;
    background-color: #000;
    color: #fff;
    overflow: hidden;
}

.news-hero-bg {
    position: relative;
    width: 100%;
    height: min(40vh, 260px);
    min-height: 200px;
    background-color: #000;
}

.news-hero-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
}

.news-hero-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(
            to bottom,
            rgba(0,0,0,0.4) 0%,
            rgba(0,0,0,0.6) 60%,
            rgba(0,0,0,0.8) 100%
    );
}

.news-title-badge {
    position: absolute;
    left: 0;
    bottom: 0;
    padding: 16px 24px;
    background-color: #d1007d;
    max-width: 90%;
}

.news-heading {
    margin: 0;
    color: #fff;
    font-weight: 700;
    font-size: clamp(20px, 1vw + 1rem, 32px);
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: .02em;
}

.news-list-section {
    background-color: #fff;
    color: #000;
}

.news-list-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 16px 80px;
    position: relative;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    column-gap: 32px;
    row-gap: 56px;
}

.news-card {
    display: flex;
    flex-direction: column;
    max-width: 360px;
}

.news-thumb {
    width: 100%;
    aspect-ratio: 16/9;
    background-color: #000;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.1);
}

.news-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 40%;
    display: block;
}

.news-card-title {
    margin: 16px 0 16px 0;
    font-size: 15px;
    line-height: 1.4;
    font-weight: 700;
    color: #000;
}

.news-readmore {
    display: inline-flex;
    align-items: center;
    column-gap: 4px;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.3;
    text-transform: uppercase;
    color: #007f7a;
    text-decoration: none;
}

.news-readmore .arrow {
    font-weight: 700;
    line-height: 1;
}

.news-date {
    margin-top: 16px;
    font-size: 12px;
    line-height: 1.4;
    color: rgba(0,0,0,0.7);
    font-weight: 500;
}

.radio-sticky {
    position: fixed;
    right: 16px;
    bottom: 16px;
    z-index: 999;
}

@media (max-width: 768px) {
    .news-hero-bg {
        height: 200px;
    }

    .news-title-badge {
        padding: 12px 16px;
    }

    .news-heading {
        font-size: clamp(18px, 1vw + 1rem, 28px);
    }

    .news-list-inner {
        padding: 32px 16px 80px;
    }

    .news-grid {
        column-gap: 24px;
        row-gap: 40px;
    }

    .news-card {
        max-width: 100%;
    }
}
