:root {
    --color-bg: #f3f1ea;
    --color-text: #142033;
    --color-muted: #5f6778;
    --color-primary: #163a70;
    --color-primary-dark: #0d2850;
    --color-accent: #b6362f;
    --color-ink: #111827;
    --color-gold: #d2ab57;
    --color-surface: #fffdf8;
    --color-soft: #e9edf4;
    --color-border: #d8dfeb;
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 22px;
    --shadow-soft: 0 18px 50px rgba(34, 26, 18, 0.1);
    --shadow-lift: 0 28px 80px rgba(34, 26, 18, 0.16);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    background:
        radial-gradient(circle at 18% 0%, rgba(199, 154, 59, 0.12), transparent 34%),
        linear-gradient(180deg, #fbf8f2 0%, var(--color-bg) 42%, #f8f5f0 100%);
    color: var(--color-text);
    font-family: "Inter", "Segoe UI", Arial, Helvetica, sans-serif;
    line-height: 1.5;
}

body.menu-open {
    overflow: hidden;
}

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

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

.container {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
}

.site-header {
    background: rgba(255, 253, 249, 0.94);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(228, 219, 207, 0.78);
    box-shadow: 0 14px 36px rgba(34, 26, 18, 0.06);
    position: sticky;
    top: 0;
    z-index: 40;
}

.top-bar {
    background: linear-gradient(90deg, #111827, #251116 50%, #111827);
    color: #fff;
    font-size: 0.82rem;
}

.top-bar-inner,
.header-main-inner,
.sub-nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.top-bar-inner {
    min-height: 36px;
}

.top-bar p {
    margin: 0;
}

.top-live,
.listen-button {
    align-items: center;
    display: inline-flex;
    font-weight: 800;
    gap: 8px;
    text-transform: uppercase;
}

.top-live {
    color: #fff;
    letter-spacing: 0.08em;
    white-space: nowrap;
}

.top-live span,
.listen-button span {
    animation: livePulse 1.2s ease-in-out infinite;
    background: var(--color-accent);
    border-radius: 50%;
    height: 9px;
    width: 9px;
}

@keyframes livePulse {
    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(193, 18, 31, 0.5);
    }

    50% {
        box-shadow: 0 0 0 7px rgba(193, 18, 31, 0);
    }
}

.top-actions {
    align-items: center;
    display: flex;
    gap: 12px;
    white-space: nowrap;
}

.top-actions a {
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.78rem;
    font-weight: 700;
}

.icon-button,
.menu-toggle {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    color: inherit;
    cursor: pointer;
    font: inherit;
    font-size: 0.8rem;
    font-weight: 800;
    min-height: 38px;
    padding: 7px 13px;
}

.header-main {
    background: linear-gradient(180deg, rgba(255, 253, 249, 0.98), rgba(255, 253, 249, 0.92));
}

.header-main-inner {
    min-height: 86px;
}

.brand {
    align-items: center;
    color: var(--color-primary);
    display: inline-flex;
    gap: 12px;
    font-weight: 700;
    min-width: max-content;
}

.brand-mark {
    align-items: center;
    background: linear-gradient(145deg, var(--color-primary), #335f9e);
    border: 1px solid rgba(255, 255, 255, 0.48);
    border-radius: 12px;
    box-shadow: 0 12px 28px rgba(177, 15, 29, 0.24);
    color: #fff;
    display: inline-flex;
    font-size: 0.85rem;
    font-weight: 900;
    height: 46px;
    justify-content: center;
    width: 46px;
}

.brand strong {
    color: var(--color-text);
    display: block;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.22rem;
    letter-spacing: 0.01em;
}

.brand small {
    color: var(--color-muted);
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
}

.main-nav {
    align-items: center;
    display: flex;
    gap: 6px;
    color: var(--color-muted);
    font-size: 0.95rem;
}

.main-nav a.active,
.main-nav a:hover,
.sub-nav a:hover {
    color: var(--color-primary);
}

.main-nav > a,
.nav-item > a {
    border-radius: 999px;
    font-weight: 800;
    padding: 9px 10px;
}

.main-nav > a:hover,
.nav-item > a:hover,
.main-nav > a.active,
.nav-item > a.active {
    background: rgba(177, 15, 29, 0.08);
}

.nav-item {
    position: relative;
}

.dropdown-menu {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lift);
    display: none;
    gap: 24px;
    grid-template-columns: 1fr 1fr;
    left: 0;
    min-width: 420px;
    padding: 22px;
    position: absolute;
    top: 100%;
}

.has-dropdown:hover .dropdown-menu,
.has-dropdown:focus-within .dropdown-menu {
    display: grid;
}

.dropdown-menu strong {
    display: block;
    margin-bottom: 10px;
}

.dropdown-menu a {
    display: block;
    padding: 5px 0;
}

.header-live-info {
    background: var(--color-soft);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    color: var(--color-muted);
    display: grid;
    font-size: 0.82rem;
    line-height: 1.25;
    max-width: 190px;
    padding: 9px 11px;
}

.header-live-info span {
    color: var(--color-text);
    font-weight: 800;
}

.listen-button {
    background: linear-gradient(135deg, var(--color-accent), #d04f42);
    border-radius: 999px;
    box-shadow: 0 16px 32px rgba(182, 54, 47, 0.24);
    color: #fff;
    min-height: 42px;
    padding: 10px 16px;
    white-space: nowrap;
}

.listen-button span {
    background: #fff;
}

.menu-toggle {
    display: none;
}

.search-panel {
    background: rgba(255, 253, 249, 0.96);
    border-top: 1px solid var(--color-border);
    padding: 16px 0;
}

.site-search {
    display: flex;
    gap: 10px;
}

.site-search input {
    flex: 1;
}

.sub-nav {
    background: rgba(241, 235, 226, 0.74);
    border-top: 1px solid var(--color-border);
}

.sub-nav-inner {
    justify-content: flex-start;
    min-height: 42px;
    overflow-x: auto;
    white-space: nowrap;
}

.sub-nav a {
    color: var(--color-muted);
    font-size: 0.84rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.header-alert {
    background: linear-gradient(90deg, #fff7e2, #fff);
    color: #5f4100;
    font-size: 0.92rem;
    padding: 9px 0;
}

.header-alert strong {
    color: var(--color-accent);
    text-transform: uppercase;
}

.mobile-menu {
    background: rgba(0, 0, 0, 0.55);
    inset: 0;
    position: fixed;
    z-index: 100;
}

.mobile-menu-panel {
    background: var(--color-surface);
    height: 100%;
    margin-left: auto;
    max-width: 420px;
    overflow-y: auto;
    box-shadow: -28px 0 70px rgba(0, 0, 0, 0.24);
    padding: 22px;
    width: min(92vw, 420px);
}

.mobile-menu-head {
    align-items: center;
    display: flex;
    justify-content: space-between;
    margin-bottom: 18px;
}

.mobile-menu .icon-button {
    background: var(--color-soft);
    border-color: var(--color-border);
    color: var(--color-text);
}

.mobile-menu nav,
.mobile-categories,
.mobile-socials {
    display: grid;
    gap: 10px;
    margin-top: 18px;
}

.mobile-menu nav a,
.mobile-categories a,
.mobile-socials a {
    border-bottom: 1px solid var(--color-border);
    padding: 9px 0;
}

main.container {
    padding: 48px 0;
    min-height: calc(100vh - 145px);
}

.home-page {
    padding-top: 34px;
}

.news-page {
    padding: 34px 0 72px;
}

.page-hero {
    align-items: end;
    display: grid;
    gap: 28px;
    grid-template-columns: minmax(0, 1fr) auto;
    padding: 34px 0 22px;
}

.breadcrumb {
    color: var(--color-muted);
    display: flex;
    flex-wrap: wrap;
    font-size: 0.9rem;
    font-weight: 800;
    gap: 8px;
    margin-bottom: 14px;
}

.breadcrumb a {
    color: var(--color-primary);
}

.breadcrumb span::before {
    content: "/";
    margin-right: 8px;
}

.page-hero h1 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(3rem, 8vw, 6rem);
    line-height: 0.96;
    margin: 0 0 14px;
}

.page-hero p {
    color: var(--color-muted);
    font-size: 1.08rem;
    margin: 0;
    max-width: 760px;
}

.page-hero-actions {
    align-items: flex-end;
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-width: 260px;
}

.page-hero-actions span,
.result-count {
    color: var(--color-muted);
    font-size: 0.9rem;
    font-weight: 800;
}

.news-featured {
    padding: 18px 0 34px;
}

.news-featured-card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lift);
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
    overflow: hidden;
}

.news-featured-card img {
    height: 100%;
    min-height: 420px;
    object-fit: cover;
    width: 100%;
}

.news-featured-card > div {
    align-self: center;
    padding: 42px;
}

.news-featured-card h2 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2rem, 4vw, 3.3rem);
    line-height: 1.05;
    margin: 14px 0;
}

.news-featured-card p {
    color: var(--color-muted);
    font-size: 1.05rem;
}

.news-featured-card .meta {
    margin: 20px 0;
}

.news-tools {
    align-items: start;
    display: grid;
    gap: 18px;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.48fr);
    padding-bottom: 18px;
}

.news-search {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    box-shadow: 0 12px 30px rgba(34, 26, 18, 0.07);
    display: flex;
    gap: 10px;
    padding: 12px;
}

.news-search input {
    flex: 1;
}

.news-content-layout {
    align-items: start;
    display: grid;
    gap: 28px;
    grid-template-columns: minmax(0, 1fr) minmax(310px, 0.34fr);
}

.article-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.article-card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    box-shadow: 0 12px 30px rgba(34, 26, 18, 0.07);
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.article-card:hover {
    box-shadow: var(--shadow-soft);
    transform: translateY(-2px);
}

.article-card img {
    aspect-ratio: 16 / 10;
    object-fit: cover;
    width: 100%;
}

.article-card > div {
    padding: 20px;
}

.article-card h3 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.45rem;
    line-height: 1.16;
    margin: 12px 0 10px;
}

.article-card p {
    color: var(--color-muted);
    margin: 0 0 14px;
}

.article-card a {
    color: var(--color-primary);
    font-weight: 900;
}

.article-card-footer {
    border-top: 1px solid var(--color-border);
    color: var(--color-muted);
    display: flex;
    flex-wrap: wrap;
    font-size: 0.85rem;
    gap: 12px;
    margin: 14px 0;
    padding-top: 12px;
}

.ad-strip {
    align-items: center;
    background: linear-gradient(135deg, #fffdf9, #f8eadc);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    display: flex;
    gap: 18px;
    justify-content: space-between;
    margin-top: 24px;
    padding: 22px;
}

.ad-strip span {
    color: var(--color-primary);
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
}

.news-sidebar {
    display: grid;
    gap: 22px;
    position: sticky;
    top: 190px;
}

.sidebar-card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    padding: 22px;
}

.sidebar-card h2,
.sidebar-card h3 {
    font-family: Georgia, "Times New Roman", serif;
    margin-top: 0;
}

.live-mini audio {
    margin: 12px 0;
    width: 100%;
}

