/* ============================================================
   DeFi Hungary News — Brand v4 (Phase 6)
   Bloomberg / Financial Times editorial dark coral
   ============================================================ */

:root {
    --dfh-news-bg:           #0a0a0d;
    --dfh-news-panel:        #0f0f15;
    --dfh-news-border:       rgba(255, 255, 255, 0.08);
    --dfh-news-border-light: rgba(255, 255, 255, 0.04);
    --dfh-news-text-pri:     #f5f5f7;
    --dfh-news-text-sec:     rgba(255, 255, 255, 0.72);
    --dfh-news-text-ter:     rgba(255, 255, 255, 0.45);
    --dfh-news-text-mono:    rgba(255, 255, 255, 0.55);

    --dfh-accent:            #FF7849;
    --dfh-accent-dark:       #B85432;

    --dfh-cat-reszveny:      #60A5FA;
    --dfh-cat-kripto:        #FF7849;
    --dfh-cat-gazdasag:      #22C55E;
    --dfh-cat-geopolitika:   #A78BFA;

    --dfh-live:              #22C55E;
}

/* Light theme override */
[data-theme="light"] {
    --dfh-news-bg:           #ffffff;
    --dfh-news-panel:        #f8f9fa;
    --dfh-news-border:       rgba(0, 0, 0, 0.08);
    --dfh-news-border-light: rgba(0, 0, 0, 0.04);
    --dfh-news-text-pri:     #1a1a1a;
    --dfh-news-text-sec:     rgba(0, 0, 0, 0.72);
    --dfh-news-text-ter:     rgba(0, 0, 0, 0.45);
    --dfh-news-text-mono:    rgba(0, 0, 0, 0.55);
}

/* ============================================================
   Wrapper + general
   ============================================================ */

.news-wrapper {
    background: var(--dfh-news-bg);
    color: var(--dfh-news-text-pri);
    font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
    min-height: 100vh;
    padding: 32px 0;
}

.news-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 16px;
}

@media (min-width: 768px) {
    .news-container { padding: 0 24px; }
}

/* ============================================================
   Sub-nav (categories)
   ============================================================ */

.news-subnav {
    display: flex;
    gap: 16px;
    padding: 12px 0;
    margin-bottom: 20px;
    border-bottom: 0.5px solid var(--dfh-news-border);
    align-items: center;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.news-subnav-link {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--dfh-news-text-mono);
    text-decoration: none;
    white-space: nowrap;
    padding: 4px 8px;
}

.news-subnav-link:hover, .news-subnav-link.active {
    color: var(--dfh-news-text-pri);
    text-decoration: none;
}

.news-subnav-live {
    color: var(--dfh-live);
    display: flex;
    align-items: center;
    gap: 6px;
    margin-left: auto;
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.1em;
}

.news-subnav-live::before {
    content: "";
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--dfh-live);
    box-shadow: 0 0 6px rgba(34, 197, 94, 0.6);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

/* ============================================================
   Hero grid
   ============================================================ */

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 24px;
}

@media (min-width: 768px) {
    .hero-grid {
        grid-template-columns: 1.85fr 1fr;
        gap: 20px;
    }
}

.hero-main, .hero-side-card {
    background: var(--dfh-news-panel);
    border: 0.5px solid var(--dfh-news-border);
    border-radius: 10px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: border-color 0.2s;
}

.hero-main:hover, .hero-side-card:hover {
    text-decoration: none;
    color: inherit;
    border-color: rgba(255, 255, 255, 0.18);
}

.hero-strip {
    height: 3px;
}

.hero-strip-reszveny    { background: var(--dfh-cat-reszveny); }
.hero-strip-kripto      { background: var(--dfh-cat-kripto); }
.hero-strip-gazdasag    { background: var(--dfh-cat-gazdasag); }
.hero-strip-geopolitika { background: var(--dfh-cat-geopolitika); }

.hero-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

@media (min-width: 768px) {
    .hero-img { height: 280px; }
}

.hero-body {
    padding: 18px 20px 20px;
}

.hero-cat-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 8px;
}

.hero-cat-label::before {
    content: "";
    width: 6px; height: 6px;
    border-radius: 1px;
}

