.odisha-glance-page {
    --ogl-line: color-mix(in srgb, var(--premium-line, #d6dde6) 85%, #ffffff);
    --ogl-line-strong: color-mix(in srgb, var(--premium-line-strong, #b8c3d1) 88%, #ffffff);
    --ogl-surface: color-mix(in srgb, var(--premium-surface, #ffffff) 94%, #eef3f8);
    --ogl-surface-soft: color-mix(in srgb, var(--premium-surface-soft, #f1f4f7) 90%, #ffffff);
    --ogl-text: var(--premium-text, #1c2835);
    --ogl-muted: var(--premium-text-soft, #516478);
    --ogl-accent: var(--premium-accent, #2f516a);
    --ogl-accent-strong: var(--premium-accent-strong, #213f56);
    display: grid;
    gap: 0.92rem;
    overflow: visible;
}

.odisha-glance-page > *,
.ogl-hero > *,
.ogl-fact-grid > *,
.ogl-grid-two > *,
.ogl-card-grid > *,
.ogl-dance-layout > *,
.ogl-tribal-wrap > *,
.ogl-person-grid > *,
.ogl-dimension-grid > * {
    min-width: 0;
}

.ogl-reveal {
    opacity: 0;
    transform: translateY(22px) scale(0.99);
    transition: opacity 580ms ease, transform 680ms cubic-bezier(0.21, 0.82, 0.25, 1);
}

.ogl-reveal.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.ogl-kicker {
    margin: 0;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--ogl-muted);
}

.ogl-section {
    border: 1px solid var(--ogl-line);
    border-radius: 20px;
    background: linear-gradient(162deg, var(--ogl-surface), var(--ogl-surface-soft));
    box-shadow: 0 12px 28px rgba(20, 40, 59, 0.1);
    padding: 0.94rem;
}

.ogl-section-head {
    margin-bottom: 0.72rem;
    display: grid;
    gap: 0.22rem;
}

.ogl-section-head h2 {
    margin: 0;
    font-size: clamp(1.4rem, 2.7vw, 2.15rem);
    line-height: 1.04;
    letter-spacing: -0.02em;
}

.ogl-section p,
.ogl-section li {
    color: var(--ogl-muted);
    line-height: 1.62;
}

.ogl-hero {
    border: 1px solid var(--ogl-line);
    border-radius: 24px;
    background:
        radial-gradient(560px 320px at 94% 8%, rgba(129, 154, 182, 0.21), transparent 72%),
        linear-gradient(150deg, rgba(255, 255, 255, 0.97), rgba(237, 244, 250, 0.95));
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(250px, 1fr);
    gap: 0.92rem;
    padding: 1rem;
    box-shadow: 0 18px 40px rgba(21, 38, 54, 0.12);
}

.ogl-hero-copy h1 {
    margin: 0.28rem 0 0.44rem;
    font-size: clamp(2rem, 5.1vw, 4.1rem);
    line-height: 0.92;
}

.ogl-hero-copy p {
    margin: 0;
    color: var(--ogl-muted);
    max-width: 66ch;
}

.ogl-hero-tags {
    margin-top: 0.75rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.36rem;
}

.ogl-hero-tags span {
    border: 1px solid var(--ogl-line);
    border-radius: 999px;
    padding: 0.27rem 0.58rem;
    font-size: 0.76rem;
    font-weight: 700;
    color: var(--ogl-muted);
    background: rgba(255, 255, 255, 0.7);
}

.ogl-hero-media {
    position: relative;
    min-height: 280px;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid var(--ogl-line-strong);
    transform-style: preserve-3d;
    transition: transform 260ms ease, box-shadow 260ms ease;
}

.ogl-hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.odisha-glance-page img.ogl-image-fallback {
    object-fit: cover !important;
    background: linear-gradient(160deg, #eef4fa, #f8fbff);
    padding: 0 !important;
}

.ogl-hero-media:hover {
    box-shadow: 0 18px 40px rgba(10, 22, 35, 0.28);
}

.ogl-media-badge {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: 999px;
    background: rgba(13, 30, 48, 0.6);
    color: #f2f8ff;
    font-size: 0.73rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    padding: 0.26rem 0.62rem;
    backdrop-filter: blur(4px);
    animation: oglBadgeFloat 4.8s ease-in-out infinite;
}

.ogl-media-badge-top {
    top: 0.62rem;
    left: 0.62rem;
}

.ogl-media-badge-bottom {
    bottom: 0.62rem;
    right: 0.62rem;
    animation-delay: 1.1s;
}

.ogl-fact-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 0.56rem;
}

.ogl-fact-card {
    border: 1px solid var(--ogl-line);
    border-radius: 14px;
    background: linear-gradient(165deg, var(--ogl-surface), var(--ogl-surface-soft));
    padding: 0.7rem 0.74rem;
}

.ogl-fact-card h3 {
    margin: 0 0 0.18rem;
    font-family: var(--font-body, "Manrope", "Segoe UI", sans-serif);
    font-size: 0.76rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--ogl-muted);
}

.ogl-fact-card p {
    margin: 0;
    font-size: 1.18rem;
    font-weight: 800;
    color: var(--ogl-text);
}

.ogl-timeline {
    display: grid;
    gap: 0.55rem;
}

.ogl-timeline article {
    border: 1px solid var(--ogl-line);
    border-radius: 14px;
    background: var(--ogl-surface);
    padding: 0.72rem;
    position: relative;
    overflow: hidden;
    transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.ogl-timeline article::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 4px;
    background: linear-gradient(180deg, var(--ogl-accent), var(--ogl-accent-strong));
    opacity: 0.66;
}

.ogl-timeline article:hover {
    transform: translateY(-2px);
    border-color: var(--ogl-line-strong);
    box-shadow: 0 14px 28px rgba(16, 35, 53, 0.14);
}

.ogl-timeline .year {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    border: 1px solid var(--ogl-line-strong);
    background: var(--ogl-surface-soft);
    color: var(--ogl-muted);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.2rem 0.5rem;
}

.ogl-timeline h3 {
    margin: 0.36rem 0 0.2rem;
    font-size: 1.16rem;
}

.ogl-timeline p {
    margin: 0;
}

.ogl-grid-two {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.76rem;
}

.ogl-panel {
    border: 1px solid var(--ogl-line);
    border-radius: 18px;
    background: linear-gradient(164deg, var(--ogl-surface), var(--ogl-surface-soft));
    box-shadow: 0 10px 22px rgba(20, 40, 59, 0.09);
    padding: 0.88rem;
}

.ogl-panel p {
    margin: 0 0 0.52rem;
}

.ogl-list {
    margin: 0;
    padding-left: 1.08rem;
    display: grid;
    gap: 0.26rem;
}

.ogl-media-stack {
    display: grid;
    gap: 0.56rem;
}

.ogl-media-stack img {
    width: 100%;
    border-radius: 14px;
    border: 1px solid var(--ogl-line);
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.ogl-card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.6rem;
}

.ogl-card {
    border: 1px solid var(--ogl-line);
    border-radius: 14px;
    background: var(--ogl-surface);
    padding: 0.7rem;
}

.ogl-card h3 {
    margin: 0 0 0.22rem;
    font-size: 1rem;
}

.ogl-card p {
    margin: 0;
}

.ogl-dance-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    gap: 0.66rem;
}

.ogl-dance-feature {
    margin: 0;
    border: 1px solid var(--ogl-line);
    border-radius: 16px;
    background: var(--ogl-surface);
    overflow: hidden;
}

.ogl-dance-feature img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    display: block;
}

.ogl-dance-feature figcaption {
    padding: 0.64rem 0.68rem;
    font-size: 0.9rem;
    color: var(--ogl-muted);
}

.ogl-dance-cards {
    display: grid;
    gap: 0.52rem;
}

.ogl-dance-cards article {
    border: 1px solid var(--ogl-line);
    border-radius: 14px;
    background: var(--ogl-surface);
    padding: 0.64rem;
}

.ogl-dance-cards h3 {
    margin: 0 0 0.18rem;
    font-size: 1rem;
}

.ogl-dance-cards p {
    margin: 0;
}

.ogl-map-panel {
    display: grid;
    gap: 0.6rem;
}

.ogl-map-image {
    width: 100%;
    min-height: 180px;
    border: 1px solid var(--ogl-line);
    border-radius: 14px;
    background: var(--ogl-surface);
    object-fit: contain;
    padding: 0.42rem;
}

.ogl-issue-mini {
    border: 1px solid var(--ogl-line);
    border-radius: 14px;
    background: var(--ogl-surface);
    padding: 0.7rem;
}

.ogl-issue-mini h3 {
    margin: 0 0 0.2rem;
}

.ogl-issue-mini p {
    margin: 0;
}

.ogl-tribal-wrap {
    display: grid;
    grid-template-columns: minmax(220px, 0.86fr) minmax(0, 1fr);
    gap: 0.76rem;
    align-items: start;
}

.ogl-tribal-image {
    margin: 0;
    border: 1px solid var(--ogl-line);
    border-radius: 16px;
    background: var(--ogl-surface);
    overflow: hidden;
}

.ogl-tribal-image img {
    width: 100%;
    height: 100%;
    min-height: 250px;
    object-fit: cover;
    display: block;
}

.ogl-person-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.56rem;
}

.ogl-person-card {
    border: 1px solid var(--ogl-line);
    border-radius: 14px;
    background: var(--ogl-surface);
    padding: 0.62rem;
    display: grid;
    align-content: start;
    gap: 0.34rem;
    transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.ogl-person-card img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 10px;
    border: 1px solid var(--ogl-line);
}

.ogl-person-card h3 {
    margin: 0;
    font-size: 1rem;
}

.ogl-person-card p {
    margin: 0;
    font-size: 0.92rem;
}

.ogl-person-card:hover {
    transform: translateY(-2px);
    border-color: var(--ogl-line-strong);
    box-shadow: 0 14px 28px rgba(16, 35, 53, 0.14);
}

.ogl-dimension-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.58rem;
}

.ogl-dimension-grid article {
    border: 1px solid var(--ogl-line);
    border-radius: 14px;
    background: var(--ogl-surface);
    padding: 0.7rem;
}

.ogl-dimension-grid h3 {
    margin: 0 0 0.2rem;
    font-size: 0.95rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.ogl-dimension-grid p {
    margin: 0;
    font-size: 0.9rem;
}

.ogl-endnote {
    border: 1px solid var(--ogl-line);
    border-radius: 18px;
    background: linear-gradient(164deg, var(--ogl-surface), var(--ogl-surface-soft));
    padding: 0.9rem;
}

.ogl-image-credits p {
    margin: 0 0 0.55rem;
}

.ogl-credit-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.42rem;
}

.ogl-credit-list li {
    border: 1px solid var(--ogl-line);
    border-radius: 12px;
    background: var(--ogl-surface);
}

.ogl-credit-list a {
    display: block;
    padding: 0.42rem 0.54rem;
    color: var(--ogl-text);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.84rem;
}

.ogl-credit-list a:hover,
.ogl-credit-list a:focus-visible {
    color: var(--ogl-accent-strong);
    background: color-mix(in srgb, var(--ogl-accent) 12%, var(--ogl-surface));
    outline: none;
}

.ogl-endnote p {
    margin: 0 0 0.72rem;
    font-size: 1.04rem;
}

.ogl-endnote-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.48rem;
}

body.dark-mode .odisha-glance-page {
    --ogl-line: #47617b;
    --ogl-line-strong: #607c98;
    --ogl-surface: #202d3b;
    --ogl-surface-soft: #1b2734;
    --ogl-text: #ecf4fd;
    --ogl-muted: #b6c8dc;
    --ogl-accent: #89b4d8;
    --ogl-accent-strong: #688fb3;
}

body.dark-mode .ogl-hero {
    background:
        radial-gradient(560px 320px at 94% 8%, rgba(133, 168, 201, 0.22), transparent 72%),
        linear-gradient(150deg, rgba(34, 48, 64, 0.98), rgba(27, 40, 53, 0.98));
}

body.dark-mode .ogl-hero-tags span {
    border-color: #587493;
    background: rgba(38, 55, 73, 0.8);
    color: #d6e6f7;
}

body.dark-mode .odisha-glance-page img.ogl-image-fallback {
    background: linear-gradient(160deg, #233447, #1c2a38);
}

body.dark-mode .ogl-media-badge {
    border-color: rgba(182, 210, 235, 0.44);
    background: rgba(11, 23, 36, 0.7);
}

body.dark-mode .ogl-fact-card,
body.dark-mode .ogl-timeline article,
body.dark-mode .ogl-panel,
body.dark-mode .ogl-card,
body.dark-mode .ogl-dance-feature,
body.dark-mode .ogl-dance-cards article,
body.dark-mode .ogl-issue-mini,
body.dark-mode .ogl-person-card,
body.dark-mode .ogl-dimension-grid article,
body.dark-mode .ogl-endnote {
    box-shadow: 0 12px 24px rgba(3, 10, 18, 0.36);
}

body.dark-mode .ogl-fact-card h3,
body.dark-mode .ogl-timeline .year,
body.dark-mode .ogl-dimension-grid h3,
body.dark-mode .ogl-kicker {
    color: #bdd0e4;
}

@keyframes oglBadgeFloat {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-4px);
    }
}

body.dark-mode .ogl-fact-card p,
body.dark-mode .ogl-timeline h3,
body.dark-mode .ogl-section-head h2,
body.dark-mode .ogl-card h3,
body.dark-mode .ogl-dance-cards h3,
body.dark-mode .ogl-person-card h3 {
    color: #edf5ff;
}

body.dark-mode .ogl-credit-list a {
    color: #dceafa;
}

body.dark-mode .ogl-credit-list a:hover,
body.dark-mode .ogl-credit-list a:focus-visible {
    color: #f2f8ff;
    background: color-mix(in srgb, #89b4d8 20%, #233447);
}

@media (max-width: 1120px) {
    .ogl-hero {
        grid-template-columns: 1fr;
    }

    .ogl-hero-media {
        min-height: 220px;
    }

    .ogl-fact-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .ogl-card-grid,
    .ogl-dimension-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ogl-person-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 860px) {
    .ogl-grid-two,
    .ogl-dance-layout,
    .ogl-tribal-wrap {
        grid-template-columns: 1fr;
    }

    .ogl-hero-copy h1 {
        font-size: clamp(1.8rem, 8.2vw, 2.7rem);
    }
}

@media (max-width: 640px) {
    .odisha-glance-page {
        gap: 0.7rem;
    }

    .ogl-hero,
    .ogl-section,
    .ogl-endnote {
        border-radius: 16px;
        padding: 0.76rem;
    }

    .ogl-fact-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.48rem;
    }

    .ogl-card-grid,
    .ogl-person-grid,
    .ogl-dimension-grid {
        grid-template-columns: 1fr;
    }

    .ogl-credit-list {
        grid-template-columns: 1fr;
    }

    .ogl-endnote-actions .btn-primary,
    .ogl-endnote-actions .btn-secondary {
        width: 100%;
    }
}

@media (max-width: 420px) {
    .ogl-fact-grid {
        grid-template-columns: 1fr;
    }
}

@media (prefers-reduced-motion: reduce) {
    .ogl-reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .ogl-hero-media {
        transition: none;
        transform: none !important;
    }

    .ogl-media-badge {
        animation: none !important;
    }
}