.live-mini {
    background: linear-gradient(180deg, #fffdf9, #f7eee5);
}

.most-read {
    display: grid;
    gap: 16px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.most-read li {
    display: grid;
    gap: 12px;
    grid-template-columns: 78px minmax(0, 1fr);
}

.most-read img {
    aspect-ratio: 1;
    border-radius: var(--radius-sm);
    object-fit: cover;
    width: 100%;
}

.most-read span {
    color: var(--color-primary);
    display: block;
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
}

.most-read a {
    display: block;
    font-weight: 900;
    line-height: 1.25;
}

.most-read small {
    color: var(--color-muted);
}

.category-grid {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.category-box,
.newsletter-mini {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    padding: 24px;
}

.category-box h3,
.newsletter-mini h2,
.related-news h2 {
    font-family: Georgia, "Times New Roman", serif;
}

.category-box ul {
    color: var(--color-muted);
    display: grid;
    gap: 8px;
    margin: 18px 0;
    padding-left: 18px;
}

.category-box > a {
    color: var(--color-primary);
    font-weight: 900;
}

.report-grid {
    display: grid;
    gap: 22px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.report-card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    display: grid;
    grid-template-columns: 0.9fr 1fr;
    overflow: hidden;
}

.report-card img {
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.report-card > div {
    padding: 24px;
}

.report-card h3 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.5rem;
    margin: 0 0 10px;
}

.report-card p {
    color: var(--color-muted);
}

.related-news {
    display: grid;
    gap: 28px;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
}

.related-list {
    display: grid;
    gap: 12px;
}

.related-list a {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    display: grid;
    gap: 4px;
    padding: 18px;
}

.related-list span {
    color: var(--color-primary);
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
}

.related-list small {
    color: var(--color-muted);
}

.newsletter-mini form {
    display: grid;
    gap: 12px;
}

.newsletter-mini p,
.newsletter-mini small {
    color: var(--color-muted);
}

.social-follow {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    padding-left: 28px;
    padding-right: 28px;
}

.pagination {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    padding: 8px 0 48px;
}

.pagination a {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 999px;
    font-weight: 900;
    min-width: 44px;
    padding: 10px 14px;
    text-align: center;
}

.pagination a.active,
.pagination a:hover {
    background: var(--color-primary);
    color: #fff;
}

.button {
    align-items: center;
    border: 1px solid transparent;
    border-radius: 999px;
    display: inline-flex;
    font-weight: 700;
    justify-content: center;
    min-height: 44px;
    padding: 10px 18px;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button:hover,
.listen-button:hover {
    transform: translateY(-1px);
}

.button-primary {
    background: linear-gradient(135deg, var(--color-primary), #27579b);
    box-shadow: 0 14px 28px rgba(22, 58, 112, 0.2);
    color: #fff;
}

.button-primary:hover {
    background: var(--color-primary-dark);
}

.button-secondary {
    background: var(--color-surface);
    border-color: var(--color-border);
    box-shadow: 0 8px 18px rgba(34, 26, 18, 0.06);
    color: var(--color-text);
}

.eyebrow,
.live-label {
    color: var(--color-gold);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.badge,
.status {
    background: rgba(22, 58, 112, 0.09);
    border: 1px solid rgba(22, 58, 112, 0.12);
    border-radius: 999px;
    color: var(--color-primary);
    display: inline-flex;
    font-size: 0.78rem;
    font-weight: 700;
    padding: 5px 9px;
}

.meta {
    color: var(--color-muted);
    font-size: 0.9rem;
}

.home-hero {
    display: grid;
    gap: 24px;
    grid-template-columns: minmax(0, 1.7fr) minmax(320px, 0.8fr);
}

.lead-story {
    background: #111;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lift);
    color: #fff;
    min-height: 560px;
    overflow: hidden;
    position: relative;
}

.lead-story-slide {
    inset: 0;
    opacity: 0;
    pointer-events: none;
    position: absolute;
    transition: opacity 0.4s ease;
}

.lead-story-slide.active {
    opacity: 1;
    pointer-events: auto;
    position: relative;
    z-index: 1;
}

.lead-story-slide::after {
    background:
        linear-gradient(90deg, rgba(8, 10, 18, 0.9), rgba(8, 10, 18, 0.24)),
        linear-gradient(0deg, rgba(8, 10, 18, 0.42), transparent 44%);
    content: "";
    inset: 0;
    position: absolute;
}

.lead-story img {
    height: 100%;
    inset: 0;
    object-fit: cover;
    opacity: 0.7;
    position: absolute;
    transform: scale(1.04);
    transition: transform 0.5s ease;
    width: 100%;
}

.lead-story-content {
    max-width: 680px;
    padding: 56px;
    position: relative;
    z-index: 1;
}

.lead-story h1 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.2rem, 6vw, 4.6rem);
    line-height: 1.02;
    margin: 14px 0;
}

.lead-story p {
    font-size: 1.12rem;
    max-width: 620px;
}

.lead-story .meta {
    color: rgba(255, 255, 255, 0.78);
    margin: 20px 0;
}

.story-dots {
    bottom: 28px;
    display: flex;
    gap: 8px;
    left: 56px;
    position: absolute;
    z-index: 2;
}

.story-dots button {
    background: rgba(255, 255, 255, 0.55);
    border: 0;
    border-radius: 999px;
    height: 10px;
    width: 32px;
}

.story-dots button.active {
    background: var(--color-gold);
}

.badge-faith {
    background: rgba(210, 171, 87, 0.18);
    border-color: rgba(210, 171, 87, 0.35);
    color: #785410;
}

.live-card,
.ad-panel,
.podcast-card,
.chronicle-card,
.whatsapp-card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    padding: 24px;
}

.live-card {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 253, 249, 0.98)),
        var(--color-surface);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.live-card h2 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 2rem;
    margin: 0;
}

.live-card-extended {
    gap: 14px;
}

.next-slot {
    border-top: 1px solid var(--color-border);
    padding-top: 12px;
}

.mini-prayer-card {
    background: linear-gradient(145deg, rgba(22, 58, 112, 0.08), rgba(210, 171, 87, 0.16));
    border: 1px solid rgba(22, 58, 112, 0.12);
    border-radius: var(--radius-md);
    padding: 16px;
}

.mini-prayer-card strong {
    display: block;
    margin-bottom: 8px;
}

.mini-prayer-card a {
    color: var(--color-primary);
    font-weight: 800;
}

.live-card p {
    margin: 0;
}

.live-card audio,
.podcast-card audio {
    width: 100%;
}

.unavailable {
    color: var(--color-muted);
    font-size: 0.9rem;
}

.breaking-news {
    background: linear-gradient(90deg, #111827, #2a1116, #111827);
    color: #fff;
    margin-top: 22px;
    overflow: hidden;
}

.breaking-inner {
    align-items: center;
    display: grid;
    gap: 18px;
    grid-template-columns: auto minmax(0, 1fr) auto;
    min-height: 58px;
}

.breaking-inner strong {
    color: #ffd166;
    text-transform: uppercase;
}

.ticker {
    display: flex;
    gap: 42px;
    overflow: hidden;
    white-space: nowrap;
}

.ticker span {
    animation: ticker 22s linear infinite;
}

@keyframes ticker {
    from {
        transform: translateX(20%);
    }

    to {
        transform: translateX(-120%);
    }
}

.section {
    padding: 64px 0;
}

.section-header {
    align-items: end;
    display: flex;
    gap: 24px;
    justify-content: space-between;
    margin-bottom: 24px;
}

.section-header h2,
.section h2 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.7rem, 3vw, 2.4rem);
    margin: 0 0 8px;
}

.section-header p,
.section > p {
    color: var(--color-muted);
    margin: 0;
}

.filters {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
}

.filters button {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 999px;
    color: var(--color-muted);
    font-weight: 800;
    padding: 9px 14px;
}

.filters a {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 999px;
    color: var(--color-muted);
    display: inline-flex;
    font-size: 0.92rem;
    font-weight: 800;
    padding: 9px 14px;
}

.filters button:first-child,
.filters a:first-child {
    background: var(--color-ink);
    color: #fff;
}

.filters a:hover {
    border-color: rgba(177, 15, 29, 0.3);
    color: var(--color-primary);
}

.news-layout {
    display: grid;
    gap: 22px;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
}

.featured-card,
.media-card,
.show-card,
.video-card,
.notice-list article {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    box-shadow: 0 12px 30px rgba(34, 26, 18, 0.07);
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.featured-card:hover,
.media-card:hover,
.show-card:hover,
.video-card:hover,
.notice-list article:hover {
    box-shadow: var(--shadow-soft);
    transform: translateY(-2px);
}

.featured-card img {
    aspect-ratio: 16 / 9;
    object-fit: cover;
    width: 100%;
}

.featured-card div,
.media-card div,
.show-card div {
    padding: 18px;
}

.featured-card h3,
.media-card h3,
.show-card h3,
.podcast-card h3,
.chronicle-card h3,
.video-card h3,
.notice-list h3 {
    margin: 10px 0 8px;
}

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

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

.media-card img,
.show-card img {
    aspect-ratio: 4 / 3;
    object-fit: cover;
    width: 100%;
}

.center-action {
    margin-top: 24px;
    text-align: center;
}

.two-columns {
    display: grid;
    gap: 28px;
    grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.7fr);
}

.popular-list {
    counter-reset: popular;
    display: grid;
    gap: 12px;
    list-style: none;
    margin: 22px 0 0;
    padding: 0;
}

.popular-list li {
    align-items: center;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    box-shadow: 0 10px 24px rgba(34, 26, 18, 0.06);
    display: grid;
    gap: 4px;
    grid-template-columns: 56px minmax(0, 1fr);
    padding: 14px;
}

.popular-list li::before {
    color: var(--color-gold);
    content: counter(popular, decimal-leading-zero);
    counter-increment: popular;
    font-size: 1.35rem;
    font-weight: 800;
    grid-row: span 2;
}

.popular-list a {
    font-weight: 800;
}

.popular-list span {
    color: var(--color-muted);
    font-size: 0.9rem;
}

.category-badge-link:hover,
.popular-category-link:hover {
    color: var(--color-primary-dark);
}

.ad-panel {
    align-self: stretch;
    background: linear-gradient(135deg, #fffdf9, #f8eadc 52%, #fff4f4);
}

.ad-panel span {
    color: var(--color-primary);
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
}

.schedule-table {
    overflow-x: auto;
}

table {
    background: var(--color-surface);
    border-collapse: collapse;
    border-radius: var(--radius-md);
    box-shadow: 0 12px 28px rgba(34, 26, 18, 0.06);
    overflow: hidden;
    width: 100%;
}

th,
td {
    border-bottom: 1px solid var(--color-border);
    padding: 14px 16px;
    text-align: left;
}

th {
    background: var(--color-soft);
    font-size: 0.85rem;
    text-transform: uppercase;
}

.inline-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 12px;
}

.inline-actions a,
.featured-card a,
.show-card a,
.chronicle-card a,
.notice-list a {
    color: var(--color-primary);
    font-weight: 800;
}

.chronicle-card {
    box-shadow: none;
}

.avatar {
    align-items: center;
    background: var(--color-accent);
    border-radius: 50%;
    color: #fff;
    display: flex;
    font-size: 1.7rem;
    font-weight: 800;
    height: 64px;
    justify-content: center;
    width: 64px;
}

.video-card {
    padding: 0 0 18px;
}

.video-card h3,
.video-card p {
    padding: 0 18px;
}

.video-thumb {
    align-items: center;
    aspect-ratio: 16 / 9;
    background: linear-gradient(135deg, #111827, #0e6f66);
    color: #fff;
    display: flex;
    justify-content: center;
}

.video-thumb span {
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 999px;
    font-weight: 800;
    padding: 12px 16px;
}

.report-section {
    align-items: center;
    display: grid;
    gap: 28px;
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
}

.report-section img {
    aspect-ratio: 16 / 10;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    object-fit: cover;
    width: 100%;
}

.special-coverage {
    background:
        linear-gradient(135deg, rgba(17, 24, 39, 0.98), rgba(22, 58, 112, 0.96)),
        #101828;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lift);
    color: #fff;
    padding: 44px;
}

.special-coverage p {
    color: rgba(255, 255, 255, 0.74);
}

.notice-list {
    display: grid;
    gap: 14px;
}

.notice-list article {
    padding: 18px;
}

.partners,
.newsletter {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    padding-left: 28px;
    padding-right: 28px;
}

.partner-logos,
.social-links {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.partner-logos a,
.social-links a {
    background: var(--color-soft);
    border-radius: var(--radius-md);
    font-weight: 800;
    padding: 18px;
    text-align: center;
}

.faith-highlight-grid {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.faith-panel,
.event-card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    padding: 28px;
}

.faith-panel {
    background:
        radial-gradient(circle at top right, rgba(210, 171, 87, 0.22), transparent 34%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(243, 246, 251, 0.98));
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.faith-verse {
    color: var(--color-primary);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.3rem;
    line-height: 1.4;
}

.faith-card {
    background:
        linear-gradient(180deg, rgba(22, 58, 112, 0.04), rgba(210, 171, 87, 0.08)),
        var(--color-surface);
}

.event-card-detailed h2,
.faith-panel h2 {
    font-family: Georgia, "Times New Roman", serif;
    margin-top: 0;
}

.event-meta-list {
    display: grid;
    gap: 8px;
    list-style: none;
    margin: 18px 0;
    padding: 0;
}

.event-meta-list li {
    border-bottom: 1px solid var(--color-border);
    padding-bottom: 8px;
}

.prayer-panel {
    background:
        linear-gradient(180deg, rgba(210, 171, 87, 0.16), rgba(22, 58, 112, 0.06)),
        var(--color-surface);
}

.newsletter {
    align-items: center;
    display: grid;
    gap: 28px;
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
}

.newsletter form {
    display: grid;
    gap: 12px;
}

input[type="text"],
input[type="email"],
input[type="search"],
select,
textarea {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: 18px;
    font: inherit;
    min-height: 44px;
    outline: none;
    padding: 10px 16px;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="search"]:focus,
select:focus,
textarea:focus {
    border-color: rgba(22, 58, 112, 0.45);
    box-shadow: 0 0 0 4px rgba(22, 58, 112, 0.08);
}

textarea {
    border-radius: var(--radius-md);
    min-height: 160px;
    resize: vertical;
}

.newsletter label {
    color: var(--color-muted);
    font-size: 0.9rem;
}

.social-whatsapp {
    display: grid;
    gap: 24px;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr);
}

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

.social-links span {
    color: var(--color-primary);
    display: block;
    font-size: 0.82rem;
    margin-top: 4px;
}

.final-cta {
    background:
        linear-gradient(135deg, rgba(17, 24, 39, 0.98), rgba(22, 58, 112, 0.98)),
        var(--color-text);
    color: #fff;
    margin-top: 28px;
    padding: 58px 0;
    text-align: center;
}

.final-cta h2 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2rem, 4vw, 3.5rem);
    margin: 0 0 12px;
}