.hero-cat-label.cat-reszveny    { color: var(--dfh-cat-reszveny); } .hero-cat-label.cat-reszveny::before    { background: var(--dfh-cat-reszveny); }
.hero-cat-label.cat-kripto      { color: var(--dfh-cat-kripto); }   .hero-cat-label.cat-kripto::before      { background: var(--dfh-cat-kripto); }
.hero-cat-label.cat-gazdasag    { color: var(--dfh-cat-gazdasag); } .hero-cat-label.cat-gazdasag::before    { background: var(--dfh-cat-gazdasag); }
.hero-cat-label.cat-geopolitika { color: var(--dfh-cat-geopolitika); } .hero-cat-label.cat-geopolitika::before { background: var(--dfh-cat-geopolitika); }

.hero-title {
    font-size: 22px;
    font-weight: 600;
    line-height: 1.22;
    letter-spacing: -0.01em;
    margin: 8px 0 12px;
    color: var(--dfh-news-text-pri);
}

@media (min-width: 768px) {
    .hero-title { font-size: 26px; }
}

.hero-meta {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--dfh-news-text-ter);
}

.hero-lead {
    font-size: 13px;
    color: var(--dfh-news-text-sec);
    line-height: 1.6;
    margin-top: 12px;
}

@media (min-width: 768px) {
    .hero-lead { font-size: 14px; }
}

/* Side cards */

.hero-side {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hero-side-card {
    display: flex;
    flex-direction: column;
}

.hero-side-img {
    width: 100%;
    height: 100px;
    object-fit: cover;
}

.hero-side-body {
    padding: 10px 14px 14px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.hero-side-title {
    font-size: 13px;
    font-weight: 500;
    line-height: 1.35;
    color: var(--dfh-news-text-pri);
}

/* ============================================================
   Live feed sidebar
   ============================================================ */

.live-feed-block {
    background: var(--dfh-news-panel);
    border: 0.5px solid var(--dfh-news-border);
    border-radius: 10px;
    padding: 14px 16px;
}

.live-feed-h {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 10px;
    border-bottom: 0.5px solid var(--dfh-news-border);
    margin-bottom: 4px;
}

.live-feed-title {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--dfh-live);
    display: flex;
    align-items: center;
    gap: 6px;
}

.live-feed-title::before {
    content: "";
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--dfh-live);
    animation: pulse 2s infinite;
}

.live-feed-ts {
    font-family: 'JetBrains Mono', monospace;
    font-size: 9px;
    color: var(--dfh-news-text-ter);
}

.live-feed-item {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 8px;
    padding: 9px 0;
    border-bottom: 0.5px solid var(--dfh-news-border-light);
}

.live-feed-item:last-child { border-bottom: none; }

.live-feed-time {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    color: var(--dfh-news-text-ter);
}

.live-feed-cat-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 9px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.live-feed-headline {
    font-size: 12px;
    line-height: 1.4;
    color: var(--dfh-news-text-sec);
    margin-top: 2px;
}

/* ============================================================
   Category section rows
   ============================================================ */

.cat-section {
    margin-bottom: 26px;
}

.cat-section-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    padding: 4px 0 10px;
    border-bottom: 0.5px solid var(--dfh-news-border);
    margin-bottom: 6px;
}

.cat-section-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.cat-section-label::before {
    content: "";
    width: 6px; height: 6px;
    border-radius: 1px;
}

.cat-section-label.cat-reszveny    { color: var(--dfh-cat-reszveny); }    .cat-section-label.cat-reszveny::before    { background: var(--dfh-cat-reszveny); }
.cat-section-label.cat-kripto      { color: var(--dfh-cat-kripto); }      .cat-section-label.cat-kripto::before      { background: var(--dfh-cat-kripto); }
.cat-section-label.cat-gazdasag    { color: var(--dfh-cat-gazdasag); }    .cat-section-label.cat-gazdasag::before    { background: var(--dfh-cat-gazdasag); }
.cat-section-label.cat-geopolitika { color: var(--dfh-cat-geopolitika); } .cat-section-label.cat-geopolitika::before { background: var(--dfh-cat-geopolitika); }

