:root {
    --ink: #101d3d;
    --navy: #14264f;
    --red: #d7273f;
    --green: #4b896f;
    --paper: #fff;
    --wash: #f4f6f1;
    --line: #dce2e5;
    --muted: #677187;
    --radius: 6px
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font: 16px/1.55 "Nirmala UI","Noto Sans Devanagari",system-ui,sans-serif
}

a {
    color: inherit;
    text-decoration: none
}

img {
    display: block;
    max-width: 100%;
    width: 100%;
    object-fit: cover
}

.wrap {
    width: min(1180px,calc(100% - 36px));
    margin: auto
}

.skip {
    position: absolute;
    left: -9999px
}

    .skip:focus {
        left: 12px;
        top: 12px;
        z-index: 99;
        background: #fff;
        padding: 10px
    }

.topbar {
    background: var(--navy);
    color: #fff;
    font-size: 12px;
    padding: 7px 0
}

    .topbar span {
        float: right;
        opacity: .72
    }

.masthead {
    height: 88px;
    display: flex;
    align-items: center;
    justify-content: space-between
}

.brand {
    display: grid;
    grid-template-columns: 44px auto;
    grid-template-rows: auto auto
}

    .brand > span {
        grid-row: 1/3;
        width: 38px;
        height: 38px;
        display: grid;
        place-items: center;
        border-radius: 50%;
        background: var(--red);
        color: #fff;
        font-size: 23px;
        font-weight: 900
    }

    .brand strong {
        font-family: Georgia,"Nirmala UI",serif;
        font-size: 23px;
        line-height: 1.1
    }

    .brand small {
        color: var(--muted)
    }

.main-nav {
    border-block: 1px solid var(--line)
}

    .main-nav .wrap {
        display: flex;
        gap: 28px;
        overflow: auto
    }

    .main-nav a {
        padding: 13px 0;
        font-size: 14px;
        font-weight: 700;
        white-space: nowrap;
        border-bottom: 2px solid transparent
    }

        .main-nav a:hover {
            border-color: var(--red)
        }

.menu-toggle {
    display: none
}

.search-link {
    font-weight: 700
}

.ad-slot {
    height: 105px;
    margin: 18px 0;
    background: #f7f8fa;
    color: #9aa2b1;
    display: grid;
    place-items: center;
    font-size: 11px;
    letter-spacing: .18em
}

.breaking {
    display: flex;
    gap: 24px;
    padding: 11px 16px;
    background: #fff2f2;
    border-left: 3px solid var(--red);
    font-size: 13px
}

    .breaking b {
        color: var(--red)
    }

.hero-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 36px;
    padding: 40px 0;
    border-bottom: 1px solid var(--line)
}

.hero-story img {
    aspect-ratio: 16/8.6
}

.hero-story h1 {
    font: 700 clamp(30px,4vw,55px)/1.12 Georgia,"Nirmala UI",serif;
    margin: 12px 0
}

.hero-story p {
    font-size: 18px;
    color: var(--muted);
    max-width: 780px
}

.eyebrow {
    text-transform: uppercase;
    color: var(--red);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .08em
}

.trending h2 {
    font: 700 22px Georgia,"Nirmala UI",serif
}

.trending > a {
    display: flex;
    gap: 15px;
    padding: 16px 0;
    border-bottom: 1px solid var(--line);
    font-weight: 700
}

    .trending > a > b {
        font: 700 22px Georgia,serif;
        color: var(--red)
    }

.trending small {
    display: block;
    color: var(--muted);
    font-weight: 500
}

.section {
    padding: 38px 0
}

.section-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    border-bottom: 2px solid var(--ink);
    margin-bottom: 22px
}

    .section-head h2 {
        margin: 0 0 10px;
        font: 700 27px Georgia,"Nirmala UI",serif
    }

    .section-head > a {
        font-size: 12px;
        margin-bottom: 12px
    }

.card-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 32px
}