.final-cta p {
    color: rgba(255, 255, 255, 0.76);
    margin: 0 auto 24px;
    max-width: 720px;
}

.cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.footer-newsletter {
    background:
        linear-gradient(135deg, #111827, #163a70),
        #101828;
    color: #fff;
    padding: 42px 0;
}

.footer-newsletter-inner {
    align-items: center;
    display: grid;
    gap: 24px;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr);
}

.js-reveal {
    opacity: 0;
    transform: translateY(28px);
    transition:
        opacity 0.55s ease,
        transform 0.55s ease;
    transition-delay: var(--reveal-delay, 0ms);
}

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

.interactive-card {
    transform-style: preserve-3d;
    transition:
        transform 0.28s ease,
        box-shadow 0.28s ease,
        border-color 0.28s ease,
        background 0.28s ease;
    will-change: transform;
}

.interactive-card:hover {
    border-color: rgba(210, 171, 87, 0.4);
    box-shadow: 0 24px 52px rgba(20, 32, 51, 0.12);
}

.card-grid > *,
.partner-logos a,
.gallery-grid figure,
.about-team-grid article,
.about-shows article,
.value-grid article,
.coverage-partners article,
.stats-grid article {
    transform-origin: center center;
}

.partner-logos a {
    transition:
        transform 0.24s ease,
        box-shadow 0.24s ease,
        border-color 0.24s ease,
        background 0.24s ease;
}

.partner-logos a:hover {
    box-shadow: 0 16px 30px rgba(20, 32, 51, 0.09);
    transform: translateY(-4px);
}

.gallery-card-link {
    transition: transform 0.24s ease;
}

.gallery-card-link:hover figcaption strong {
    color: var(--color-primary);
}

.button,
.listen-button,
.mini-button {
    position: relative;
    overflow: hidden;
}

.button::after,
.listen-button::after,
.mini-button::after {
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
    content: "";
    inset: 0 auto 0 -140%;
    position: absolute;
    width: 60%;
}

.button:hover::after,
.listen-button:hover::after,
.mini-button:hover::after {
    left: 150%;
    transition: left 0.55s ease;
}

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

    .lead-story img,
    .faith-panel,
    .interactive-card,
    .partner-logos a {
        transition: none;
        transform: none;
    }
}

.footer-newsletter h2,
.footer-newsletter p {
    margin: 0;
}

.footer-newsletter p {
    color: rgba(255, 255, 255, 0.76);
    margin-top: 8px;
}

.footer-newsletter form {
    display: flex;
    gap: 10px;
}

.site-footer {
    padding: 48px 0 120px;
    background:
        radial-gradient(circle at 10% 0%, rgba(199, 154, 59, 0.16), transparent 30%),
        #0b0f19;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.93rem;
}

.site-footer .brand strong,
.site-footer h3,
.site-footer a {
    color: #fff;
}

.site-footer .brand small,
.site-footer address {
    color: rgba(255, 255, 255, 0.65);
}

.footer-grid {
    display: grid;
    gap: 28px;
    grid-template-columns: 1.3fr 0.8fr 0.8fr 1.1fr;
}

.footer-about p {
    max-width: 340px;
}

.site-footer ul {
    display: grid;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.site-footer h3 {
    margin: 0 0 12px;
}

.site-footer address {
    font-style: normal;
    line-height: 1.7;
}

.footer-extra {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    display: grid;
    gap: 24px;
    grid-template-columns: 0.8fr 1.2fr 1fr;
    margin-top: 34px;
    padding-top: 28px;
}

.footer-socials,
.footer-links-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-socials a,
.footer-links-row a {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    padding: 7px 10px;
}

.footer-ad {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    padding: 18px;
}

.footer-bottom {
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: space-between;
    margin-top: 28px;
    padding-top: 22px;
}

.footer-bottom div {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.back-to-top {
    align-items: center;
    background: var(--color-accent);
    border-radius: 999px;
    bottom: 92px;
    color: #fff;
    display: flex;
    font-size: 1.2rem;
    font-weight: 800;
    font-size: 0.78rem;
    height: 42px;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    position: fixed;
    right: 18px;
    transform: translateY(8px);
    transition: opacity 0.2s ease, transform 0.2s ease;
    width: 54px;
    z-index: 45;
}

.back-to-top.visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.fixed-player {
    align-items: center;
    background: rgba(255, 253, 249, 0.96);
    backdrop-filter: blur(18px);
    border-top: 1px solid var(--color-border);
    bottom: 0;
    box-shadow: 0 -18px 50px rgba(34, 26, 18, 0.16);
    display: grid;
    gap: 14px;
    grid-template-columns: minmax(220px, 0.8fr) minmax(240px, 1fr) auto auto;
    left: 0;
    padding: 12px 22px;
    position: fixed;
    right: 0;
    z-index: 44;
}

.player-brand {
    align-items: center;
    display: flex;
    gap: 10px;
}

.player-brand small {
    color: var(--color-muted);
    display: block;
}

.fixed-player audio {
    width: 100%;
}

.fixed-player button,
.fixed-player a {
    background: var(--color-soft);
    border: 1px solid var(--color-border);
    border-radius: 999px;
    color: var(--color-text);
    font: inherit;
    font-weight: 800;
    padding: 9px 12px;
}

.success-notice,
.error-notice {
    border-radius: var(--radius-md);
    margin-bottom: 18px;
    padding: 18px;
}

.success-notice {
    background: #ebf8ef;
    border: 1px solid #b8dfc3;
    color: #17472a;
}

.error-notice {
    background: #fff1ef;
    border: 1px solid #f0b6af;
    color: #7c251c;
}

@media (max-width: 1120px) {
    .header-live-info {
        display: none;
    }

    .main-nav {
        gap: 2px;
        font-size: 0.88rem;
    }

    .main-nav > a,
    .nav-item > a {
        padding-left: 8px;
        padding-right: 8px;
    }
}

@media (max-width: 980px) {
    .main-nav {
        display: none;
    }

    .menu-toggle {
        display: inline-flex;
    }

    .page-hero,
    .news-featured-card,
    .news-tools,
    .news-content-layout,
    .related-news {
        grid-template-columns: 1fr;
    }

    .page-hero-actions {
        align-items: flex-start;
    }

    .news-featured-card img {
        min-height: 300px;
    }

    .news-sidebar {
        position: static;
    }

    .article-grid,
    .category-grid,
    .report-grid {
        grid-template-columns: 1fr;
    }

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

    .report-card img {
        aspect-ratio: 16 / 9;
    }
}

@media (max-width: 720px) {
    .top-bar-inner {
        align-items: flex-start;
        flex-direction: column;
        padding: 10px 0;
    }

    .top-actions {
        max-width: 100%;
        overflow-x: auto;
    }

    .header-live-info {
        display: none;
    }

    .header-main-inner {
        min-height: 70px;
    }

    .listen-button {
        font-size: 0.78rem;
        min-height: 38px;
        padding: 8px 10px;
    }

    .menu-toggle {
        display: inline-flex;
    }

    .dropdown-menu {
        position: static;
    }

    .home-page {
        padding-top: 18px;
    }

    .home-hero,
    .news-layout,
    .two-columns,
    .report-section,
    .newsletter,
    .social-whatsapp,
    .faith-highlight-grid {
        grid-template-columns: 1fr;
    }

    .lead-story {
        min-height: 520px;
    }

    .lead-story-content {
        padding: 30px;
    }

    .story-dots {
        left: 30px;
    }

    .breaking-inner {
        align-items: start;
        grid-template-columns: 1fr;
        padding: 14px 0;
    }

    .section {
        padding: 38px 0;
    }

    .news-page {
        padding-top: 20px;
    }

    .page-hero h1 {
        font-size: clamp(2.5rem, 16vw, 4rem);
    }

    .news-featured-card > div {
        padding: 26px;
    }

    .news-search,
    .ad-strip {
        align-items: stretch;
        flex-direction: column;
    }

    .article-card h3 {
        font-size: 1.28rem;
    }

    .section-header {
        align-items: stretch;
        flex-direction: column;
    }

    .card-grid,
    .compact-news,
    .partner-logos,
    .social-links {
        grid-template-columns: 1fr;
    }

    .partners,
    .newsletter,
    .special-coverage {
        padding-left: 18px;
        padding-right: 18px;
    }

    .footer-newsletter-inner,
    .footer-grid,
    .footer-extra {
        grid-template-columns: 1fr;
    }

    .footer-newsletter form,
    .site-search {
        flex-direction: column;
    }

    .fixed-player {
        display: none;
    }

    .back-to-top {
        bottom: 24px;
    }
}

/* Article page */
.article-page {
    padding: 22px 0 60px;
}

.article-header {
    max-width: 900px;
}

.article-header h1 {
    font-size: clamp(2rem, 5vw, 3.6rem);
    line-height: 1.05;
    margin: 14px 0;
}

.article-summary {
    color: var(--color-muted);
    font-size: 1.08rem;
    margin: 0 0 18px;
}

.article-meta-row {
    align-items: center;
    border-bottom: 1px solid var(--color-border);
    border-top: 1px solid var(--color-border);
    display: flex;
    gap: 18px;
    justify-content: space-between;
    padding: 14px 0;
}

.author-mini {
    align-items: center;
    display: flex;
    gap: 10px;
}

.author-mini span {
    color: var(--color-muted);
    display: block;
    font-size: 0.86rem;
}

.article-meta-list {
    color: var(--color-muted);
    display: flex;
    flex-wrap: wrap;
    font-size: 0.86rem;
    gap: 10px;
    justify-content: flex-end;
}

.share-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 14px;
}

.share-row a {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    font-weight: 800;
    padding: 7px 9px;
}

.article-image-block {
    margin-top: 22px;
}

.article-image-block img {
    aspect-ratio: 16 / 8;
    border-radius: var(--radius-md);
    object-fit: cover;
    width: 100%;
}

.article-image-block p {
    color: var(--color-muted);
    font-size: 0.88rem;
    margin: 8px 0 0;
}

.article-image-block span {
    display: inline-block;
    margin-left: 6px;
}

.article-layout {
    align-items: start;
    display: grid;
    gap: 30px;
    grid-template-columns: minmax(0, 1fr) 320px;
}

.article-body {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 28px;
}

.article-body .lead {
    color: var(--color-text);
    font-size: 1.08rem;
    font-weight: 700;
}

.article-body h2 {
    font-size: 1.45rem;
    margin: 28px 0 10px;
}

.article-body p,
.article-body li {
    color: #333;
    line-height: 1.75;
}

.article-body blockquote {
    border-left: 4px solid var(--color-primary);
    margin: 24px 0;
    padding: 8px 0 8px 18px;
}

.article-body blockquote p {
    font-size: 1.1rem;
    font-weight: 800;
    margin: 0 0 8px;
}

.article-body cite {
    color: var(--color-muted);
    font-style: normal;
}

.takeaway-box,
.article-audio,
.author-box,
.after-share {
    background: var(--color-soft);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    margin: 24px 0;
    padding: 18px;
}

.takeaway-box h2 {
    margin-top: 0;
}

.article-audio {
    display: grid;
    gap: 14px;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 0.5fr) auto;
}

.article-audio h3,
.article-audio p {
    margin: 0;
}

.article-audio audio {
    width: 100%;
}

.article-video-placeholder {
    align-items: center;
    background: #151515;
    border-radius: var(--radius-md);
    color: rgba(255, 255, 255, 0.76);
    display: flex;
    font-weight: 900;
    min-height: 260px;
    justify-content: center;
    margin: 24px 0;
}

.correction-note {
    background: #fff8e5;
    border: 1px solid #ead79c;
    border-radius: var(--radius-sm);
    padding: 12px;
}

.tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 24px 0;
}