.cat-section-more {
    font-size: 10px;
    color: var(--dfh-accent);
    text-decoration: none;
    font-family: 'JetBrains Mono', monospace;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.cat-section-more:hover { text-decoration: none; color: var(--dfh-accent); opacity: 0.8; }

.cat-row {
    display: grid;
    grid-template-columns: 56px 1fr 80px;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 0.5px solid var(--dfh-news-border-light);
    align-items: baseline;
    text-decoration: none;
    color: inherit;
}

.cat-row:hover { text-decoration: none; background: rgba(255, 255, 255, 0.02); }

.cat-row:last-child { border-bottom: none; }

.cat-row-time {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    color: var(--dfh-news-text-ter);
}

.cat-row-headline {
    font-size: 13px;
    color: var(--dfh-news-text-sec);
    line-height: 1.4;
}

.cat-row-author {
    font-family: 'JetBrains Mono', monospace;
    font-size: 9px;
    color: var(--dfh-news-text-ter);
    letter-spacing: 0.04em;
    text-align: right;
}

/* ============================================================
   Dual CTA band (Prémium + PRO)
   ============================================================ */

.cta-band {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin: 32px 0 16px;
}

@media (min-width: 768px) {
    .cta-band { grid-template-columns: 1fr 1fr; }
}

.cta-card {
    padding: 18px 20px;
    border-radius: 12px;
    border: 0.5px solid;
}

.cta-prem { background: rgba(96, 165, 250, 0.05); border-color: rgba(96, 165, 250, 0.28); }
.cta-pro  { background: rgba(255, 120, 73, 0.06); border-color: rgba(255, 120, 73, 0.35); }

.cta-tier-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}

.cta-tier-label::before {
    content: "";
    width: 6px; height: 6px;
    border-radius: 1px;
}

.cta-prem .cta-tier-label { color: #60A5FA; } .cta-prem .cta-tier-label::before { background: #60A5FA; }
.cta-pro .cta-tier-label  { color: var(--dfh-accent); } .cta-pro .cta-tier-label::before  { background: var(--dfh-accent); }

.cta-card-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--dfh-news-text-pri);
    margin: 10px 0 6px;
    line-height: 1.3;
}

.cta-card-desc {
    font-size: 12px;
    color: var(--dfh-news-text-sec);
    line-height: 1.55;
    margin-bottom: 14px;
    min-height: 50px;
}

.cta-price {
    display: flex;
    align-items: baseline;
    gap: 5px;
    margin-bottom: 12px;
    font-family: 'JetBrains Mono', monospace;
}

.cta-price-num { font-size: 21px; font-weight: 600; color: var(--dfh-news-text-pri); }
.cta-price-unit { font-size: 11px; color: var(--dfh-news-text-ter); }

.cta-btn {
    display: inline-block;
    padding: 8px 14px;
    border-radius: 5px;
    font-size: 11px;
    font-weight: 600;
    text-decoration: none;
}

.cta-prem .cta-btn { background: #60A5FA; color: #0a0a0d; }
.cta-pro .cta-btn  { background: var(--dfh-accent); color: #0a0a0d; }

.cta-btn:hover { text-decoration: none; opacity: 0.9; color: #0a0a0d; }

/* ============================================================
   Article page (/news/{slug})
   ============================================================ */

.article-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 992px) {
    .article-grid { grid-template-columns: 1.85fr 1fr; }
}

.article-main { min-width: 0; }

.article-meta-bar {
    display: flex;
    align-items: center;
    gap: 14px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--dfh-news-text-ter);
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.article-title {
    font-size: 26px;
    font-weight: 600;
    line-height: 1.22;
    color: var(--dfh-news-text-pri);
    letter-spacing: -0.01em;
    margin: 0 0 14px;
}

@media (min-width: 768px) {
    .article-title { font-size: 32px; }
}

.article-lead {
    font-size: 15px;
    color: var(--dfh-news-text-sec);
    line-height: 1.6;
    margin-bottom: 18px;
    padding-bottom: 18px;
    border-bottom: 0.5px solid var(--dfh-news-border);
}

@media (min-width: 768px) {
    .article-lead { font-size: 16px; }
}

.article-author-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
}

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

.author-av {
    width: 32px; height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--dfh-accent), var(--dfh-accent-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0a0a0d;
    font-weight: 700;
    font-size: 13px;
}

/* Phase 8.1: valodi DH logo a "D" placeholder helyett */
.author-av-logo {
    background: var(--dfh-news-panel);
    padding: 0;
    overflow: hidden;
}

.author-av-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 4px;
}

.author-info {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}

.author-name {
    font-size: 13px;
    font-weight: 500;
    color: var(--dfh-news-text-pri);
}

.author-date {
    font-size: 10px;
    color: var(--dfh-news-text-ter);
    font-family: 'JetBrains Mono', monospace;
    letter-spacing: 0.04em;
}

