:root {
    --color-red: #e30613;
    --color-red-dark: #b1050f;
    --color-black: #101114;
    --color-charcoal: #1f2937;
    --color-muted: #667085;
    --color-border: #e4e7ec;
    --color-bg: #f4f5f7;
    --color-card: #ffffff;
    --shadow-soft: 0 18px 40px rgba(16, 17, 20, 0.08);
    --radius-lg: 24px;
    --radius-md: 18px;
    --radius-sm: 12px;
    --container: 1260px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background: var(--color-bg);
    color: var(--color-black);
}

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

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

button,
input,
textarea,
select {
    font: inherit;
}

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

.site-main {
    padding: 28px 0 56px;
}

.topbar {
    background: #ffffff;
    border-bottom: 1px solid var(--color-border);
}

.topbar-inner,
.branding-inner,
.category-nav-inner,
.breaking-bar-inner,
.content-with-sidebar,
.footer-grid,
.footer-bottom,
.hero-grid,
.admin-comment-list {
    display: flex;
}

.topbar-inner {
    align-items: center;
    justify-content: space-between;
    min-height: 48px;
    gap: 16px;
}

.topbar-nav {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 0.92rem;
    color: #344054;
}

.topbar-nav a:hover,
.header-auth a:hover,
.category-nav-inner a:hover,
.section-heading a:hover,
.sidebar-post:hover strong {
    color: var(--color-red);
}

.topbar-meta {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 0.88rem;
    color: #475467;
}

.topbar-meta strong {
    color: var(--color-black);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(14px);
}

.branding {
    background: #fff;
}

.branding-inner {
    align-items: center;
    justify-content: space-between;
    min-height: 104px;
    gap: 20px;
}

.brand-logo {
    position: relative;
    display: inline-flex;
    flex-direction: column;
    line-height: 0.92;
}

.brand-logo-top {
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 800;
    letter-spacing: -0.06em;
}

.brand-logo-bottom {
    font-size: clamp(1.7rem, 3vw, 2.6rem);
    font-weight: 800;
    color: var(--color-red);
    letter-spacing: -0.06em;
}

.brand-logo small {
    position: absolute;
    top: 2px;
    right: -46px;
    font-size: 1rem;
    color: #475467;
    font-weight: 700;
}

.branding-tools {
    display: flex;
    align-items: center;
    gap: 16px;
}

.header-search {
    display: flex;
    align-items: center;
    background: #f2f4f7;
    border-radius: 999px;
    padding: 6px;
    width: min(360px, 100%);
}

.header-search input {
    flex: 1;
    border: 0;
    background: transparent;
    padding: 10px 14px;
    outline: none;
}

.header-search button,
.comment-form button,
.primary-link,
.admin-primary-button,
.admin-login-form button {
    border: 0;
    border-radius: 999px;
    background: var(--color-red);
    color: #fff;
    padding: 11px 18px;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.18s ease, background 0.18s ease;
}

.header-search button:hover,
.comment-form button:hover,
.primary-link:hover,
.admin-primary-button:hover,
.admin-login-form button:hover {
    background: var(--color-red-dark);
    transform: translateY(-1px);
}

.header-auth {
    display: flex;
    align-items: center;
    gap: 16px;
    font-weight: 600;
    font-size: 0.95rem;
}

.mobile-menu-toggle {
    display: none;
    width: 48px;
    height: 48px;
    border: 1px solid var(--color-border);
    border-radius: 14px;
    background: #fff;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
}

.mobile-menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--color-black);
}

.category-nav {
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    background: #fff;
}

.category-nav-inner {
    align-items: center;
    gap: 24px;
    min-height: 60px;
    overflow-x: auto;
}

.category-nav-inner a {
    flex: 0 0 auto;
    padding: 8px 0;
    color: #344054;
    font-weight: 700;
    font-size: 0.97rem;
}

.category-nav-inner a.is-active {
    color: var(--color-red);
}