.tag-list a {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    color: var(--color-primary);
    font-weight: 800;
    padding: 7px 9px;
}

.author-box {
    align-items: center;
    display: grid;
    gap: 16px;
    grid-template-columns: 70px minmax(0, 1fr);
}

.author-box h2 {
    margin-top: 0;
}

.article-sidebar {
    display: grid;
    gap: 18px;
    position: sticky;
    top: 110px;
}

.article-bottom-grid {
    display: grid;
    gap: 28px;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.7fr);
}

@media (max-width: 980px) {
    .article-layout,
    .article-bottom-grid,
    .article-audio {
        grid-template-columns: 1fr;
    }

    .article-sidebar {
        position: static;
    }
}

@media (max-width: 720px) {
    .article-meta-row {
        align-items: flex-start;
        flex-direction: column;
    }

    .article-meta-list {
        justify-content: flex-start;
    }

    .article-body {
        padding: 20px;
    }

    .article-image-block img {
        aspect-ratio: 16 / 11;
    }

    .author-box {
        grid-template-columns: 1fr;
    }
}

/* Live page */
.direct-page {
    padding-bottom: 60px;
}

.direct-hero {
    background: #141414;
    color: #fff;
    padding: 42px 0;
}

.direct-hero-inner {
    align-items: center;
    display: grid;
    gap: 28px;
    grid-template-columns: minmax(0, 1fr) 260px;
}

.direct-hero h1 {
    font-size: clamp(2rem, 5vw, 3.6rem);
    line-height: 1;
    margin: 12px 0;
}

.direct-hero p {
    color: rgba(255, 255, 255, 0.78);
    max-width: 760px;
}

.direct-status-card,
.main-player,
.next-show-card,
.direct-interaction article,
.quick-message,
.video-live,
.direct-social-share article,
.listening-options {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 18px;
}

.direct-status-card {
    color: var(--color-text);
    display: grid;
    gap: 8px;
    justify-items: start;
}

.main-player {
    align-items: center;
    display: grid;
    gap: 24px;
    grid-template-columns: 180px minmax(0, 1fr);
    margin-top: -28px;
    position: relative;
}

.main-player h2 {
    margin: 8px 0;
}

.main-player audio {
    margin: 12px 0;
    width: 100%;
}

.audio-visual {
    align-items: center;
    background: var(--color-soft);
    border-radius: var(--radius-md);
    display: flex;
    gap: 8px;
    height: 150px;
    justify-content: center;
}

.audio-visual span {
    animation: audioBars 1s ease-in-out infinite;
    background: var(--color-primary);
    border-radius: 999px;
    display: block;
    height: 38px;
    width: 10px;
}

.audio-visual span:nth-child(2) {
    animation-delay: 0.12s;
    height: 70px;
}

.audio-visual span:nth-child(3) {
    animation-delay: 0.24s;
    height: 100px;
}

.audio-visual span:nth-child(4) {
    animation-delay: 0.36s;
    height: 62px;
}

.audio-visual span:nth-child(5) {
    animation-delay: 0.48s;
    height: 46px;
}

@keyframes audioBars {
    0%,
    100% {
        transform: scaleY(0.65);
    }

    50% {
        transform: scaleY(1);
    }
}

.on-air-grid,
.direct-interaction,
.direct-social-share {
    display: grid;
    gap: 18px;
    grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
}

.next-show-card h2,
.direct-interaction h2,
.video-live h2,
.direct-social-share h2,
.listening-options h2 {
    margin-top: 0;
}

.countdown {
    background: var(--color-soft);
    border-radius: var(--radius-sm);
    display: inline-block;
    font-weight: 800;
    margin: 8px 0 14px;
    padding: 7px 9px;
}

.quick-message {
    display: grid;
    gap: 10px;
}

.video-live {
    align-items: center;
    display: grid;
    gap: 22px;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr);
}

.video-placeholder {
    align-items: center;
    background: #111;
    border-radius: var(--radius-md);
    color: rgba(255, 255, 255, 0.76);
    display: flex;
    font-weight: 900;
    min-height: 220px;
    justify-content: center;
    text-align: center;
}

.direct-social-share .inline-actions a {
    background: var(--color-soft);
    border-radius: var(--radius-sm);
    color: var(--color-text);
    font-weight: 800;
    padding: 8px 10px;
}

.listening-options {
    align-items: center;
    display: grid;
    gap: 20px;
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
}

.details-checks {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.details-checks span {
    background: var(--color-soft);
    border-radius: var(--radius-sm);
    font-weight: 800;
    padding: 10px;
}

.direct-ad {
    margin-bottom: 34px;
}

@media (max-width: 980px) {
    .direct-hero-inner,
    .main-player,
    .on-air-grid,
    .direct-interaction,
    .video-live,
    .direct-social-share,
    .listening-options {
        grid-template-columns: 1fr;
    }

    .main-player {
        margin-top: 18px;
    }
}

@media (max-width: 720px) {
    .direct-hero {
        padding: 30px 0;
    }

    .details-checks {
        grid-template-columns: 1fr;
    }
}

/* Category page */
.category-page {
    padding: 20px 0 60px;
}

.category-heading {
    border-bottom: 1px solid var(--color-border);
    margin-bottom: 18px;
}

.category-count {
    color: var(--color-primary);
    display: inline-block;
    font-weight: 900;
    margin-top: 12px;
}

.category-featured {
    padding: 16px 0 22px;
}

.category-controls {
    display: grid;
    gap: 14px;
    padding-bottom: 12px;
}

.subcat-list,
.other-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.subcat-list a,
.other-categories a {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    color: var(--color-text);
    font-weight: 800;
    padding: 8px 10px;
}

.subcat-list a:hover,
.other-categories a:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.category-layout {
    align-items: start;
    display: grid;
    gap: 24px;
    grid-template-columns: minmax(0, 1fr) 320px;
}

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

.category-sidebar {
    top: 110px;
}

.mini-popular li {
    grid-template-columns: 42px minmax(0, 1fr);
}

.sidebar-podcasts {
    display: grid;
    gap: 12px;
}

.sidebar-podcasts article {
    border-bottom: 1px solid var(--color-border);
    display: grid;
    gap: 4px;
    padding-bottom: 12px;
}

.sidebar-podcasts span {
    color: var(--color-muted);
    font-size: 0.86rem;
}

.public-profile-hero {
    align-items: center;
    grid-template-columns: minmax(0, 1fr) 240px;
}

.public-profile-aside {
    display: flex;
    justify-content: center;
}

.public-profile-photo,
.public-profile-placeholder {
    border-radius: 24px;
    height: 220px;
    width: 220px;
}

.public-profile-photo {
    object-fit: cover;
}

.public-profile-placeholder {
    align-items: center;
    background: linear-gradient(135deg, var(--color-primary), #e43b46);
    color: #fff;
    display: flex;
    font-size: 4rem;
    font-weight: 900;
    justify-content: center;
}

.public-profile-grid {
    align-items: start;
    display: grid;
    gap: 30px;
    grid-template-columns: minmax(0, 1fr) 320px;
}

.public-profile-socials {
    grid-template-columns: 1fr;
}

.public-profile-grid .related-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.public-profile-grid .related-list li {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    display: grid;
    gap: 4px;
    padding: 14px;
}

@media (max-width: 980px) {
    .public-profile-hero,
    .public-profile-grid {
        grid-template-columns: 1fr;
    }
}

.sidebar-podcasts button {
    background: var(--color-soft);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    cursor: pointer;
    font: inherit;
    font-weight: 800;
    justify-self: start;
    padding: 6px 9px;
}

.ad-box {
    background: var(--color-soft);
}

.ad-box span {
    color: var(--color-primary);
    font-size: 0.76rem;
    font-weight: 900;
    text-transform: uppercase;
}

.empty-state,
.category-error {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 24px;
}

.category-newsletter {
    align-items: center;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    display: grid;
    gap: 14px;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.6fr);
    margin-bottom: 24px;
    padding: 22px;
}

.category-newsletter h2,
.category-newsletter p {
    margin: 0;
}

.category-newsletter p,
.category-newsletter small {
    color: var(--color-muted);
}

.category-newsletter form {
    display: flex;
    gap: 10px;
}

.category-newsletter form input {
    flex: 1;
}

.category-newsletter small {
    grid-column: 1 / -1;
}

@media (max-width: 980px) {
    .category-layout,
    .category-newsletter {
        grid-template-columns: 1fr;
    }

    .category-sidebar {
        position: static;
    }
}

@media (max-width: 720px) {
    .category-articles {
        grid-template-columns: 1fr;
    }

    .category-newsletter form {
        flex-direction: column;
    }
}

/* Contact page */
.contact-page {
    padding: 20px 0 60px;
}

.contact-card-grid,
.contact-opportunities {
    display: grid;
    gap: 16px;
}

.contact-card-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.contact-card-grid article,
.contact-form,
.contact-side article,
.contact-opportunities article,
.faq-list article,
.contact-final {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 18px;
}

.contact-card-grid h3,
.contact-side h2,
.contact-opportunities h2,
.faq-list h3,
.contact-final h2 {
    margin-top: 0;
}

.contact-card-grid p,
.contact-card-grid span,
.contact-side p,
.contact-opportunities p,
.faq-list p,
.contact-final p {
    color: var(--color-muted);
}

.contact-card-grid strong {
    display: block;
    margin: 12px 0 6px;
}

.contact-card-grid .button {
    margin-top: 12px;
}

.contact-layout {
    align-items: start;
    display: grid;
    gap: 24px;
    grid-template-columns: minmax(0, 1fr) 340px;
}

.contact-form {
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.contact-form label {
    display: grid;
    gap: 6px;
}

.contact-form label span {
    font-weight: 800;
}

.contact-form .full,
.contact-form button {
    grid-column: 1 / -1;
}

select,
textarea,
input[type="file"] {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    font: inherit;
    padding: 9px 10px;
}

textarea {
    resize: vertical;
}

.consent {
    align-items: start;
    color: var(--color-muted);
    display: grid;
    gap: 10px;
    grid-template-columns: auto minmax(0, 1fr);
}

.form-messages {
    display: grid;
    gap: 10px;
    margin-top: 14px;
}

.success-message,
.error-message {
    border-radius: var(--radius-sm);
    padding: 12px;
}

.success-message {
    background: #eaf7ee;
    border: 1px solid #b8e0c2;
}

.error-message {
    background: #fff0f0;
    border: 1px solid #f0c0c0;
}

.form-messages p {
    margin: 4px 0 0;
}

.contact-side {
    display: grid;
    gap: 16px;
    position: sticky;
    top: 120px;
}

.contact-socials a {
    color: var(--color-text);
}

.map-placeholder {
    align-items: center;
    background: var(--color-soft);
    border: 1px dashed var(--color-border);
    border-radius: var(--radius-sm);
    color: var(--color-muted);
    display: flex;
    font-weight: 800;
    min-height: 180px;
    justify-content: center;
    margin-bottom: 12px;
    text-align: center;
}

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

.contact-opportunities ul {
    color: var(--color-muted);
    padding-left: 18px;
}

.faq-list {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.contact-final {
    margin-bottom: 34px;
    text-align: center;
}

.contact-summary {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-top: 16px;
}

.contact-summary span {
    background: var(--color-soft);
    border-radius: var(--radius-sm);
    font-weight: 800;
    padding: 8px 10px;
}

@media (max-width: 980px) {
    .contact-card-grid,
    .contact-layout,
    .contact-opportunities,
    .faq-list {
        grid-template-columns: 1fr;
    }

    .contact-side {
        position: static;
    }
}

@media (max-width: 720px) {
    .contact-form {
        grid-template-columns: 1fr;
    }
}

/* About page */
.about-page {
    padding-bottom: 60px;
}

.about-hero {
    background: #141414;
    color: #fff;
    min-height: 360px;
    overflow: hidden;
    position: relative;
}

.about-hero img {
    height: 100%;
    inset: 0;
    object-fit: cover;
    opacity: 0.42;
    position: absolute;
    width: 100%;
}

.about-hero .container {
    padding: 80px 0;
    position: relative;
    z-index: 1;
}

.about-hero .breadcrumb {
    color: rgba(255, 255, 255, 0.72);
}

.about-hero h1 {
    font-size: clamp(2rem, 5vw, 3.6rem);
    line-height: 1;
    margin: 12px 0;
    max-width: 760px;
}

.about-hero p {
    color: rgba(255, 255, 255, 0.82);
    font-size: 1.08rem;
    margin: 0;
    max-width: 720px;
}

.about-story,
.mission-vision,
.coverage-partners,
.community-cta {
    display: grid;
    gap: 26px;
    grid-template-columns: minmax(0, 0.75fr) minmax(0, 1fr);
}

.about-story h2,
.mission-vision h2,
.coverage-partners h2,
.community-cta h2 {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    margin: 8px 0 0;
}

.about-story p,
.mission-vision p,
.coverage-partners p,
.community-cta p {
    color: var(--color-muted);
}

.mission-vision article,
.coverage-partners article,
.community-cta,
.value-grid article,
.about-team-grid article,
.about-shows article,
.stats-grid article,
.gallery-grid figure {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 18px;
}

.value-grid,
.about-team-grid,
.stats-grid,
.gallery-grid {
    display: grid;
    gap: 16px;
}

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

.gallery-grid figure {
    overflow: hidden;
    padding: 0;
    position: relative;
}

.gallery-card-link {
    display: block;
    height: 100%;
}

.gallery-grid figure img,
.gallery-grid figure > div {
    aspect-ratio: 16 / 11;
    display: block;
    width: 100%;
}

.gallery-grid figure img {
    object-fit: cover;
    transition: transform 0.35s ease;
}

.gallery-grid figure > div {
    background:
        linear-gradient(135deg, rgba(22, 58, 112, 0.18), rgba(210, 171, 87, 0.22)),
        var(--color-soft);
}

.gallery-grid figure:hover img {
    transform: scale(1.04);
}

.gallery-grid figcaption {
    display: grid;
    gap: 6px;
    padding: 18px;
}

.gallery-grid figcaption strong {
    font-size: 1rem;
}

.gallery-grid figcaption span {
    color: var(--color-muted);
    font-size: 0.92rem;
}

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

.value-grid article span {
    align-items: center;
    background:
        linear-gradient(145deg, rgba(22, 58, 112, 0.12), rgba(210, 171, 87, 0.22)),
        #fff;
    border: 1px solid rgba(22, 58, 112, 0.12);
    border-radius: 16px;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.9),
        0 10px 24px rgba(20, 32, 51, 0.08);
    color: var(--color-primary);
    display: flex;
    height: 52px;
    justify-content: center;
    width: 52px;
}

.value-grid article {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 252, 246, 0.96)),
        var(--color-surface);
    box-shadow: 0 18px 38px rgba(20, 32, 51, 0.06);
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.value-grid article:hover {
    border-color: rgba(210, 171, 87, 0.45);
    box-shadow: 0 24px 44px rgba(20, 32, 51, 0.1);
    transform: translateY(-4px);
}

.value-grid .value-icon svg {
    height: 24px;
    width: 24px;
}

.value-grid h3,
.about-team-grid h3,
.about-shows h3 {
    margin: 12px 0 6px;
}

.value-grid p,
.about-team-grid p,
.about-shows p {
    color: var(--color-muted);
}

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

.about-team-grid .host-photo {
    height: 78px;
    width: 78px;
}

.about-shows {
    display: grid;
    gap: 14px;
}

.about-shows article {
    align-items: center;
    display: grid;
    gap: 16px;
    grid-template-columns: 78px minmax(0, 1fr);
}

.show-thumb {
    align-items: center;
    background: var(--color-soft);
    border-radius: var(--radius-sm);
    color: var(--color-primary);
    display: flex;
    font-size: 1.4rem;
    font-weight: 900;
    height: 78px;
    justify-content: center;
    width: 78px;
}

.stats-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
}

