.csi-news-main {
    background: #f6f4ed;
}

.csi-news-hero__inner,
.csi-news-section > .nav-container,
.csi-news-article__header,
.csi-news-article__layout {
    display: block;
}

.csi-news-hero {
    position: relative;
    overflow: hidden;
    padding: clamp(5.5rem, 9vw, 8.5rem) 0 clamp(4rem, 7vw, 6.5rem);
    background:
        linear-gradient(115deg, rgba(11, 39, 30, 0.96), rgba(20, 70, 51, 0.86)),
        url('../img/corbett-jungle-jeep-safari.webp') center 44% / cover;
    color: #fff;
}

.csi-news-hero::after {
    content: '';
    position: absolute;
    inset: auto -8% -45% 40%;
    height: 78%;
    border: 1px solid rgba(238, 165, 96, 0.3);
    border-radius: 50%;
    pointer-events: none;
}

.csi-news-hero__inner {
    position: relative;
    z-index: 1;
    max-width: 850px;
}

.csi-news-kicker {
    margin: 0 0 0.8rem;
    color: #d9904f;
    font-family: 'Manrope', sans-serif;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.2em;
    line-height: 1.4;
    text-transform: uppercase;
}

.csi-news-hero .csi-news-kicker {
    color: #f0ad6f;
}

.csi-news-hero h1,
.csi-news-article__header h1 {
    max-width: 920px;
    margin: 0;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(3rem, 7vw, 5.9rem);
    font-weight: 600;
    letter-spacing: -0.03em;
    line-height: 0.95;
}

.csi-news-hero__inner > p:last-child {
    max-width: 700px;
    margin: 1.4rem 0 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: clamp(1rem, 1.7vw, 1.18rem);
    line-height: 1.75;
}

.csi-news-section {
    padding: clamp(4rem, 7vw, 7rem) 0;
}

.csi-news-section--unavailable {
    min-height: 70vh;
    padding-top: 9rem;
}

.csi-news-section__heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 2rem;
}

.csi-news-section__heading h2 {
    margin: 0;
    color: #183d2e;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(2.4rem, 4vw, 3.8rem);
    line-height: 1;
}

.csi-news-section__heading > p {
    margin: 0;
    color: #65736b;
    font-size: 0.9rem;
}

.csi-news-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(1.2rem, 2vw, 1.8rem);
}