.share-row {
    display: flex;
    gap: 6px;
}

.share-btn {
    width: 32px; height: 32px;
    border-radius: 4px;
    background: var(--dfh-news-panel);
    border: 0.5px solid var(--dfh-news-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dfh-news-text-ter);
    text-decoration: none;
    font-size: 14px;
}

.share-btn:hover {
    color: var(--dfh-accent);
    border-color: var(--dfh-accent);
    text-decoration: none;
}

.article-featured-img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 18px;
    display: block;
}

.article-body {
    font-size: 15px;
    color: var(--dfh-news-text-sec);
    line-height: 1.7;
}

.article-body p { margin: 0 0 14px; }

.article-body h2, .article-body h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--dfh-news-text-pri);
    margin: 22px 0 8px;
    letter-spacing: -0.01em;
}

.article-body a {
    color: var(--dfh-accent);
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 2px;
}

.article-body a:hover { opacity: 0.85; }

.article-body ul, .article-body ol {
    margin: 0 0 14px;
    padding-left: 22px;
}

.article-body blockquote {
    border-left: 2px solid var(--dfh-accent);
    padding-left: 14px;
    margin: 14px 0;
    color: var(--dfh-news-text-pri);
    font-style: italic;
}

/* "Levi take" boksz */

.levi-take {
    background: rgba(255, 120, 73, 0.06);
    border: 0.5px solid rgba(255, 120, 73, 0.3);
    border-radius: 8px;
    padding: 18px 20px;
    margin: 22px 0;
}

.levi-take-head {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}

.levi-take-av {
    width: 28px; height: 28px;
    border-radius: 50%;
    background: var(--dfh-accent);
    color: #0a0a0d;
    font-weight: 700;
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.levi-take-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.16em;
    color: var(--dfh-accent);
    text-transform: uppercase;
    font-weight: 600;
}

.levi-take-body {
    font-size: 14px;
    color: var(--dfh-news-text-sec);
    line-height: 1.6;
    font-style: italic;
}

/* Sentiment widget (statikus placeholder Phase 6-ban) */

.engage-box {
    background: var(--dfh-news-panel);
    border: 0.5px solid var(--dfh-news-border);
    border-radius: 10px;
    padding: 18px 20px;
    margin: 22px 0;
}

.engage-q {
    font-size: 14px;
    font-weight: 500;
    color: var(--dfh-news-text-pri);
    margin-bottom: 14px;
    text-align: center;
}

.engage-btns {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-bottom: 12px;
}

.engage-btn {
    flex: 1;
    padding: 11px 16px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    max-width: 160px;
    text-decoration: none;
    cursor: pointer;
}

.engage-bear { background: rgba(239, 68, 68, 0.15); color: #EF4444; border: 0.5px solid rgba(239, 68, 68, 0.3); }
.engage-bull { background: rgba(34, 197, 94, 0.15); color: #22C55E; border: 0.5px solid rgba(34, 197, 94, 0.3); }

.engage-stats {
    text-align: center;
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    color: var(--dfh-news-text-ter);
    letter-spacing: 0.04em;
}

/* Related cikkek */

.related-h {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--dfh-news-text-mono);
    margin: 26px 0 12px;
    padding-bottom: 8px;
    border-bottom: 0.5px solid var(--dfh-news-border);
}

.related-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}

@media (min-width: 768px) {
    .related-grid { grid-template-columns: repeat(3, 1fr); }
}

.related-card {
    background: var(--dfh-news-panel);
    border: 0.5px solid var(--dfh-news-border);
    border-radius: 8px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
}

.related-card:hover { text-decoration: none; color: inherit; border-color: rgba(255, 255, 255, 0.18); }

.related-img {
    height: 90px;
    width: 100%;
    object-fit: cover;
}

.related-body { padding: 10px 12px 12px; }

.related-date {
    font-family: 'JetBrains Mono', monospace;
    font-size: 9px;
    letter-spacing: 0.06em;
    color: var(--dfh-news-text-ter);
    margin-bottom: 4px;
}

.related-title {
    font-size: 12px;
    line-height: 1.35;
    color: var(--dfh-news-text-pri);
}

/* ============================================================
   Sidebar widgets (article page)
   ============================================================ */