.stats-grid strong {
    display: block;
    font-size: 1.5rem;
    line-height: 1.1;
}

.stats-grid span {
    color: var(--color-muted);
    display: block;
    font-size: 0.86rem;
    margin-top: 6px;
}

.coverage-partners ul {
    columns: 2;
    margin-bottom: 0;
    padding-left: 18px;
}

.partner-logos.compact {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

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

.gallery-grid figure {
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.gallery-grid figure div {
    aspect-ratio: 16 / 10;
    background: linear-gradient(135deg, #ddd, #f4f4f4);
}

.gallery-grid figcaption {
    font-weight: 800;
    padding: 12px;
}

.community-cta {
    align-items: center;
}

.community-cta form {
    display: grid;
    gap: 10px;
}

@media (max-width: 980px) {
    .about-story,
    .mission-vision,
    .coverage-partners,
    .community-cta {
        grid-template-columns: 1fr;
    }

    .value-grid,
    .about-team-grid,
    .gallery-grid,
    .stats-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 720px) {
    .about-hero {
        min-height: 300px;
    }

    .about-hero .container {
        padding: 54px 0;
    }

    .value-grid,
    .about-team-grid,
    .gallery-grid,
    .stats-grid,
    .partner-logos.compact {
        grid-template-columns: 1fr;
    }

    .about-shows article {
        grid-template-columns: 1fr;
    }

    .coverage-partners ul {
        columns: 1;
    }
}

/* Program schedule page */
.programmes-page {
    padding: 20px 0 60px;
}

.current-program {
    padding: 12px 0 22px;
}

.day-tabs {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding: 8px 0 18px;
}

.day-tabs button {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    color: var(--color-muted);
    cursor: pointer;
    font: inherit;
    font-weight: 800;
    min-width: max-content;
    padding: 8px 12px;
}

.day-tabs button.active,
.day-tabs button:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: #fff;
}

.program-timeline {
    display: grid;
    gap: 14px;
}

.program-timeline article {
    display: grid;
    gap: 16px;
    grid-template-columns: 150px minmax(0, 1fr);
}

.program-time {
    color: var(--color-primary);
    font-weight: 900;
    padding-top: 18px;
}

.program-card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 18px;
}

.program-card-head {
    align-items: start;
    display: flex;
    gap: 16px;
    justify-content: space-between;
}

.program-card h3 {
    font-size: 1.25rem;
    margin: 8px 0 4px;
}

.program-card p {
    color: var(--color-muted);
}

.program-card .inline-actions a {
    color: var(--color-primary);
    font-weight: 800;
}

.special-programs {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.special-programs article,
.program-notice {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 18px;
}

.special-programs h3,
.program-notice h2 {
    margin-top: 0;
}

.special-programs p,
.program-notice p {
    color: var(--color-muted);
}

.program-notice {
    margin-bottom: 34px;
}

@media (max-width: 980px) {
    .special-programs {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 720px) {
    .program-timeline article,
    .special-programs {
        grid-template-columns: 1fr;
    }

    .program-time {
        padding-top: 0;
    }

    .program-card-head {
        display: grid;
    }
}

/* Shows pages */
.shows-page,
.show-detail-page {
    padding: 20px 0 60px;
}

.current-show {
    padding: 12px 0 28px;
}

.current-show-card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    display: grid;
    grid-template-columns: 360px minmax(0, 1fr);
    overflow: hidden;
}

.current-show-card img {
    height: 100%;
    min-height: 260px;
    object-fit: cover;
    width: 100%;
}

.current-show-card > div {
    align-self: center;
    padding: 26px;
}

.current-show-card h2,
.show-hero h1,
.show-main-content h2,
.show-info-card h2,
.host-card h2,
.episode-list h3,
.next-participate h2 {
    letter-spacing: -0.015em;
}

.current-show-card h2 {
    font-size: 2rem;
    margin: 10px 0 4px;
}

.show-host {
    font-weight: 800;
    margin: 0 0 4px;
}

.show-tools {
    display: grid;
    gap: 16px;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.45fr);
}

.shows-grid {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.show-list-card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.show-list-card img {
    aspect-ratio: 16 / 10;
    object-fit: cover;
    width: 100%;
}

.show-list-card > div {
    padding: 16px;
}

.show-list-card h3 {
    font-size: 1.2rem;
    margin: 10px 0;
}

.show-list-card p {
    color: var(--color-muted);
    margin: 6px 0;
}

.show-list-card p strong {
    color: var(--color-text);
}

.show-card-bottom {
    align-items: center;
    border-top: 1px solid var(--color-border);
    display: flex;
    gap: 12px;
    justify-content: space-between;
    margin-top: 14px;
    padding-top: 12px;
}

.show-card-bottom span {
    color: var(--color-muted);
    font-size: 0.85rem;
}

.show-card-bottom a,
.popular-shows a {
    color: var(--color-primary);
    font-weight: 800;
}

.popular-shows {
    display: grid;
    gap: 12px;
}

.popular-shows article {
    align-items: center;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    display: grid;
    gap: 14px;
    grid-template-columns: 86px minmax(0, 1fr) auto;
    padding: 12px;
}

.popular-shows img {
    aspect-ratio: 1;
    border-radius: var(--radius-sm);
    object-fit: cover;
    width: 100%;
}

.popular-shows h3 {
    margin: 0 0 4px;
}

.popular-shows p,
.popular-shows span {
    color: var(--color-muted);
    display: block;
    margin: 0;
}

.show-hero {
    background: #151515;
    color: #fff;
    margin-bottom: 18px;
    padding: 34px 0;
}

.show-hero-inner {
    align-items: center;
    display: grid;
    gap: 28px;
    grid-template-columns: 360px minmax(0, 1fr);
}

.show-hero img {
    aspect-ratio: 16 / 11;
    border-radius: var(--radius-md);
    object-fit: cover;
    width: 100%;
}

.show-hero h1 {
    font-size: clamp(2rem, 5vw, 3.4rem);
    margin: 10px 0;
}

.show-hero .meta,
.show-hero p {
    color: rgba(255, 255, 255, 0.78);
}

.show-category {
    font-weight: 800;
}

.show-detail-grid {
    align-items: start;
    display: grid;
    gap: 24px;
    grid-template-columns: minmax(0, 1fr) 320px;
}

.show-main-content,
.show-info-card,
.host-card,
.team-grid article,
.episode-list article,
.next-participate article,
.similar-shows article {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 20px;
}

.show-main-content p {
    color: var(--color-muted);
}

.pill-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    list-style: none;
    margin: 14px 0 0;
    padding: 0;
}

.pill-list li {
    background: var(--color-soft);
    border-radius: var(--radius-sm);
    font-weight: 700;
    padding: 7px 9px;
}

.show-info-card dl {
    display: grid;
    gap: 8px;
    margin: 0;
}

.show-info-card dt {
    color: var(--color-muted);
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
}

.show-info-card dd {
    border-bottom: 1px solid var(--color-border);
    margin: 0 0 8px;
    padding-bottom: 8px;
}

.host-card {
    align-items: center;
    display: grid;
    gap: 22px;
    grid-template-columns: 120px minmax(0, 1fr);
}

.host-photo {
    align-items: center;
    background: var(--color-primary);
    border-radius: var(--radius-md);
    color: #fff;
    display: flex;
    font-size: 1.4rem;
    font-weight: 900;
    height: 120px;
    justify-content: center;
    width: 120px;
}

.team-grid,
.similar-shows,
.next-participate {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.team-grid article {
    text-align: center;
}

.team-grid .avatar {
    margin: 0 auto 12px;
}

.episode-list {
    display: grid;
    gap: 14px;
}

.episode-list article {
    display: grid;
    gap: 14px;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 0.4fr) auto;
}

.episode-list audio {
    align-self: center;
    width: 100%;
}

.compact-cta {
    padding: 42px 0;
}

@media (max-width: 980px) {
    .current-show-card,
    .show-tools,
    .show-hero-inner,
    .show-detail-grid,
    .host-card,
    .episode-list article,
    .next-participate {
        grid-template-columns: 1fr;
    }

    .shows-grid,
    .team-grid,
    .similar-shows {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 720px) {
    .shows-grid,
    .team-grid,
    .similar-shows {
        grid-template-columns: 1fr;
    }

    .popular-shows article {
        grid-template-columns: 70px minmax(0, 1fr);
    }

    .popular-shows article .button {
        grid-column: 1 / -1;
    }
}

/* Compact editorial redesign */
:root {
    --color-bg: #f7f7f7;
    --color-text: #171717;
    --color-muted: #686868;
    --color-primary: #b51220;
    --color-primary-dark: #86101a;
    --color-accent: #176b63;
    --color-ink: #141414;
    --color-gold: #a87a24;
    --color-surface: #ffffff;
    --color-soft: #f2f2f2;
    --color-border: #e3e3e3;
    --radius-sm: 6px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --shadow-soft: 0 8px 24px rgba(0, 0, 0, 0.07);
    --shadow-lift: 0 14px 38px rgba(0, 0, 0, 0.1);
}

body {
    background: var(--color-bg);
    font-size: 15px;
}

.container {
    width: min(1160px, calc(100% - 28px));
}

.site-header {
    background: #fff;
    backdrop-filter: none;
    border-bottom: 1px solid var(--color-border);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
}

.top-bar {
    background: #141414;
    font-size: 0.76rem;
}

.top-bar-inner {
    gap: 14px;
    min-height: 28px;
}

.top-live {
    letter-spacing: 0.04em;
}

.top-live,
.listen-button {
    gap: 6px;
}

.top-live span,
.listen-button span {
    height: 7px;
    width: 7px;
}

.top-actions {
    gap: 9px;
}

.top-actions a {
    font-size: 0.74rem;
}

.icon-button,
.menu-toggle {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.22);
    border-radius: var(--radius-sm);
    font-size: 0.74rem;
    min-height: 28px;
    padding: 4px 8px;
}

.header-main {
    background: #fff;
}

.header-main-inner {
    gap: 14px;
    min-height: 58px;
}

.brand {
    gap: 8px;
}

.brand-mark {
    background: var(--color-primary);
    border: 0;
    border-radius: var(--radius-sm);
    box-shadow: none;
    font-size: 0.72rem;
    height: 34px;
    width: 34px;
}

.brand strong {
    font-family: "Inter", "Segoe UI", Arial, Helvetica, sans-serif;
    font-size: 0.98rem;
    letter-spacing: 0;
}

.brand small {
    font-size: 0.68rem;
}

.main-nav {
    gap: 2px;
    font-size: 0.82rem;
}

.main-nav > a,
.nav-item > a {
    border-radius: var(--radius-sm);
    font-weight: 700;
    padding: 6px 7px;
}

.main-nav > a:hover,
.nav-item > a:hover,
.main-nav > a.active,
.nav-item > a.active {
    background: #f4f4f4;
}

.dropdown-menu {
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    min-width: 360px;
    padding: 14px;
}

.header-live-info {
    display: none;
}

.listen-button {
    border-radius: var(--radius-sm);
    box-shadow: none;
    font-size: 0.76rem;
    min-height: 34px;
    padding: 8px 10px;
}

.search-panel {
    padding: 10px 0;
}

.sub-nav {
    background: #f7f7f7;
}

.sub-nav-inner {
    gap: 16px;
    min-height: 32px;
}

.sub-nav a {
    font-size: 0.74rem;
    letter-spacing: 0.02em;
}

.header-alert {
    display: none;
}

.button {
    border-radius: var(--radius-sm);
    box-shadow: none;
    font-size: 0.86rem;
    min-height: 38px;
    padding: 8px 12px;
}

.button:hover,
.listen-button:hover {
    transform: none;
}

.button-primary {
    background: var(--color-primary);
    box-shadow: none;
}

.button-secondary {
    box-shadow: none;
}

input[type="text"],
input[type="email"],
input[type="search"] {
    border-radius: var(--radius-sm);
    min-height: 38px;
    padding: 8px 10px;
}

.badge,
.status {
    border-radius: 4px;
    font-size: 0.72rem;
    padding: 4px 7px;
}

.eyebrow,
.live-label {
    font-size: 0.72rem;
    letter-spacing: 0.06em;
}

.home-page,
.news-page {
    padding-top: 20px;
}

.page-hero {
    padding: 22px 0 12px;
}

.page-hero h1 {
    font-family: "Inter", "Segoe UI", Arial, Helvetica, sans-serif;
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    letter-spacing: -0.02em;
    line-height: 1;
}

.page-hero p {
    font-size: 1rem;
}

.lead-story {
    border: 0;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    min-height: 430px;
}

.lead-story-content {
    padding: 38px;
}

.lead-story h1 {
    font-family: "Inter", "Segoe UI", Arial, Helvetica, sans-serif;
    font-size: clamp(1.9rem, 4.6vw, 3.4rem);
    letter-spacing: -0.03em;
}

.lead-story p {
    font-size: 1rem;
}

.home-hero {
    gap: 18px;
}

.section {
    padding: 42px 0;
}

.section-header h2,
.section h2,
.news-featured-card h2,
.article-card h3,
.report-card h3,
.category-box h3,
.newsletter-mini h2,
.related-news h2,
.final-cta h2,
.live-card h2,
.sidebar-card h2,
.sidebar-card h3 {
    font-family: "Inter", "Segoe UI", Arial, Helvetica, sans-serif;
    letter-spacing: -0.015em;
}

.section-header h2,
.section h2 {
    font-size: clamp(1.45rem, 2.4vw, 2rem);
}

.news-featured-card,
.article-card,
.featured-card,
.media-card,
.show-card,
.video-card,
.notice-list article,
.sidebar-card,
.category-box,
.newsletter-mini,
.report-card,
.live-card,
.ad-panel,
.podcast-card,
.chronicle-card,
.whatsapp-card,
.partners,
.newsletter,
.social-follow,
.special-coverage {
    border-radius: var(--radius-md);
    box-shadow: none;
}

.news-featured-card {
    box-shadow: var(--shadow-soft);
}

.news-featured-card img {
    min-height: 330px;
}

.news-featured-card > div {
    padding: 28px;
}

.news-featured-card h2 {
    font-size: clamp(1.55rem, 3vw, 2.45rem);
}

.article-card h3 {
    font-size: 1.18rem;
}

.article-card > div,
.featured-card div,
.media-card div,
.show-card div {
    padding: 16px;
}

.filters button {
    border-radius: var(--radius-sm);
    font-size: 0.82rem;
    font-weight: 700;
    padding: 7px 10px;
}

.filters a {
    border-radius: var(--radius-sm);
    font-size: 0.82rem;
    font-weight: 700;
    padding: 7px 10px;
}

.news-search,
.ad-strip,
table,
.popular-list li,
.partner-logos a,
.social-links a,
.footer-ad {
    border-radius: var(--radius-md);
    box-shadow: none;
}

.footer-newsletter {
    background: #171717;
    padding: 30px 0;
}

.site-footer {
    background: #101010;
    padding-top: 36px;
}

.fixed-player {
    background: #fff;
    backdrop-filter: none;
    box-shadow: 0 -6px 18px rgba(0, 0, 0, 0.08);
    padding: 8px 16px;
}

.fixed-player .brand-mark {
    height: 32px;
    width: 32px;
}

.fixed-player audio {
    height: 34px;
}

@media (max-width: 1120px) {
    .main-nav {
        display: none;
    }

    .menu-toggle {
        display: inline-flex;
    }
}

@media (max-width: 720px) {
    body {
        font-size: 14px;
    }

    .top-bar-inner {
        gap: 6px;
        min-height: auto;
        padding: 7px 0;
    }

    .top-bar p {
        font-size: 0.72rem;
    }

    .top-actions a {
        display: none;
    }

    .header-main-inner {
        min-height: 54px;
    }

    .brand small {
        display: none;
    }

    .listen-button {
        font-size: 0.7rem;
        padding: 7px 8px;
    }

    .sub-nav-inner {
        min-height: 30px;
    }

    .lead-story {
        min-height: 390px;
    }

    .lead-story-content {
        padding: 24px;
    }

    .page-hero h1 {
        font-size: clamp(2rem, 12vw, 3rem);
    }

    .news-featured-card > div {
        padding: 20px;
    }

    .section {
        padding: 30px 0;
    }
}

body.admin-dashboard {
    margin: 0;
    background:
        radial-gradient(circle at top right, rgba(230, 33, 41, 0.08), transparent 20%),
        linear-gradient(180deg, #eef3f8 0%, #f6f8fc 42%, #f8fafc 100%);
    color: #111827;
    font-family: "Inter", "Segoe UI", Arial, sans-serif;
    font-size: 15px;
}

.admin-dashboard * {
    box-sizing: border-box;
}

.admin-dashboard a {
    color: inherit;
    text-decoration: none;
}

.admin-dashboard .layout {
    display: grid;
    grid-template-columns: 310px 1fr;
    grid-template-rows: auto 1fr;
    min-height: 100vh;
    gap: 0;
}

.admin-sidebar-toggle,
.admin-sidebar-close {
    display: none;
}

.admin-sidebar-toggle {
    align-items: center;
    border: 0;
    border-radius: 999px;
    box-shadow: 0 12px 24px rgba(230, 33, 41, 0.22);
    gap: 0.22rem;
    height: 44px;
    padding: 0.75rem 0.9rem;
    background: linear-gradient(135deg, #e62129 0%, #ef233c 100%);
    color: #fff;
    cursor: pointer;
    font: inherit;
    font-weight: 800;
    flex-direction: column;
    justify-content: center;
    white-space: nowrap;
    width: 44px;
}

.admin-sidebar-toggle span {
    display: block;
    width: 16px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
}

.admin-sidebar-backdrop {
    display: none;
}

.admin-dashboard .sidebar {
    position: sticky;
    top: 0;
    height: 100vh;
    grid-row: 1 / span 2;
    padding: 0.85rem;
    background:
        radial-gradient(circle at top left, rgba(239, 35, 60, 0.18), transparent 24%),
        linear-gradient(180deg, #07111f 0%, #0b1728 54%, #101c2c 100%);
    color: #f8fafc;
    overflow-y: auto;
    scrollbar-gutter: stable;
    border-right: 1px solid rgba(255, 255, 255, 0.06);
}

.admin-dashboard .sidebar-shell {
    display: grid;
    gap: 0.85rem;
}

.admin-dashboard .sidebar-topbar {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.45rem 0.25rem 0.3rem;
}

.admin-dashboard .brand-mark {
    display: inline-grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: linear-gradient(145deg, #e62129 0%, #ef233c 100%);
    color: #fff;
    font-size: 0.84rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    box-shadow: 0 18px 34px rgba(230, 33, 41, 0.34);
}

.admin-dashboard .brand {
    margin: 0;
    font-size: 0.92rem;
    font-weight: 800;
    letter-spacing: 0.01em;
}

.admin-dashboard .brand-copy p {
    margin: 0.18rem 0 0;
    color: #91a6bb;
    line-height: 1.45;
    font-size: 0.76rem;
}

.admin-dashboard .sidebar-presence {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.68rem;
    align-items: start;
    padding: 0.85rem 0.9rem 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.admin-dashboard .live-dot {
    width: 10px;
    height: 10px;
    margin-top: 0.35rem;
    border-radius: 50%;
    background: #ef233c;
    box-shadow: 0 0 0 0 rgba(239, 35, 60, 0.45);
    animation: adminLivePulse 1.4s ease-in-out infinite;
}

@keyframes adminLivePulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(239, 35, 60, 0.45);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(239, 35, 60, 0);
    }
}

.admin-dashboard .sidebar-presence strong {
    display: block;
    margin-bottom: 0.2rem;
    color: #fff;
    font-size: 0.86rem;
}

.admin-dashboard .sidebar-presence small {
    color: #9db1c6;
    line-height: 1.45;
    font-size: 0.75rem;
}

.admin-dashboard .sidebar-quick-actions,
.admin-dashboard .sidebar-footer-links {
    display: grid;
    gap: 0.55rem;
}

.admin-dashboard .sidebar-quick-actions a,
.admin-dashboard .sidebar-footer-links a {
    padding: 0.72rem 0.88rem;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
    color: #edf2f7;
    font-weight: 700;
    font-size: 0.82rem;
    transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.admin-dashboard .sidebar-quick-actions a:first-child {
    background: linear-gradient(135deg, #e62129 0%, #ef233c 100%);
    border-color: transparent;
    box-shadow: 0 14px 30px rgba(230, 33, 41, 0.26);
}

.admin-dashboard .sidebar-quick-actions a:hover,
.admin-dashboard .sidebar-footer-links a:hover {
    transform: translateY(-1px);
}

.admin-dashboard .nav-group {
    display: grid;
    gap: 0.5rem;
}

.admin-dashboard .nav-group-title {
    padding: 0 0.3rem;
    color: #7f93a8;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.admin-dashboard .nav-links {
    display: grid;
    gap: 0.26rem;
}

.admin-dashboard .nav-links a {
    display: grid;
    grid-template-columns: 30px 1fr;
    align-items: center;
    gap: 0.68rem;
    padding: 0.62rem 0.82rem;
    border-radius: 14px;
    color: #d6e1eb;
    background: transparent;
    border: 1px solid transparent;
    transition: background 0.18s ease, border-color 0.18s ease, transform 0.18s ease, color 0.18s ease;
    font-size: 0.84rem;
}

.admin-dashboard .nav-links a:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.06);
    color: #fff;
    transform: translateX(2px);
}

.admin-dashboard .nav-item-icon {
    display: inline-grid;
    place-items: center;
    width: 30px;
    height: 30px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.06);
    color: #9fb2c6;
    font-size: 0.66rem;
    font-weight: 900;
    letter-spacing: 0.04em;
}

.admin-dashboard .nav-links a.active,
.admin-dashboard .nav-sub-links a.active {
    background: linear-gradient(90deg, rgba(239, 35, 60, 0.15) 0%, rgba(255, 255, 255, 0.06) 100%);
    border-color: rgba(239, 35, 60, 0.22);
    color: #fff;
    box-shadow: inset 3px 0 0 #ef233c;
}

.admin-dashboard .nav-links a.active .nav-item-icon {
    background: rgba(239, 35, 60, 0.18);
    color: #ff9da8;
}

.admin-dashboard .nav-sub-links {
    display: grid;
    gap: 0.32rem;
    margin: 0.06rem 0 0.28rem 0.95rem;
    padding-left: 0.78rem;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.admin-dashboard .nav-sub-links a {
    display: block;
    padding: 0.46rem 0.72rem;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.03);
    color: #c4d1dd;
    font-size: 0.76rem;
    border: 1px solid transparent;
}

.admin-dashboard .content {
    grid-column: 2;
    grid-row: 2;
    min-width: 0;
    overflow-x: hidden;
    padding: 1.35rem 1.6rem 1.8rem;
}

.admin-dashboard .content > * {
    min-width: 0;
}

.admin-dashboard .content-subnav {
    grid-column: 2;
    grid-row: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.9rem 1.6rem 0.6rem;
    border-bottom: 1px solid rgba(7, 17, 31, 0.08);
    background: rgba(248, 250, 252, 0.9);
    backdrop-filter: blur(10px);
}

.admin-dashboard .header,
.admin-dashboard .section-head,
.admin-dashboard .content-subnav-head {
    min-width: 0;
}

.admin-dashboard .content-subnav-mobile {
    align-items: center;
    display: flex;
    gap: 0.75rem;
}

.admin-dashboard .content-subnav-mobile > div {
    display: grid;
    gap: 0.12rem;
}

.admin-dashboard .header-actions,
.admin-dashboard .inline-actions,
.admin-dashboard .bulk-actions,
.admin-dashboard .pagination-row,
.admin-dashboard .filters {
    flex-wrap: wrap;
}

.admin-dashboard img,
.admin-dashboard video,
.admin-dashboard iframe {
    height: auto;
    max-width: 100%;
}

.admin-dashboard .content-subnav-head {
    display: grid;
    gap: 0.12rem;
}

.admin-dashboard .content-subnav-head strong {
    color: #152235;
    font-size: 0.9rem;
    letter-spacing: -0.01em;
}

.admin-dashboard .content-subnav-head span {
    color: #6b7c90;
    font-size: 0.75rem;
}

.admin-dashboard .content-subnav-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    justify-content: flex-end;
}

.admin-dashboard .content-subnav-links a {
    padding: 0.46rem 0.72rem;
    border: 1px solid #dbe2eb;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    color: #314257;
    font-size: 0.78rem;
    font-weight: 700;
    transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}

.admin-dashboard .content-subnav-links a:hover {
    transform: translateY(-1px);
    border-color: rgba(230, 33, 41, 0.22);
    color: #162438;
}

.admin-dashboard .content-subnav-links a.active {
    background: linear-gradient(135deg, #e62129 0%, #ef233c 100%);
    border-color: transparent;
    color: #fff;
    box-shadow: 0 10px 24px rgba(230, 33, 41, 0.18);
}

.admin-dashboard .header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1.15rem 1.25rem;
    border: 1px solid rgba(7, 17, 31, 0.08);
    border-radius: 24px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.88)),
        linear-gradient(135deg, rgba(230, 33, 41, 0.05), transparent 30%);
    box-shadow: 0 18px 45px rgba(7, 17, 31, 0.06);
}