.breaking-bar {
    background: linear-gradient(90deg, #7f0710 0%, #e30613 30%, #b1050f 100%);
    color: #fff;
}

.breaking-bar-inner {
    align-items: center;
    min-height: 54px;
    gap: 18px;
}

.breaking-label {
    flex: 0 0 auto;
    font-weight: 800;
    letter-spacing: 0.04em;
}

.breaking-track {
    position: relative;
    min-height: 28px;
    flex: 1;
}

.breaking-item {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    gap: 12px;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.35s ease, transform 0.35s ease;
    pointer-events: none;
}

.breaking-item.is-active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.breaking-item strong {
    color: #ffe083;
}

.flash-stack {
    margin-top: 18px;
}

.flash-message {
    border-radius: 16px;
    padding: 14px 16px;
    margin-bottom: 10px;
    font-weight: 600;
}

.flash-success {
    background: #ecfdf3;
    color: #027a48;
}

.flash-error {
    background: #fef3f2;
    color: #b42318;
}

.hero-grid {
    gap: 24px;
    align-items: stretch;
}

.hero-slider {
    position: relative;
    flex: 1.5;
    min-height: 560px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--color-black);
    box-shadow: var(--shadow-soft);
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
}

.hero-slide.is-active {
    opacity: 1;
    pointer-events: auto;
}

.hero-slide img,
.hero-slide a {
    width: 100%;
    height: 100%;
}

.hero-slide img {
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.14) 0%, rgba(15, 23, 42, 0.88) 100%);
}

.hero-copy {
    position: absolute;
    left: 40px;
    right: 40px;
    bottom: 38px;
    color: #fff;
    z-index: 1;
}

.hero-copy h1 {
    margin: 16px 0 10px;
    font-size: clamp(2rem, 4vw, 3.4rem);
    line-height: 1.02;
    letter-spacing: -0.05em;
}

.hero-copy p {
    max-width: 700px;
    margin: 0;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.88);
}

.hero-dots {
    position: absolute;
    right: 28px;
    bottom: 28px;
    display: flex;
    gap: 10px;
    z-index: 2;
}

.hero-dot {
    width: 11px;
    height: 11px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.42);
    cursor: pointer;
}

.hero-dot.is-active {
    background: #fff;
}

.hero-stack {
    flex: 0.9;
    display: grid;
    gap: 18px;
}

.stack-card,
.news-card,
.gallery-card,
.sidebar-widget,
.static-panel,
.not-found-panel {
    background: var(--color-card);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
}

.stack-card {
    overflow: hidden;
}

.stack-card a {
    display: grid;
    grid-template-columns: 1fr;
}

.stack-card img {
    height: 180px;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.stack-card:hover img,
.news-card:hover img,
.gallery-card:hover img,
.sidebar-post:hover img {
    transform: scale(1.05);
}

.stack-card-copy {
    padding: 18px;
}

.stack-card-copy h2 {
    margin: 12px 0 8px;
    font-size: 1.15rem;
    line-height: 1.2;
}

.stack-card-copy span:last-child {
    font-size: 0.87rem;
    color: var(--color-muted);
}

.section-block {
    margin-top: 34px;
}

.section-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
}

.section-heading h2 {
    margin: 0;
    font-size: 1.5rem;
    letter-spacing: -0.04em;
}

.section-heading a {
    color: var(--color-muted);
    font-weight: 700;
}

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

.news-card {
    overflow: hidden;
}

.news-card-media {
    position: relative;
    overflow: hidden;
}

.news-card-media img {
    height: 230px;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.news-card-body {
    padding: 18px;
}

.news-card-body h2,
.news-card-body h3 {
    margin: 0 0 10px;
    font-size: 1.18rem;
    line-height: 1.25;
}

.news-card-body p {
    margin: 0;
    color: #475467;
    line-height: 1.6;
}

.category-badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 12px;
    border-radius: 999px;
    background: var(--badge-color, var(--color-red));
    color: #fff;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.news-card-media .category-badge,
.gallery-overlay .category-badge {
    position: absolute;
    left: 16px;
    top: 16px;
}

.content-with-sidebar {
    align-items: flex-start;
    gap: 28px;
    margin-top: 32px;
}

.content-column,
.article-column {
    min-width: 0;
    flex: 1;
}

.page-sidebar {
    width: min(360px, 100%);
    flex: 0 0 360px;
}

.recent-list {
    display: grid;
    gap: 18px;
}

.recent-item {
    display: grid;
    grid-template-columns: 270px 1fr;
    gap: 18px;
    background: #fff;
    border-radius: var(--radius-md);
    padding: 16px;
    box-shadow: var(--shadow-soft);
}

.recent-item img {
    height: 188px;
    object-fit: cover;
    border-radius: 14px;
}

.recent-item-copy h3 {
    margin: 12px 0 10px;
    font-size: 1.35rem;
    line-height: 1.18;
}

.recent-item-copy p,
.article-header p,
.static-panel p {
    color: #475467;
    line-height: 1.7;
}

.meta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 14px;
    color: var(--color-muted);
    font-size: 0.9rem;
}