.article-sidebar {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.sb-block {
    background: var(--dfh-news-panel);
    border: 0.5px solid var(--dfh-news-border);
    border-radius: 10px;
    padding: 14px 16px;
}

.sb-h {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.14em;
    color: var(--dfh-news-text-mono);
    text-transform: uppercase;
    font-weight: 600;
    padding-bottom: 8px;
    border-bottom: 0.5px solid var(--dfh-news-border);
    margin-bottom: 6px;
}

.sb-h.live {
    color: var(--dfh-live);
    display: flex;
    align-items: center;
    gap: 6px;
}

.sb-h.live::before {
    content: "";
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--dfh-live);
    animation: pulse 2s infinite;
}

/* Terminal CTA */

.term-cta {
    background: linear-gradient(135deg, rgba(255, 120, 73, 0.1), rgba(255, 120, 73, 0.04));
    border: 0.5px solid rgba(255, 120, 73, 0.3);
    border-radius: 10px;
    padding: 16px;
}

.term-cta-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    color: var(--dfh-accent);
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 8px;
}

.term-cta-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--dfh-news-text-pri);
    line-height: 1.35;
    margin-bottom: 10px;
}

.term-cta-desc {
    font-size: 12px;
    color: var(--dfh-news-text-sec);
    line-height: 1.5;
    margin-bottom: 12px;
}

.term-cta-btn {
    display: inline-block;
    padding: 7px 14px;
    background: var(--dfh-accent);
    color: #0a0a0d;
    border-radius: 5px;
    font-size: 11px;
    font-weight: 600;
    text-decoration: none;
}

.term-cta-btn:hover { color: #0a0a0d; opacity: 0.9; text-decoration: none; }

/* ============================================================
   Category page (/news/kategoria/{cat})
   ============================================================ */

.cat-page-head {
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 0.5px solid var(--dfh-news-border);
}

.cat-page-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.cat-page-title {
    font-size: 28px;
    font-weight: 600;
    color: var(--dfh-news-text-pri);
    letter-spacing: -0.01em;
}

.cat-page-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

@media (min-width: 768px) {
    .cat-page-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
    .cat-page-grid { grid-template-columns: repeat(3, 1fr); }
}

.cat-page-card {
    background: var(--dfh-news-panel);
    border: 0.5px solid var(--dfh-news-border);
    border-radius: 10px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
}

.cat-page-card:hover { color: inherit; text-decoration: none; border-color: rgba(255, 255, 255, 0.18); }

.cat-page-img {
    width: 100%;
    height: 160px;
    object-fit: cover;
}

.cat-page-body { padding: 14px 16px 16px; }

.cat-page-card-title {
    font-size: 14px;
    font-weight: 500;
    color: var(--dfh-news-text-pri);
    line-height: 1.35;
    margin: 8px 0 6px;
}

.cat-page-card-date {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    color: var(--dfh-news-text-ter);
}

/* Pagination */

.news-pagination {
    margin: 24px 0;
    display: flex;
    justify-content: center;
}

.news-pagination .pagination {
    gap: 4px;
}

.news-pagination .page-link {
    background: var(--dfh-news-panel);
    border: 0.5px solid var(--dfh-news-border);
    color: var(--dfh-news-text-sec);
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    padding: 6px 12px;
    border-radius: 5px;
}

.news-pagination .page-item.active .page-link {
    background: var(--dfh-accent);
    color: #0a0a0d;
    border-color: var(--dfh-accent);
}

.news-pagination .page-link:hover {
    background: rgba(255, 120, 73, 0.1);
    color: var(--dfh-accent);
}

/* ============================================================
   App download CTA banner (Phase 6.1 — bitcoin.com tanulsag)
   ============================================================ */

.news-app-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 18px;
    background: linear-gradient(135deg, #FF7849 0%, #E65A2E 100%);
    color: #0a0a0d;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    margin-bottom: 16px;
    transition: opacity 0.2s, transform 0.2s;
    box-shadow: 0 4px 20px rgba(255, 120, 73, 0.25);
}

.news-app-cta:hover {
    color: #0a0a0d;
    text-decoration: none;
    opacity: 0.95;
    transform: translateY(-1px);
}

.news-app-cta-icon {
    flex-shrink: 0;
    font-size: 20px;
    width: 32px;
    height: 32px;
    background: rgba(0, 0, 0, 0.22);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0a0a0d;
}

.news-app-cta-text {
    flex: 1;
    line-height: 1.3;
    color: #0a0a0d;
}

.news-app-cta-text strong {
    display: block;
    font-weight: 700;
    margin-bottom: 2px;
    color: #0a0a0d;
    font-size: 14px;
}

.news-app-cta-text span {
    font-size: 11px;
    color: rgba(10, 10, 13, 0.75);
    font-weight: 500;
}

.news-app-cta-arrow {
    flex-shrink: 0;
    font-size: 18px;
    color: #0a0a0d;
    font-weight: 700;
}

/* ============================================================
   Hero time badge (absolute positioned on featured image)
   ============================================================ */

.hero-main { position: relative; }

.hero-time-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 6px 12px;
    background: rgba(10, 10, 13, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #fff;
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.12em;
    border-radius: 16px;
    text-transform: uppercase;
    font-weight: 500;
    z-index: 2;
    border: 0.5px solid rgba(255, 255, 255, 0.1);
}

.hero-side-card { position: relative; }

.hero-side-time-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    padding: 4px 8px;
    background: rgba(10, 10, 13, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #fff;
    font-family: 'JetBrains Mono', monospace;
    font-size: 9px;
    letter-spacing: 0.1em;
    border-radius: 12px;
    text-transform: uppercase;
    font-weight: 500;
    z-index: 2;
}

/* ============================================================
   "Olvass tovább" inline link in hero lead
   ============================================================ */

.hero-read-more {
    color: var(--dfh-accent);
    text-decoration: none;
    font-weight: 500;
    margin-left: 4px;
    white-space: nowrap;
}

.hero-read-more:hover {
    color: var(--dfh-accent);
    text-decoration: underline;
    text-underline-offset: 2px;
}

/* ============================================================
   Premium gate (PRO-only cikk fade overlay + CTA, Phase 8)
   ============================================================ */

.article-body-gated {
    position: relative;
    max-height: 400px;
    overflow: hidden;
}

.premium-gate {
    position: relative;
    margin-top: -120px;       /* atfedes a gated body aljara */
    padding-top: 120px;
    z-index: 2;
}

.premium-gate-fade {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to bottom, transparent, var(--dfh-news-bg) 85%);
    pointer-events: none;
}