.admin-dashboard .header h1 {
    margin: 0;
    font-size: clamp(1.45rem, 1.8vw, 1.9rem);
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.admin-dashboard .header p {
    margin: 0.5rem 0 0;
    max-width: 70ch;
    color: #5f6f82;
    font-size: 0.95rem;
}

.admin-dashboard .header-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.admin-dashboard .button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    padding: 0.78rem 1rem;
    border: 1px solid transparent;
    border-radius: 14px;
    font-weight: 800;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.admin-dashboard .button.primary {
    background: linear-gradient(135deg, #e62129 0%, #ef233c 100%);
    color: #fff;
    box-shadow: 0 14px 30px rgba(230, 33, 41, 0.24);
}

.admin-dashboard .button.secondary {
    border-color: #d6dde7;
    background: rgba(255, 255, 255, 0.92);
    color: #0f1b2e;
}

.admin-dashboard .button:hover,
.admin-dashboard .mini-button:hover {
    transform: translateY(-1px);
}

.admin-dashboard .hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1rem;
    color: #617284;
    font-size: 0.88rem;
}

.admin-dashboard .stats-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.admin-dashboard .card,
.admin-dashboard .panel {
    border: 1px solid rgba(7, 17, 31, 0.08);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 18px 50px rgba(16, 33, 47, 0.06);
    backdrop-filter: blur(8px);
}

.admin-dashboard .card {
    position: relative;
    overflow: hidden;
    padding: 1rem 1rem 1.05rem;
}

.admin-dashboard .stats-grid .card::before {
    content: "";
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #07111f 0%, #ef233c 100%);
}

.admin-dashboard .card h2 {
    margin: 0 0 0.5rem;
    font-size: 0.8rem;
    color: #526173;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.admin-dashboard .card strong {
    display: block;
    margin: 0.35rem 0;
    font-size: clamp(1.45rem, 1.7vw, 1.75rem);
    letter-spacing: -0.04em;
}

.admin-dashboard .card p,
.admin-dashboard .card li,
.admin-dashboard .panel p,
.admin-dashboard .panel td,
.admin-dashboard .panel th,
.admin-dashboard .panel small,
.admin-dashboard .muted {
    color: #617284;
}

.admin-dashboard .card ul {
    margin: 0.75rem 0;
    padding-left: 1.15rem;
}

.admin-dashboard .section {
    margin-top: 1.5rem;
    padding: 0;
}

.admin-dashboard .section-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 1rem;
    margin-bottom: 1rem;
}