.sidebar-widget {
    padding: 20px;
    margin-bottom: 20px;
}

.sidebar-post-list,
.writers-list {
    display: grid;
    gap: 14px;
}

.sidebar-post,
.writer-card {
    display: grid;
    grid-template-columns: 92px 1fr;
    gap: 12px;
    align-items: center;
}

.sidebar-post img,
.writer-card img {
    width: 92px;
    height: 76px;
    object-fit: cover;
    border-radius: 12px;
    transition: transform 0.35s ease;
}

.sidebar-post strong,
.writer-card strong {
    display: block;
    margin-bottom: 4px;
    line-height: 1.28;
}

.sidebar-post span,
.writer-card span {
    color: var(--color-muted);
    font-size: 0.88rem;
}

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

.finance-item {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 10px;
    align-items: center;
    padding: 12px 14px;
    border-radius: 12px;
    background: #f8fafc;
}

.finance-item strong {
    font-size: 1.02rem;
}

.finance-item small {
    color: #027a48;
    font-weight: 700;
}

.media-highlight {
    background: var(--color-black);
    color: #fff;
    padding: 26px;
    border-radius: var(--radius-lg);
}

.media-highlight .section-heading a {
    color: rgba(255, 255, 255, 0.7);
}

.news-card-dark {
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
}

.news-card-dark .news-card-body p {
    color: rgba(255, 255, 255, 0.72);
}

.play-badge {
    position: absolute;
    right: 16px;
    bottom: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 999px;
    background: rgba(227, 6, 19, 0.92);
    color: #fff;
    font-size: 1.15rem;
}

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

.gallery-card {
    position: relative;
    overflow: hidden;
    min-height: 250px;
}

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

.gallery-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 18px;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.08) 0%, rgba(15, 23, 42, 0.92) 100%);
    color: #fff;
}

.gallery-overlay h3 {
    margin: 12px 0 0;
    font-size: 1.18rem;
}

.page-hero {
    padding: 24px 0 10px;
}

.eyebrow {
    display: inline-block;
    color: var(--color-red);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.78rem;
}

.page-hero h1,
.not-found-panel h1 {
    margin: 10px 0 12px;
    font-size: clamp(2rem, 4vw, 3.1rem);
    letter-spacing: -0.05em;
}

.page-hero p {
    max-width: 720px;
    color: #475467;
    line-height: 1.7;
}

.article-layout {
    margin-top: 18px;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    color: var(--color-muted);
    font-size: 0.92rem;
}

.article-header {
    margin-top: 18px;
}

.article-header h1 {
    margin: 14px 0 14px;
    font-size: clamp(2.2rem, 4vw, 4rem);
    line-height: 1.05;
    letter-spacing: -0.06em;
}

.article-cover,
.article-video,
.comment-form,
.comment-card,
.writer-profile {
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
}

.article-cover {
    margin: 22px 0;
    overflow: hidden;
}

.article-cover img {
    max-height: 580px;
    object-fit: cover;
}

.article-video {
    overflow: hidden;
    margin-bottom: 24px;
}

.article-video iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
    border: 0;
}

.article-body {
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    padding: 32px;
    line-height: 1.85;
    font-size: 1.06rem;
}

.article-body p:first-child {
    margin-top: 0;
}

.article-body h2,
.article-body h3 {
    margin-top: 28px;
}

.related-section,
.comments-section {
    margin-top: 34px;
}

.comment-list {
    display: grid;
    gap: 14px;
    margin-bottom: 18px;
}

.comment-card {
    padding: 18px 20px;
}

.comment-card span {
    display: block;
    margin-top: 4px;
    color: var(--color-muted);
    font-size: 0.88rem;
}

.comment-card p {
    margin: 12px 0 0;
    line-height: 1.7;
}

.comment-form {
    padding: 22px;
}

.comment-form-grid,
.writers-grid {
    display: grid;
    gap: 16px;
}

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

.comment-form label,
.admin-form label,
.admin-login-form label {
    display: block;
    font-weight: 600;
    color: #344054;
}