.news-card .card-image img {
    aspect-ratio: 16/9;
    background: #edf0f7
}

.news-card .eyebrow {
    display: block;
    margin-top: 12px
}

.news-card h3 {
    font: 700 20px/1.3 Georgia,"Nirmala UI",serif;
    margin: 7px 0
}

.news-card p {
    color: var(--muted);
    font-size: 14px;
    margin: 7px 0
}

.news-card small {
    color: #8a92a2
}

.news-strip {
    display: grid;
    grid-template-columns: 1.5fr repeat(4,1fr);
    gap: 24px;
    background: var(--navy);
    color: #fff;
    padding: 28px;
    border-radius: var(--radius);
    margin: 20px 0
}

    .news-strip small, .news-strip b {
        color: #b4dd7c
    }

    .news-strip h2 {
        font: 700 25px Georgia,"Nirmala UI",serif;
        margin: 4px 0
    }

    .news-strip a {
        display: flex;
        gap: 10px;
        font-size: 13px
    }

.page-hero {
    background: var(--wash);
    padding: 55px 0;
    margin-bottom: 35px
}

    .page-hero h1 {
        font: 700 clamp(32px,5vw,58px) Georgia,"Nirmala UI",serif;
        margin: 8px 0
    }

.listing-grid {
    margin-bottom: 60px
}

.article-layout {
    display: grid;
    grid-template-columns: minmax(0,780px) 300px;
    gap: 60px;
    padding: 45px 0
}

.article h1 {
    font: 700 clamp(34px,5vw,60px)/1.12 Georgia,"Nirmala UI",serif;
    margin: 12px 0
}

.standfirst {
    font-size: 21px;
    color: var(--muted)
}

.breadcrumbs {
    font-size: 13px;
    color: var(--muted);
    margin-bottom: 24px
}

.byline {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    padding: 16px 0;
    border-block: 1px solid var(--line);
    font-size: 13px
}

.article figure {
    margin: 28px 0
}

    .article figure img {
        max-height: 520px
    }

.article figcaption {
    color: var(--muted);
    font-size: 12px;
    margin-top: 6px
}

.article-body {
    font: 19px/1.8 Georgia,"Nirmala UI",serif
}

    .article-body h2 {
        font-size: 30px
    }

.share {
    display: flex;
    gap: 10px;
    border-top: 1px solid var(--line);
    padding-top: 24px
}

    .share a, .share button, .newsletter button, .search-form button {
        border: 0;
        background: var(--navy);
        color: #fff;
        padding: 11px 16px;
        font-weight: 700;
        border-radius: 4px
    }

.tall {
    height: 260px
}

.newsletter {
    margin: 40px 0 60px;
    background: #eef2fa;
    text-align: center;
    padding: 55px 20px;
    border-radius: var(--radius)
}

    .newsletter h2 {
        font: 700 34px Georgia,"Nirmala UI",serif
    }

    .newsletter form {
        display: flex;
        justify-content: center
    }

    .newsletter input, .search-form input {
        border: 1px solid var(--line);
        padding: 12px;
        width: min(350px,70vw)
    }

.search-form label {
    display: block;
    font: 700 36px Georgia,"Nirmala UI",serif;
    margin-bottom: 15px
}

.search-form > div {
    display: flex
}

.empty-state {
    padding: 60px;
    text-align: center;
    background: var(--wash);
}

footer {
    background: #0f1c3b;
    color: #fff;
    padding: 55px 0
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 30px
}

    .footer-grid h2, .footer-grid h3 {
        font-family: Georgia,"Nirmala UI",serif
    }

    .footer-grid a {
        display: block;
        opacity: .8;
        margin: 8px 0
    }