.premium-gate-content {
    background: var(--dfh-news-panel);
    border: 0.5px solid rgba(255, 120, 73, 0.3);
    border-radius: 12px;
    padding: 28px 24px;
    text-align: center;
}

.premium-gate-badge {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.16em;
    color: var(--dfh-accent);
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 12px;
}

.premium-gate-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--dfh-news-text-pri);
    line-height: 1.3;
    margin-bottom: 10px;
}

.premium-gate-desc {
    font-size: 14px;
    color: var(--dfh-news-text-sec);
    line-height: 1.6;
    margin-bottom: 18px;
    max-width: 440px;
    margin-left: auto;
    margin-right: auto;
}

.premium-gate-features {
    list-style: none;
    padding: 0;
    margin: 0 auto 20px;
    display: inline-block;
    text-align: left;
}

.premium-gate-features li {
    font-size: 13px;
    color: var(--dfh-news-text-sec);
    padding: 4px 0;
}

.premium-gate-cta {
    display: inline-block;
    padding: 13px 28px;
    background: linear-gradient(135deg, #FF7849 0%, #E65A2E 100%);
    color: #0a0a0d;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(255, 120, 73, 0.3);
    transition: opacity 0.2s, transform 0.2s;
}

.premium-gate-cta:hover {
    color: #0a0a0d;
    text-decoration: none;
    opacity: 0.95;
    transform: translateY(-1px);
}

.premium-gate-login {
    margin-top: 14px;
    font-size: 12px;
    color: var(--dfh-news-text-ter);
}

.premium-gate-login a {
    color: var(--dfh-accent);
    text-decoration: none;
}

.premium-gate-login a:hover { text-decoration: underline; }

/* Phase 8.1: pricing line a gate CTA alatt */
.premium-gate-pricing {
    margin-top: 10px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    color: var(--dfh-news-text-ter);
    letter-spacing: 0.04em;
}

/* PRO badge a hero/list cikkekhez */

.news-pro-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 2px 8px;
    background: rgba(255, 120, 73, 0.15);
    border: 0.5px solid rgba(255, 120, 73, 0.4);
    border-radius: 4px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 9px;
    letter-spacing: 0.1em;
    color: var(--dfh-accent);
    text-transform: uppercase;
    font-weight: 600;
    vertical-align: middle;
    margin-left: 6px;
}