.comment-form input,
.comment-form textarea,
.admin-form input,
.admin-form textarea,
.admin-form select,
.admin-login-form input {
    width: 100%;
    margin-top: 8px;
    border: 1px solid #d0d5dd;
    border-radius: 14px;
    padding: 12px 14px;
    background: #fff;
    outline: none;
}

.comment-form textarea,
.admin-form textarea {
    resize: vertical;
}

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

.writer-profile {
    padding: 24px;
    text-align: center;
}

.writer-profile img {
    width: 126px;
    height: 126px;
    object-fit: cover;
    border-radius: 999px;
    margin: 0 auto 14px;
}

.writer-profile h2 {
    margin: 0 0 6px;
}

.static-panel,
.not-found-panel {
    padding: 32px;
}

.narrow-container {
    max-width: 760px;
}

.empty-state {
    color: var(--color-muted);
}

.site-footer {
    background: #fff;
    border-top: 1px solid var(--color-border);
    padding: 38px 0 28px;
}

.footer-grid {
    gap: 26px;
    align-items: flex-start;
}

.footer-grid section {
    flex: 1;
}

.footer-grid h2 {
    margin: 0 0 10px;
    font-size: 1.1rem;
}

.footer-grid p,
.footer-grid li {
    color: #475467;
    line-height: 1.7;
}

.footer-grid ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-bottom {
    justify-content: space-between;
    padding-top: 22px;
    margin-top: 24px;
    border-top: 1px solid var(--color-border);
    color: var(--color-muted);
    font-size: 0.92rem;
}

@media (max-width: 1200px) {
    .headline-grid,
    .gallery-grid,
    .category-block-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .content-with-sidebar {
        flex-direction: column;
    }

    .page-sidebar {
        width: 100%;
        flex-basis: auto;
    }
}

@media (max-width: 980px) {
    .hero-grid,
    .footer-grid,
    .branding-inner {
        flex-direction: column;
    }

    .branding-inner {
        align-items: stretch;
        padding: 20px 0;
    }

    .branding-tools {
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .hero-slider {
        min-height: 440px;
    }

    .recent-item {
        grid-template-columns: 1fr;
    }

    .recent-item img {
        height: 240px;
    }

    .comment-form-grid,
    .writers-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: inline-flex;
    }

    .header-search,
    .header-auth {
        display: none;
    }

    .category-nav-inner {
        display: none;
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        padding: 16px 0;
    }

    .category-nav-inner.is-open {
        display: flex;
    }

    .topbar-inner {
        flex-direction: column;
        align-items: flex-start;
        padding: 12px 0;
    }

    .headline-grid,
    .gallery-grid,
    .category-block-grid {
        grid-template-columns: 1fr;
    }

    .hero-copy {
        left: 22px;
        right: 22px;
        bottom: 22px;
    }

    .hero-slider {
        min-height: 360px;
    }

    .brand-logo small {
        right: -34px;
        font-size: 0.84rem;
    }

    .breaking-bar-inner {
        align-items: flex-start;
        flex-direction: column;
        padding: 12px 0;
    }

    .breaking-track {
        min-height: 56px;
        width: 100%;
    }

    .article-body,
    .static-panel,
    .comment-form,
    .not-found-panel {
        padding: 22px;
    }

    .site-main {
        padding-top: 18px;
    }
}

.topbar-finance {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.topbar-finance span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    border-radius: 999px;
    background: #f8fafc;
    font-size: 0.8rem;
}

.hero-grid-premium {
    gap: 26px;
}

.hero-grid-premium .hero-slider {
    min-height: 620px;
    border-radius: 30px;
}

.hero-kicker,
.mini-kicker {
    display: inline-flex;
    align-items: center;
    padding: 7px 11px;
    border-radius: 999px;
    background: rgba(227, 6, 19, 0.12);
    color: var(--color-red);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.mini-kicker-light {
    background: rgba(255, 255, 255, 0.16);
    color: #fff;
}

.hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 18px;
    color: rgba(255, 255, 255, 0.76);
    font-size: 0.9rem;
}

.stack-card,
.news-card,
.gallery-card,
.sidebar-widget,
.static-panel,
.not-found-panel,
.recent-item,
.lead-listing-card,
.article-source-card,
.article-note-box {
    border: 1px solid rgba(15, 23, 42, 0.04);
}