.admin-dashboard .section-head h2 {
    margin: 0;
    font-size: 1.08rem;
    letter-spacing: -0.02em;
}

.admin-dashboard .section-head p {
    margin: 0.35rem 0 0;
    color: #617284;
    font-size: 0.92rem;
}

.admin-dashboard .main-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 1rem;
}

.admin-dashboard .panel {
    padding: 1.1rem 1.15rem;
}

.admin-dashboard .filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.admin-dashboard .pill {
    padding: 0.55rem 0.85rem;
    border: 1px solid #dbe2eb;
    border-radius: 999px;
    background: #f7f9fc;
    font-size: 0.82rem;
}

.admin-dashboard .summary-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.admin-dashboard .mini-stat {
    padding: 0.88rem;
    border: 1px solid #e0e6ee;
    border-radius: 18px;
    background: linear-gradient(180deg, #fbfcfe 0%, #f4f7fb 100%);
}

.admin-dashboard .chart {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    align-items: end;
    gap: 0.6rem;
    height: 220px;
    margin-top: 1rem;
}

.admin-dashboard .bar-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.45rem;
}

.admin-dashboard .bar {
    width: 100%;
    max-width: 28px;
    border-radius: 10px 10px 0 0;
    background: linear-gradient(180deg, #07111f, #ef233c);
}

.admin-dashboard .bar.alt {
    background: linear-gradient(180deg, #1d4ed8, #38bdf8);
}

.admin-dashboard table {
    width: 100%;
    border-collapse: collapse;
}

.admin-dashboard th,
.admin-dashboard td {
    padding: 0.8rem 0.65rem;
    border-bottom: 1px solid #e5ebf1;
    text-align: left;
    vertical-align: top;
}

.admin-dashboard th {
    color: #3a4a5d;
    font-size: 0.74rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 800;
}

.admin-dashboard tbody tr:hover {
    background: rgba(7, 17, 31, 0.025);
}

.admin-dashboard .status {
    display: inline-block;
    padding: 0.32rem 0.64rem;
    border-radius: 999px;
    background: #eef3f7;
    color: #10212f;
    font-size: 0.76rem;
    font-weight: 800;
    border: 1px solid transparent;
}

.admin-dashboard .status-published {
    background: rgba(34, 197, 94, 0.12);
    color: #15803d;
    border-color: rgba(34, 197, 94, 0.22);
}

.admin-dashboard .status-pending,
.admin-dashboard .status-scheduled {
    background: rgba(245, 158, 11, 0.12);
    color: #b45309;
    border-color: rgba(245, 158, 11, 0.22);
}

.admin-dashboard .status-draft {
    background: rgba(59, 130, 246, 0.1);
    color: #1d4ed8;
    border-color: rgba(59, 130, 246, 0.18);
}

.admin-dashboard .status-danger {
    background: rgba(239, 68, 68, 0.12);
    color: #b91c1c;
    border-color: rgba(239, 68, 68, 0.2);
}

.admin-dashboard .status-archived {
    background: rgba(107, 114, 128, 0.14);
    color: #4b5563;
    border-color: rgba(107, 114, 128, 0.22);
}

.admin-dashboard .alert-list {
    display: grid;
    gap: 0.75rem;
}

.admin-dashboard .alert-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    border-radius: 14px;
}

.admin-dashboard .alert-item.urgent {
    background: #fee2e2;
}

.admin-dashboard .alert-item.important {
    background: #fff3db;
}

.admin-dashboard .alert-item.attention {
    background: #fff8e6;
}

.admin-dashboard .alert-item.information {
    background: #dbeafe;
}

.admin-dashboard .rank-list {
    display: grid;
    gap: 0.75rem;
}

.admin-dashboard .rank-item {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: flex-start;
    gap: 0.8rem;
}

.admin-dashboard .rank-number {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: linear-gradient(135deg, #07111f 0%, #1c2f45 100%);
    color: #fff;
    font-weight: 700;
}

.admin-dashboard .inline-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.6rem;
}

.admin-dashboard .mini-button {
    padding: 0.44rem 0.68rem;
    border: 1px solid #dae3ec;
    border-radius: 12px;
    background: #f8fafd;
    color: #142235;
    font-size: 0.78rem;
    font-weight: 700;
}

.admin-dashboard .program-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.admin-dashboard .program-card {
    padding: 0.88rem;
    border: 1px solid #dfe6ee;
    border-radius: 18px;
    background: linear-gradient(180deg, #fbfdff 0%, #f6f9fc 100%);
}

.admin-dashboard .footer {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
    padding: 1rem 1.25rem;
    border-radius: 18px;
    background: linear-gradient(135deg, #07111f 0%, #101c2c 100%);
    color: #d9e7f0;
}

.admin-dashboard .article-stats-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.admin-dashboard .article-filter-form,
.admin-dashboard .article-admin-form {
    display: grid;
    gap: 1rem;
}

.admin-dashboard .search-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 0.85rem;
}

.admin-dashboard .field {
    display: grid;
    gap: 0.45rem;
}

.admin-dashboard .field span {
    font-size: 0.82rem;
    font-weight: 800;
    color: #182536;
}

.admin-dashboard .field input,
.admin-dashboard .field select,
.admin-dashboard .field textarea {
    width: 100%;
    padding: 0.72rem 0.86rem;
    border: 1px solid #dbe2eb;
    border-radius: 14px;
    background: #fff;
    color: #10212f;
    font: inherit;
    transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.admin-dashboard .field input:focus,
.admin-dashboard .field select:focus,
.admin-dashboard .field textarea:focus {
    outline: none;
    border-color: rgba(230, 33, 41, 0.45);
    box-shadow: 0 0 0 4px rgba(230, 33, 41, 0.08);
}

.admin-dashboard .field textarea {
    resize: vertical;
}

.admin-dashboard .form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.admin-dashboard .compact-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.admin-dashboard .field-full {
    grid-column: 1 / -1;
}

.admin-dashboard .table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.admin-dashboard .table-wrap table {
    min-width: 760px;
}

.admin-dashboard .thumb {
    width: 72px;
    height: 52px;
    object-fit: cover;
    border-radius: 10px;
}

.admin-dashboard .bulk-actions,
.admin-dashboard .pagination-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin: 0 0 1rem;
}

.admin-dashboard .bulk-actions select {
    min-width: 220px;
    padding: 0.68rem 0.82rem;
    border: 1px solid #dbe2eb;
    border-radius: 14px;
    background: #fff;
}

.admin-dashboard .current-page {
    background: linear-gradient(135deg, #07111f 0%, #1a2d42 100%);
    color: #fff;
}

.admin-dashboard .danger-button {
    border-color: #fecaca;
    background: #fff5f5;
    color: #b91c1c;
}

.admin-dashboard .upload-dropzone {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 240px;
    gap: 1rem;
    align-items: center;
    padding: 0.88rem;
    border: 1px dashed #aab9c9;
    border-radius: 18px;
    background: linear-gradient(180deg, #fbfdff 0%, #f6f9fc 100%);
}

.admin-dashboard .upload-dropzone img {
    width: 100%;
    border-radius: 14px;
    object-fit: cover;
    min-height: 150px;
}

.admin-dashboard .editor-toolbar {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.admin-dashboard .editor-area {
    min-height: 320px;
    font-family: "Segoe UI", Arial, sans-serif;
}

.admin-dashboard .form-section {
    margin-top: 1rem;
}

.admin-dashboard .schedule-card,
.admin-dashboard .google-preview,
.admin-dashboard .note-box,
.admin-dashboard .confirmation-card,
.admin-dashboard .notice-panel,
.admin-dashboard .history-item {
    padding: 0.88rem;
    border: 1px solid #dfe6ee;
    border-radius: 18px;
    background: linear-gradient(180deg, #fbfdff 0%, #f6f9fc 100%);
}

.admin-dashboard .schedule-card,
.admin-dashboard .confirmation-card {
    margin-top: 1rem;
}

.admin-dashboard .google-preview strong,
.admin-dashboard .confirmation-card strong,
.admin-dashboard .history-item strong {
    display: block;
    margin-bottom: 0.35rem;
}

.admin-dashboard .google-preview span {
    display: block;
    margin-bottom: 0.45rem;
    color: #0f766e;
}

.admin-dashboard .selection-list,
.admin-dashboard .check-grid,
.admin-dashboard .history-list {
    display: grid;
    gap: 0.75rem;
}

.admin-dashboard .check-grid {
    margin-top: 1rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.admin-dashboard .check-grid label,
.admin-dashboard .selection-list label {
    display: flex;
    gap: 0.6rem;
    align-items: flex-start;
    color: #617284;
}

.admin-dashboard .sticky-actions {
    position: sticky;
    bottom: 1rem;
    z-index: 2;
}

.admin-dashboard .article-performance-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.admin-dashboard .category-stats-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.admin-dashboard .category-chip {
    display: flex;
    align-items: center;
    justify-content: center;
}

.admin-dashboard .category-icon-badge {
    display: inline-grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    color: #fff;
    font-size: 0.8rem;
    font-weight: 700;
}

.admin-dashboard .article-table code,
.admin-dashboard table code {
    padding: 0.2rem 0.45rem;
    border-radius: 8px;
    background: #f3f7fb;
    color: #10212f;
}

.admin-dashboard .table-wrap-enhanced {
    border: 1px solid #e4ebf2;
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 250, 253, 0.96));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.admin-dashboard .admin-data-table {
    min-width: 1040px;
}

.admin-dashboard .admin-data-table thead th {
    position: sticky;
    top: 0;
    z-index: 1;
    background: rgba(246, 249, 252, 0.98);
}

.admin-dashboard .admin-data-table tbody tr:last-child td {
    border-bottom: 0;
}

.admin-dashboard .cell-check {
    width: 52px;
}

.admin-dashboard .tag-name-cell,
.admin-dashboard .metric-cell,
.admin-dashboard .date-cell {
    display: grid;
    gap: 0.18rem;
}

.admin-dashboard .tag-name-cell strong,
.admin-dashboard .metric-cell strong,
.admin-dashboard .date-cell strong {
    color: #132236;
    font-size: 0.9rem;
    line-height: 1.25;
}

.admin-dashboard .tag-name-cell span,
.admin-dashboard .metric-cell span,
.admin-dashboard .date-cell span {
    color: #748498;
    font-size: 0.72rem;
    line-height: 1.35;
}

.admin-dashboard .table-description {
    max-width: 240px;
    color: #526173;
    font-size: 0.78rem;
    line-height: 1.5;
}

.admin-dashboard .table-actions {
    max-width: 240px;
}

.admin-dashboard .table-action-menu {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.55rem;
    min-width: 150px;
}

.admin-dashboard .actions-cell {
    width: 1%;
    white-space: nowrap;
}

.admin-dashboard .table-action-main {
    display: flex;
    align-items: center;
    gap: 0.7rem;
}

.admin-dashboard .action-link {
    color: #5b6b7d;
    font-size: 0.76rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    text-decoration: none;
    transition: color 0.18s ease;
}

.admin-dashboard .action-link:hover {
    color: #07111f;
}

.admin-dashboard .action-link-strong {
    color: #c81e26;
}

.admin-dashboard .row-actions-dropdown {
    position: relative;
}

.admin-dashboard .row-actions-dropdown summary {
    list-style: none;
    cursor: pointer;
    width: 2rem;
    height: 2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #d8e1ea;
    border-radius: 999px;
    background: #f8fafc;
    color: #344255;
    font-size: 0.86rem;
    font-weight: 800;
    line-height: 1;
}

.admin-dashboard .row-actions-dropdown summary::-webkit-details-marker {
    display: none;
}

.admin-dashboard .row-actions-dropdown[open] summary {
    border-color: rgba(230, 33, 41, 0.24);
    background: #fff;
    color: #c81e26;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.12);
}

.admin-dashboard .row-actions-list {
    position: absolute;
    top: calc(100% + 0.45rem);
    right: 0;
    z-index: 5;
    min-width: 190px;
    display: grid;
    gap: 0.2rem;
    padding: 0.45rem;
    border: 1px solid #e3eaf2;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 22px 45px rgba(15, 23, 42, 0.14);
}

.admin-dashboard .row-actions-list a,
.admin-dashboard .row-actions-list span {
    display: block;
    padding: 0.56rem 0.72rem;
    border-radius: 10px;
    color: #223246;
    font-size: 0.78rem;
    line-height: 1.35;
}

.admin-dashboard .row-actions-list a:hover {
    background: rgba(7, 17, 31, 0.05);
}

.admin-dashboard .row-actions-list .danger-text {
    color: #b91c1c;
    background: rgba(239, 68, 68, 0.08);
}

.admin-dashboard .tags-table td {
    background: transparent;
}

.admin-dashboard .tags-table tbody tr:hover td {
    background: rgba(7, 17, 31, 0.03);
}

.admin-dashboard .categories-table td {
    background: transparent;
    vertical-align: top;
}

.admin-dashboard .categories-table tbody tr:hover td {
    background: rgba(7, 17, 31, 0.03);
}

.admin-dashboard .category-name-cell {
    display: grid;
    gap: 0.28rem;
}

.admin-dashboard .category-name-cell strong {
    color: #101c2c;
    font-size: 0.88rem;
}

.admin-dashboard .chroniques-table td {
    background: transparent;
    vertical-align: top;
}

.admin-dashboard .chroniques-table tbody tr:hover td {
    background: rgba(7, 17, 31, 0.03);
}

.admin-dashboard .chronique-name-cell {
    display: grid;
    gap: 0.28rem;
}

.admin-dashboard .chronique-name-cell strong {
    color: #101c2c;
    font-size: 0.88rem;
}

.admin-dashboard .emissions-table td {
    background: transparent;
    vertical-align: top;
}

.admin-dashboard .emissions-table tbody tr:hover td {
    background: rgba(7, 17, 31, 0.03);
}

.admin-dashboard .emission-name-cell {
    display: grid;
    gap: 0.28rem;
}

.admin-dashboard .emission-name-cell strong {
    color: #101c2c;
    font-size: 0.88rem;
}

.admin-dashboard .emission-name-cell span {
    color: #6b7a8c;
    font-size: 0.74rem;
}

.admin-dashboard .animateurs-table td {
    background: transparent;
    vertical-align: top;
}

.admin-dashboard .animateurs-table tbody tr:hover td {
    background: rgba(7, 17, 31, 0.03);
}

.admin-dashboard .animator-name-cell {
    display: grid;
    gap: 0.28rem;
}

.admin-dashboard .animator-name-cell strong {
    color: #101c2c;
    font-size: 0.88rem;
}

.admin-dashboard .animator-name-cell span {
    color: #6b7a8c;
    font-size: 0.74rem;
}

@media (max-width: 1200px) {
    .admin-dashboard .stats-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .admin-dashboard .main-grid {
        grid-template-columns: 1fr;
    }

    .admin-dashboard .compact-grid,
    .admin-dashboard .article-performance-grid,
    .admin-dashboard .category-stats-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    .admin-sidebar-toggle {
        display: inline-flex;
    }

    .admin-sidebar-backdrop {
        position: fixed;
        inset: 0;
        z-index: 105;
        background: rgba(7, 17, 31, 0.5);
    }

    .admin-dashboard .sidebar {
        left: 0;
        max-width: min(86vw, 340px);
        overflow-y: auto;
        position: fixed;
        top: 0;
        transform: translateX(-108%);
        transition: transform 0.24s ease;
        width: min(86vw, 340px);
        z-index: 110;
    }

    .admin-dashboard.admin-sidebar-open .sidebar {
        transform: translateX(0);
    }

    .admin-dashboard.admin-sidebar-open {
        overflow: hidden;
    }

    .admin-dashboard .sidebar-topbar {
        justify-content: space-between;
    }

    .admin-sidebar-close {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 38px;
        height: 38px;
        border: 1px solid rgba(255, 255, 255, 0.12);
        border-radius: 12px;
        background: rgba(255, 255, 255, 0.06);
        color: #fff;
        font: inherit;
        font-weight: 800;
    }

    .admin-dashboard .layout {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto 1fr;
    }

    .admin-dashboard .sidebar {
        height: auto;
        border-right: 0;
        padding: 0.8rem;
    }

    .admin-dashboard .content-subnav {
        grid-column: 1;
        grid-row: auto;
        align-items: flex-start;
        flex-direction: column;
        padding: 0.85rem 1rem 0.45rem;
    }

    .admin-dashboard .content-subnav-links {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 0.2rem;
        white-space: nowrap;
        width: 100%;
    }

    .admin-dashboard .content-subnav-links a {
        flex: 0 0 auto;
    }

    .admin-dashboard .content-subnav-mobile {
        width: 100%;
    }

    .admin-dashboard .content {
        grid-column: 1;
        grid-row: auto;
        padding: 1rem;
    }

    .admin-dashboard .header {
        flex-direction: column;
    }

    .admin-dashboard .header-actions {
        width: 100%;
    }

    .admin-dashboard .header-actions .button,
    .admin-dashboard .inline-actions .button,
    .admin-dashboard .inline-actions .mini-button {
        flex: 1 1 220px;
    }

    .admin-dashboard .summary-grid,
    .admin-dashboard .program-grid,
    .admin-dashboard .stats-grid {
        grid-template-columns: 1fr;
    }

    .admin-dashboard .form-grid,
    .admin-dashboard .compact-grid,
    .admin-dashboard .check-grid,
    .admin-dashboard .article-performance-grid,
    .admin-dashboard .upload-dropzone,
    .admin-dashboard .search-row {
        grid-template-columns: 1fr;
    }

    .admin-dashboard .chart {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        height: 180px;
    }

    .admin-dashboard .table-wrap table {
        min-width: 680px;
    }
}

@media (max-width: 640px) {
    .admin-dashboard {
        font-size: 14px;
    }

    .admin-dashboard .content {
        padding: 0.85rem;
    }

    .admin-dashboard .panel,
    .admin-dashboard .card {
        padding: 1rem;
    }

    .admin-dashboard .header h1 {
        font-size: 1.4rem;
    }

    .admin-dashboard .content-subnav-mobile {
        align-items: flex-start;
        flex-direction: column;
    }

    .admin-sidebar-toggle {
        width: 100%;
    }

    .admin-dashboard .sidebar-topbar {
        padding-left: 0.1rem;
        padding-right: 0.1rem;
    }

    .admin-dashboard .brand-copy p {
        display: none;
    }

    .admin-dashboard .nav-links a {
        font-size: 0.8rem;
    }

    .admin-dashboard .nav-sub-links a {
        font-size: 0.74rem;
    }

    .admin-dashboard .bulk-actions,
    .admin-dashboard .pagination-row {
        align-items: stretch;
        flex-direction: column;
    }

    .admin-dashboard .bulk-actions .button,
    .admin-dashboard .header-actions .button,
    .admin-dashboard .inline-actions .button,
    .admin-dashboard .inline-actions .mini-button {
        width: 100%;
    }

    .admin-dashboard .table-wrap table {
        min-width: 560px;
    }

    .admin-dashboard .row-actions-list {
        left: 0;
        min-width: 100%;
        right: auto;
    }
}