.cookie-banner {
    position: fixed;
    z-index: 30;
    bottom: 18px;
    left: 18px;
    width: min(520px,calc(100% - 36px));
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: 0 12px 40px #0f1c3b33;
    padding: 22px
}

    .cookie-banner button {
        padding: 10px 14px;
        border: 0;
        background: var(--navy);
        color: #fff;
        margin-right: 8px
    }

    .cookie-banner a {
        text-decoration: underline
    }

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0,0,0,0)
}

@media(max-width:800px) {
    .wrap {
        width: min(100% - 24px,1180px)
    }

    .masthead {
        height: 72px
    }

    .menu-toggle {
        display: block;
        border: 0;
        background: none;
        font-size: 24px
    }

    .search-link {
        display: none
    }

    .main-nav {
        display: none
    }

        .main-nav.open {
            display: block
        }

        .main-nav .wrap {
            flex-direction: column;
            gap: 0;
            padding-block: 10px
        }

    .hero-grid, .article-layout {
        grid-template-columns: 1fr
    }

    .hero-grid {
        padding: 24px 0
    }

    .card-grid {
        grid-template-columns: 1fr 1fr;
        gap: 22px
    }

    .news-strip {
        grid-template-columns: 1fr 1fr
    }

        .news-strip > div {
            grid-column: 1/-1
        }

    .article-layout {
        gap: 20px
    }

        .article-layout > aside {
            display: none
        }

    .footer-grid {
        grid-template-columns: 1fr 1fr
    }
}

@media(max-width:520px) {
    .brand small {
        display: none
    }

    .card-grid {
        grid-template-columns: 1fr
    }

    .news-strip {
        grid-template-columns: 1fr
    }

    .newsletter form {
        display: block
    }

    .newsletter input {
        width: 100%;
        margin-bottom: 8px
    }

    .topbar span {
        display: none
    }
}

.story-pagination {
    display: flex;
    gap: 8px;
    align-items: center;
    flex-wrap: wrap;
    margin: 28px 0
}

    .story-pagination a {
        padding: 10px 16px;
        border: 1px solid #dce1eb;
        border-radius: 4px
    }

    .story-pagination [aria-current] {
        background: #20315b;
        color: #fff
    }

.article-body img {
    max-width: 100%;
    height: auto
}

.article-body figure {
    margin: 24px 0
}

.article-body figcaption {
    font-size: 14px;
    color: #68758a
}

.article-context {
    padding: 20px 0
}

    .article-context .tag {
        display: inline-block;
        padding: 5px 12px;
        background: #edf0f5;
        border-radius: 4px
    }

.brand-logo {
    grid-row: 1/3;
    width: 44px;
    height: 44px;
    object-fit: contain;
    margin-right: 8px
}

