/* ============ KADENCE OVERRIDES ============ */
body.page-template-page-in-the-news,
body.page-template-page-in-the-news .site,
body.page-template-page-in-the-news .site-container,
body.page-template-page-in-the-news #wrapper,
body.page-template-page-in-the-news .content-wrap,
body.page-template-page-in-the-news .site-main,
body.page-template-page-in-the-news #main,
body.page-template-page-in-the-news .entry-content-wrap,
body.page-template-page-in-the-news .entry-content,
body.page-template-page-in-the-news .content-area,
body.page-template-page-in-the-news article {
    background: #0B1221 !important;
    color: #FFFFFF !important;
    max-width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin: 0 !important;
}

body.page-template-page-in-the-news .site-main .entry-content > * {
    max-width: none !important;
}

body.page-template-page-in-the-news .site-main {
    width: 100% !important;
    float: none !important;
}

body.page-template-page-in-the-news .entry-header,
body.page-template-page-in-the-news .page-title,
body.page-template-page-in-the-news .entry-title {
    display: none !important;
}

body.page-template-page-in-the-news .content-wrap {
    padding: 0 !important;
}

/* Force white headings */
body.page-template-page-in-the-news .hero-title,
body.page-template-page-in-the-news .section-title {
    color: #FFFFFF !important;
}

/* ============ BASE ============ */
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }

/* ============ HERO ============ */
.news-hero {
    position: relative;
    padding: 140px 0 80px;
    overflow: hidden;
}
.news-hero::before {
    content: '';
    position: absolute; inset: 0;
    background:
      radial-gradient(ellipse 60% 50% at 50% 30%, rgba(251,113,133,0.04) 0%, transparent 60%),
      radial-gradient(ellipse 50% 40% at 80% 70%, rgba(99,102,241,0.03) 0%, transparent 50%);
    pointer-events: none;
}
.news-hero::after {
    content: '';
    position: absolute; inset: 0;
    background-image:
      linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,255,255,0.015) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}
.news-hero .container { position: relative; z-index: 2; }
.hero-eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 6px 14px; border-radius: 100px;
    background: rgba(251,113,133,0.08); border: 1px solid rgba(251,113,133,0.15);
    font-size: 12px; font-weight: 600; color: var(--rose-400);
    margin-bottom: 24px; letter-spacing: 0.04em;
}
.hero-title {
    font-family: 'Instrument Serif', serif;
    font-size: 52px; line-height: 1.12; margin-bottom: 20px;
    max-width: 700px; color: var(--white);
}
.hero-sub {
    font-size: 17px; color: var(--slate-400); line-height: 1.7;
    max-width: 640px;
}

/* ============ MEDIA LOGOS STRIP ============ */
.logos-strip {
    padding: 48px 0;
    border-top: 1px solid rgba(255,255,255,0.04);
    border-bottom: 1px solid rgba(255,255,255,0.04);
    background: rgba(15,26,46,0.5);
}
.logos-inner {
    display: flex; align-items: center; justify-content: center;
    gap: 48px; flex-wrap: wrap;
}
.media-logo {
    font-weight: 700; color: var(--slate-500); opacity: 0.5;
    letter-spacing: -0.02em; transition: opacity 0.2s;
    white-space: nowrap; font-size: 18px;
}
.media-logo:hover { opacity: 0.8; }
.media-logo.wsj { font-family: Georgia, 'Times New Roman', serif; font-style: italic; font-size: 22px; }
.media-logo.bloomberg { font-weight: 800; letter-spacing: -0.03em; font-size: 20px; }
.media-logo.forbes { font-family: Georgia, 'Times New Roman', serif; font-style: italic; font-size: 20px; }
.media-logo.ft { font-family: Georgia, 'Times New Roman', serif; font-weight: 400; font-size: 20px; }
.media-logo.barrons { font-family: Georgia, 'Times New Roman', serif; font-weight: 700; font-size: 20px; }
.media-logo.coindesk { font-weight: 800; font-size: 17px; }
.media-logo.marketwatch { font-weight: 800; font-size: 16px; letter-spacing: -0.01em; }
.media-logo.thestreet { font-family: Georgia, 'Times New Roman', serif; font-weight: 700; font-size: 18px; font-style: italic; }

/* ============ ARTICLE CARDS ============ */
.articles-section {
    padding: 80px 0 100px;
}
.section-eyebrow {
    font-size: 11px; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.08em; color: var(--teal-400); margin-bottom: 16px;
}
.section-title {
    font-family: 'Instrument Serif', serif;
    font-size: 36px; line-height: 1.2; margin-bottom: 16px;
    color: var(--white);
}
.articles-header {
    text-align: center; margin-bottom: 48px;
}
.articles-header .section-sub {
    font-size: 15px; color: var(--slate-400); line-height: 1.65;
    max-width: 540px; margin: 0 auto;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.article-card {
    border-radius: 12px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    transition: all 0.3s;
    overflow: hidden;
    text-decoration: none;
    display: block;
}
.article-card:hover {
    border-color: rgba(255,255,255,0.14);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.25);
}
.article-screenshot {
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #f8f8f8;
    border-bottom: 1px solid rgba(255,255,255,0.04);
}
.article-screenshot img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top left;
    display: block;
}
.article-body {
    padding: 20px 24px 24px;
}
.article-source {
    font-size: 11px; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.06em; color: var(--slate-500); margin-bottom: 8px;
}
.article-headline {
    font-size: 15px; font-weight: 600; line-height: 1.45;
    color: var(--slate-200); margin-bottom: 8px;
}
.article-meta {
    font-size: 12px; color: var(--slate-600); margin-bottom: 12px;
}
.article-link-row {
    display: flex; align-items: center; gap: 6px;
    font-size: 12px; font-weight: 600; color: var(--teal-400);
    transition: gap 0.2s;
}
.article-card:hover .article-link-row { gap: 10px; }
.article-link-row svg { flex-shrink: 0; }

/* ============ CTA SECTION ============ */
.cta-section {
    padding: 60px 0 120px;
    text-align: center;
}
.cta-text {
    font-size: 15px; color: var(--slate-400); line-height: 1.65;
    max-width: 480px; margin: 0 auto 28px;
}
.cta-buttons {
    display: flex; gap: 16px; justify-content: center;
}
.btn-primary {
    padding: 12px 28px; background: var(--teal-400); color: var(--navy-950);
    font-size: 14px; font-weight: 700; border-radius: 8px;
    text-decoration: none; transition: all 0.2s;
}
.btn-primary:hover { background: var(--teal-300); }
.btn-secondary {
    padding: 12px 28px; background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--white); font-size: 14px; font-weight: 600;
    border-radius: 8px; text-decoration: none; transition: all 0.2s;
}
.btn-secondary:hover { background: rgba(255,255,255,0.1); }

/* ============ ANIMATIONS ============ */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp 0.6s ease-out forwards; opacity: 0; }
.fade-up-d1 { animation-delay: 0.1s; }
.fade-up-d2 { animation-delay: 0.2s; }
.fade-up-d3 { animation-delay: 0.3s; }

/* ============ RESPONSIVE ============ */
@media (max-width: 768px) {
    .news-hero { padding: 110px 0 60px; }
    .hero-title { font-size: 36px; }
    .logos-inner { gap: 28px; }
    .articles-grid { grid-template-columns: 1fr; }
    .cta-buttons { flex-direction: column; align-items: center; }
}
@media (min-width: 769px) and (max-width: 1024px) {
    .articles-grid { grid-template-columns: repeat(2, 1fr); }
}