.stack-card,
.news-card,
.gallery-card,
.recent-item,
.lead-listing-card,
.sidebar-widget {
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.stack-card:hover,
.news-card:hover,
.gallery-card:hover,
.recent-item:hover,
.lead-listing-card:hover,
.sidebar-widget:hover {
    transform: translateY(-3px);
    box-shadow: 0 22px 48px rgba(15, 23, 42, 0.12);
}

.news-pulse {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    margin-top: 20px;
}

.news-pulse article {
    padding: 20px 22px;
    border-radius: 20px;
    background: linear-gradient(180deg, #fff, #f8fafc);
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(15, 23, 42, 0.04);
}

.news-pulse span {
    display: block;
    color: var(--color-muted);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.74rem;
    font-weight: 800;
}

.news-pulse strong {
    display: block;
    font-size: 2rem;
    letter-spacing: -0.05em;
}

.news-pulse small {
    color: #475467;
}

.spotlight-strip {
    margin-top: 28px;
}

.spotlight-grid {
    display: grid;
    gap: 20px;
}

.spotlight-card {
    overflow: hidden;
    border-radius: 24px;
    background: linear-gradient(135deg, #101828 0%, #1f2937 100%);
    color: #fff;
    box-shadow: 0 20px 48px rgba(15, 23, 42, 0.16);
}

.spotlight-card a {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) 320px;
    min-height: 240px;
}

.spotlight-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 28px;
}

.spotlight-copy h3 {
    margin: 12px 0 10px;
    font-size: clamp(1.5rem, 3vw, 2rem);
    line-height: 1.05;
    letter-spacing: -0.05em;
}

.spotlight-copy p {
    margin: 0;
    color: rgba(255, 255, 255, 0.76);
    line-height: 1.7;
}

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

.section-surface {
    padding: 24px;
    border-radius: 26px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 250, 252, 0.96));
    box-shadow: var(--shadow-soft);
}

.headline-grid-spacious {
    gap: 24px;
}

.lead-listing-card {
    overflow: hidden;
    margin-bottom: 24px;
    background: #fff;
    border-radius: 26px;
    box-shadow: var(--shadow-soft);
}

.lead-listing-card a {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
}

.lead-listing-media img {
    width: 100%;
    height: 100%;
    min-height: 340px;
    object-fit: cover;
}

.lead-listing-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 32px;
}

.lead-listing-copy h2 {
    margin: 14px 0 12px;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    line-height: 1.05;
    letter-spacing: -0.05em;
}

.lead-listing-copy p {
    margin: 0;
    color: #475467;
    line-height: 1.75;
}

.recent-item-media {
    display: block;
    overflow: hidden;
    border-radius: 16px;
}

.page-sidebar {
    position: sticky;
    top: 138px;
}

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

.article-source-card,
.article-note-box {
    padding: 22px;
    border-radius: 22px;
    background: #fff;
    box-shadow: var(--shadow-soft);
}

.article-source-card h2,
.article-note-box h2 {
    margin: 0 0 12px;
    font-size: 1rem;
}

.article-source-card p,
.article-note-box p {
    margin: 0;
    color: #475467;
    line-height: 1.7;
}

.article-source-line {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-top: 12px;
}

.article-source-line strong {
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-muted);
}

.article-source-line a {
    color: var(--color-red);
    font-weight: 700;
}

.article-tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.article-tag-list span {
    display: inline-flex;
    align-items: center;
    padding: 9px 12px;
    border-radius: 999px;
    background: #f8fafc;
    color: #344054;
    font-weight: 700;
    font-size: 0.86rem;
}

.article-note-box {
    margin-bottom: 24px;
    background: linear-gradient(135deg, rgba(227, 6, 19, 0.06), #fff);
}

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

    .spotlight-card a,
    .lead-listing-card a {
        grid-template-columns: 1fr;
    }

    .page-sidebar {
        position: static;
    }
}

@media (max-width: 980px) {
    .hero-grid-premium .hero-slider {
        min-height: 460px;
    }

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

@media (max-width: 768px) {
    .news-pulse {
        grid-template-columns: 1fr;
    }

    .spotlight-copy,
    .lead-listing-copy,
    .section-surface {
        padding: 20px;
    }

    .spotlight-card a {
        min-height: 0;
    }
}