.advertisement {
    position: relative;
    margin: 20px 0;
    padding: 30px 18px 16px;
    background: linear-gradient(180deg,#fafbfc,#f4f6f7);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    text-align: center;
    overflow: hidden
}

.ad-label {
    position: absolute;
    top: 8px;
    left: 0;
    right: 0;
    color: #7c8597;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase
}

.ad-slide {
    animation: ad-fade .35s ease
}

    .ad-slide[hidden] {
        display: none
    }

    .ad-slide > a {
        display: block
    }

    .ad-slide img {
        width: auto;
        max-width: 100%;
        max-height: 320px;
        margin: auto;
        object-fit: contain;
        border-radius: 3px
    }

.ad-header .ad-slide img, .ad-home .ad-slide img, .ad-footer .ad-slide img {
    max-height: 280px
}

.ad-sidebar .ad-slide img {
    max-height: 420px
}

.ad-article .ad-slide img {
    max-height: 360px
}

.ad-controls {
    display: flex;
    width: max-content;
    max-width: 100%;
    justify-content: center;
    align-items: center;
    gap: 4px;
    margin: 13px auto 0;
    padding: 4px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 999px;
    box-shadow: 0 4px 14px #101d3d14;
    color: var(--muted);
    font-size: 12px;
    line-height: 1
}

    .ad-controls button {
        min-width: 32px;
        height: 30px;
        border: 0;
        background: transparent;
        color: var(--ink);
        padding: 0 9px;
        border-radius: 999px;
        font: 700 13px/30px "Nirmala UI",system-ui,sans-serif;
        cursor: pointer
    }

        .ad-controls button:hover, .ad-controls button:focus-visible {
            background: var(--navy);
            color: #fff;
            outline: none
        }

    .ad-controls [data-ad-status] {
        min-width: 48px;
        padding: 0 7px;
        font-variant-numeric: tabular-nums
    }

    .ad-controls [data-ad-pause] {
        min-width: 58px;
        border-inline: 1px solid var(--line);
        border-radius: 0
    }

@keyframes ad-fade {
    from {
        opacity: .25
    }

    to {
        opacity: 1
    }
}

@media(max-width:800px) {
    .advertisement {
        padding-inline: 10px
    }

    .ad-header .ad-slide img, .ad-home .ad-slide img, .ad-footer .ad-slide img {
        max-height: 220px
    }
}

@media(prefers-reduced-motion:reduce) {
    .ad-slide {
        animation: none
    }
}

.comments-section {
    margin: 42px 0 20px;
    padding-top: 32px;
    border-top: 2px solid var(--ink)
}

    .comments-section > h2 {
        font: 700 30px Georgia,"Nirmala UI",serif;
        margin: 0 0 8px
    }

    .comments-section > p {
        color: var(--muted);
        margin-bottom: 24px
    }

.reader-comment {
    padding: 18px 0;
    border-bottom: 1px solid var(--line)
}

    .reader-comment strong {
        font-size: 15px
    }

    .reader-comment small {
        margin-left: 12px;
        color: var(--muted);
        font-size: 11px
    }

    .reader-comment p {
        margin: 8px 0 0;
        white-space: normal;
        overflow-wrap: anywhere
    }

.comment-form {
    display: grid;
    gap: 18px;
    margin-top: 24px;
    padding: 26px;
    background: #f7f9fb;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 1px 2px #101d3d0a
}

.comment-field {
    display: grid;
    gap: 7px
}

    .comment-field label {
        font-size: 13px;
        font-weight: 700
    }

    .comment-field input, .comment-field textarea {
        display: block;
        width: 100%;
        min-height: 44px;
        border: 1px solid #c6d0da;
        background: #fff;
        color: var(--ink);
        border-radius: 6px;
        padding: 11px 13px;
        font: inherit;
        line-height: 1.5;
        transition: border-color .15s,box-shadow .15s
    }

    .comment-field textarea {
        min-height: 130px;
        resize: vertical
    }

        .comment-field input:focus, .comment-field textarea:focus {
            border-color: #5574ad;
            box-shadow: 0 0 0 3px #5574ad22;
            outline: 0
        }

    .comment-field small {
        color: var(--muted);
        font-size: 11px
    }

.comment-form button {
    justify-self: start;
    min-height: 44px;
    border: 1px solid var(--navy);
    border-radius: 6px;
    background: var(--navy);
    color: #fff;
    padding: 10px 18px;
    font-weight: 700;
    cursor: pointer
}

    .comment-form button:hover, .comment-form button:focus-visible {
        background: #0c1938;
        box-shadow: 0 0 0 3px #20386f26;
        outline: 0
    }

.honeypot {
    position: absolute !important;
    left: -10000px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important
}

.comment-notice {
    padding: 12px 15px;
    margin: 14px 0;
    border: 1px solid transparent;
    border-radius: 6px;
    font-size: 13px
}

    .comment-notice.success {
        background: #eaf5e3;
        border-color: #cfe5c6;
        color: #285a20
    }

    .comment-notice.error {
        background: #fff0f0;
        border-color: #f0cccc;
        color: #9b2424
    }

@media(max-width:520px) {
    .comment-form {
        padding: 18px
    }

    .reader-comment small {
        display: block;
        margin: 4px 0 0
    }
}