.csi-news-card {
    min-width: 0;
    overflow: hidden;
    border: 1px solid rgba(22, 61, 46, 0.12);
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 18px 44px rgba(19, 51, 40, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.csi-news-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 54px rgba(19, 51, 40, 0.13);
}

.csi-news-card__media {
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #dfe8df;
}

.csi-news-card__media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.csi-news-card:hover .csi-news-card__media img {
    transform: scale(1.035);
}

.csi-news-card__placeholder {
    display: grid;
    width: 100%;
    height: 100%;
    place-items: center;
    background: linear-gradient(135deg, #173f2d, #2f7756);
    color: rgba(255, 255, 255, 0.74);
}

.csi-news-card__placeholder svg {
    width: 2.4rem;
    height: 2.4rem;
}

.csi-news-card__body {
    display: flex;
    min-height: 285px;
    flex-direction: column;
    padding: 1.5rem;
}

.csi-news-card__body time {
    color: #ba7038;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.csi-news-card__body h3 {
    margin: 0.65rem 0 0.75rem;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(1.65rem, 2.5vw, 2.05rem);
    line-height: 1.08;
}

.csi-news-card__body h3 a {
    color: #173d2d;
    text-decoration: none;
}

.csi-news-card__body h3 a:hover {
    color: #a95f2d;
}

.csi-news-card__body > p {
    margin: 0;
    color: #5c6d64;
    font-size: 0.92rem;
    line-height: 1.7;
}

.csi-news-card__link {
    align-self: flex-start;
    margin-top: auto;
    padding-top: 1.2rem;
    color: #1f6548;
    font-size: 0.82rem;
    font-weight: 800;
    text-decoration: none;
}

.csi-news-card__link:hover {
    text-decoration: underline;
}

.csi-news-pagination {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 1rem;
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(22, 61, 46, 0.14);
}

.csi-news-pagination a {
    color: #1f6548;
    font-weight: 800;
    text-decoration: none;
}

.csi-news-pagination a:last-child {
    text-align: right;
}

.csi-news-pagination span {
    color: #69766f;
    font-size: 0.85rem;
}

.csi-news-state {
    max-width: 700px;
    margin: 0 auto;
    padding: clamp(2rem, 5vw, 4rem);
    border: 1px solid rgba(22, 61, 46, 0.12);
    border-radius: 28px;
    background: #fff;
    text-align: center;
    box-shadow: 0 20px 50px rgba(19, 51, 40, 0.08);
}

.csi-news-state > span {
    display: grid;
    width: 3.3rem;
    height: 3.3rem;
    margin: 0 auto 1.25rem;
    place-items: center;
    border-radius: 50%;
    background: #e8f0e9;
    color: #1e6547;
    font-family: Georgia, serif;
    font-size: 1.4rem;
    font-weight: 700;
}

.csi-news-state--error > span {
    background: #fff0e6;
    color: #a34d21;
}

.csi-news-state h1,
.csi-news-state h2 {
    margin: 0;
    color: #173d2d;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(2rem, 4vw, 3rem);
}

.csi-news-state p {
    margin: 0.85rem auto 1.4rem;
    color: #617169;
}

.csi-news-state a,
.csi-home-news__intro a {
    color: #1e6547;
    font-weight: 800;
    text-decoration: none;
}

.csi-news-breadcrumbs {
    padding: 7.2rem 0 1.1rem;
    border-bottom: 1px solid rgba(22, 61, 46, 0.1);
    background: #eef1e9;
}

.csi-news-breadcrumbs .nav-container {
    display: flex;
    gap: 0.65rem;
    align-items: center;
    overflow: hidden;
    color: #6a786f;
    font-size: 0.78rem;
    white-space: nowrap;
}

.csi-news-breadcrumbs a {
    color: #28664c;
    font-weight: 700;
    text-decoration: none;
}

.csi-news-breadcrumbs [aria-current='page'] {
    overflow: hidden;
    text-overflow: ellipsis;
}

.csi-news-article {
    padding: clamp(3.5rem, 7vw, 6.5rem) 0 clamp(5rem, 8vw, 8rem);
}

.csi-news-article__header {
    max-width: 1000px;
    text-align: center;
}

.csi-news-article__header h1 {
    margin: 0 auto;
    color: #173d2d;
}

.csi-news-article__dates {
    display: flex;
    justify-content: center;
    gap: 1.2rem;
    margin-top: 1.3rem;
    color: #69766f;
    font-size: 0.8rem;
}

.csi-news-article__layout {
    max-width: 980px;
}

.csi-news-article__figure {
    aspect-ratio: 16 / 9;
    overflow: hidden;
    margin: clamp(2.5rem, 5vw, 4.5rem) 0 0;
    border-radius: 28px;
    background: #dfe8df;
    box-shadow: 0 25px 60px rgba(19, 51, 40, 0.15);
}

.csi-news-article__figure img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.csi-news-article__body {
    max-width: 760px;
    margin: clamp(2.5rem, 5vw, 4.5rem) auto 0;
    color: #2b4438;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(1.05rem, 1.5vw, 1.2rem);
    line-height: 1.9;
}

.csi-news-article__body p {
    margin: 0 0 1.55rem;
}

.csi-news-article__body p:first-child::first-letter {
    float: left;
    margin: 0.13em 0.12em 0 0;
    color: #b96e38;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 3.7em;
    line-height: 0.75;
}

.csi-news-article__footer {
    max-width: 760px;
    margin: 2.2rem auto 0;
    padding-top: 1.4rem;
    border-top: 1px solid rgba(22, 61, 46, 0.14);
}

.csi-news-article__footer a {
    color: #1e6547;
    font-weight: 800;
    text-decoration: none;
}

.csi-home-news__intro p {
    margin-bottom: 0.75rem;
}

@media (max-width: 900px) {
    .csi-news-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .csi-news-grid--home .csi-news-card:last-child {
        grid-column: 1 / -1;
        max-width: calc(50% - 0.6rem);
    }
}

@media (max-width: 640px) {
    .csi-news-hero {
        padding-top: 4.7rem;
    }

    .csi-news-grid,
    .csi-news-grid--home {
        grid-template-columns: 1fr;
    }

    .csi-news-grid--home .csi-news-card:last-child {
        grid-column: auto;
        max-width: none;
    }

    .csi-news-section__heading {
        display: block;
    }

    .csi-news-section__heading > p {
        margin-top: 0.65rem;
    }

    .csi-news-card__body {
        min-height: 0;
    }

    .csi-news-card__link {
        margin-top: 1rem;
    }

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

    .csi-news-pagination span {
        grid-column: 1 / -1;
        grid-row: 1;
        text-align: center;
    }

    .csi-news-article__dates {
        flex-direction: column;
        gap: 0.25rem;
    }

    .csi-news-article__figure {
        border-radius: 18px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .csi-news-card,
    .csi-news-card__media img {
        transition: none;
    }
}
