/* ============================================
   NEWS PAGE — PREMIUM REDESIGN 2025
   ============================================ */

/* ── Design Tokens (scoped to .news-page only) ── */
.news-page {
    --brand-primary-500: var(--color-brand-primary);
    --brand-primary-700: var(--color-brand-primary-dark);
    --brand-accent-500: var(--color-accent-emerald);
    --content-strong: var(--color-text-primary);
    --content-muted: var(--color-text-muted);
    --surface: var(--color-surface-light);
    --surface-muted: var(--color-surface-neutral);
    --border: var(--color-neutral-200);
    --gradient-hero: linear-gradient(135deg, #7f1d1d 0%, #991b1b 30%, #b91c1c 60%, #450a0a 100%);
    background: var(--surface-muted);
    min-height: 100vh;
}

.dark .news-page {
    --content-strong: #f1f5f9;
    --content-muted: #94a3b8;
    --surface: #0f172a;
    --surface-muted: #1e293b;
    --border: #334155;
    --gradient-hero: linear-gradient(135deg, #450a0a 0%, #7f1d1d 50%, #991b1b 100%);
}

/* ── Page Header ── */
.news-page-header {
    position: relative;
    overflow: hidden;
    padding: 5rem 2rem 3rem;
    text-align: center;
}

.news-page-header-bg {
    position: absolute;
    inset: 0;
    background: var(--gradient-hero);
    z-index: 0;
}

.news-page-header-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(255,255,255,0.06) 0%, transparent 50%),
        radial-gradient(circle at 80% 30%, rgba(255,255,255,0.04) 0%, transparent 40%);
}

.news-page-header-content {
    position: relative;
    z-index: 10;
    max-width: 720px;
    margin: 0 auto;
}

/* Breadcrumb */
.news-breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    margin-bottom: 1.25rem;
}

.news-breadcrumb a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: color 0.2s;
}

.news-breadcrumb a:hover { color: #fff; }

.news-breadcrumb-sep {
    font-size: 0.6rem;
    opacity: 0.5;
}

.news-page-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 0.75rem;
    letter-spacing: -0.01em;
}

.news-page-subtitle {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.72);
    line-height: 1.6;
    max-width: 560px;
    margin: 0 auto 2rem;
}

/* Search */
.news-search-form {
    max-width: 520px;
    margin: 0 auto;
}

.news-search-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.18);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 100px;
    transition: all 0.3s ease;
}

.news-search-wrapper:focus-within {
    background: rgba(255,255,255,0.2);
    border-color: rgba(255,255,255,0.35);
    box-shadow: 0 0 0 4px rgba(255,255,255,0.08);
}

.news-search-icon {
    position: absolute;
    left: 1.25rem;
    color: rgba(255,255,255,0.55);
    font-size: 0.95rem;
    pointer-events: none;
}

.news-search-input {
    width: 100%;
    padding: 0.9rem 3rem 0.9rem 3rem;
    background: transparent;
    border: none;
    outline: none;
    font-size: 0.95rem;
    color: #fff;
    font-family: inherit;
}

.news-search-input::placeholder {
    color: rgba(255,255,255,0.45);
}

.news-search-clear {
    position: absolute;
    right: 1rem;
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
    padding: 0.3rem;
    transition: color 0.2s;
}

.news-search-clear:hover { color: #fff; }

/* ── Page Body ── */
.news-page-body {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem 4rem;
}

/* ── Category Filter Bar ── */
.news-category-bar {
    position: sticky;
    top: 64px;
    z-index: 30;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    margin: 0 -1.5rem;
    padding: 0 1.5rem;
}

.dark .news-category-bar { background: var(--surface); }

.news-category-scroll {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    padding: 1rem 0;
}

.news-cat-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    white-space: nowrap;
    padding: 0.5rem 1.1rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--content-muted);
    background: var(--surface-muted);
    border: 1px solid var(--border);
    border-radius: 100px;
    text-decoration: none;
    transition: all 0.25s ease;
    cursor: pointer;
}

.news-cat-chip i { font-size: 0.8rem; }

.news-cat-chip:hover {
    border-color: var(--brand-primary-500);
    color: var(--brand-primary-500);
    background: var(--surface);
}

.news-cat-chip.active {
    background: var(--brand-primary-500);
    color: #fff;
    border-color: var(--brand-primary-500);
}

.news-cat-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 22px;
    height: 20px;
    padding: 0 6px;
    border-radius: 100px;
    font-size: 0.72rem;
    font-weight: 700;
    background: rgba(0,0,0,0.06);
    color: var(--content-muted);
    line-height: 1;
}

.news-cat-chip.active .news-cat-count {
    background: rgba(255,255,255,0.25);
    color: #fff;
}

.dark .news-cat-chip { background: #1e293b; border-color: #334155; }
.dark .news-cat-chip:hover { background: #0f172a; }

/* Search result info */
.news-search-result-info {
    padding: 1.25rem 0;
    font-size: 0.95rem;
    color: var(--content-muted);
}

.news-search-result-info strong { color: var(--brand-primary-500); }

/* ── Hero Section ── */
.news-hero-section { margin: 2rem 0 2.5rem; }

.news-hero-card {
    display: grid;
    grid-template-columns: 1fr;
    background: var(--surface);
    border-radius: 1.25rem;
    overflow: hidden;
    border: 1px solid var(--border);
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}

@media (min-width: 768px) {
    .news-hero-card { grid-template-columns: 1.1fr 0.9fr; }
}

.news-hero-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 48px rgba(0,0,0,0.12);
}

.dark .news-hero-card { background: #1e293b; border-color: #334155; }

.news-hero-card-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

@media (min-width: 768px) {
    .news-hero-card-image { height: 100%; min-height: 360px; }
}

.news-hero-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.news-hero-card:hover .news-hero-card-image img { transform: scale(1.06); }

.news-hero-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.3) 0%, transparent 50%);
    pointer-events: none;
}

.news-hero-card-placeholder {
    width: 100%; height: 100%;
    background: var(--gradient-hero);
    display: flex; align-items: center; justify-content: center;
}
.news-hero-card-placeholder i { font-size: 3.5rem; color: rgba(255,255,255,0.25); }

.news-hero-card-body {
    padding: 2rem 2rem 1.75rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media (min-width: 768px) { .news-hero-card-body { padding: 2.5rem; } }

.news-hero-card-title {
    font-size: clamp(1.35rem, 2.5vw, 1.75rem);
    font-weight: 800;
    color: var(--content-strong);
    line-height: 1.3;
    margin-bottom: 0.85rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.3s;
}

.news-hero-card:hover .news-hero-card-title { color: var(--brand-primary-500); }

.news-hero-card-desc {
    font-size: 0.95rem;
    color: var(--content-muted);
    line-height: 1.7;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 1.5rem;
    flex: 1;
}

.news-hero-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1.25rem;
    border-top: 1px solid var(--border);
}

/* Badges */
.news-badge {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    border-radius: 0.375rem;
    line-height: 1.4;
    margin-bottom: 0.75rem;
}

.news-badge--accent {
    background: rgba(20, 184, 166, 0.12);
    color: var(--brand-accent-500);
}

.dark .news-badge--accent { background: rgba(20, 184, 166, 0.2); }

.news-badge--overlay {
    position: absolute;
    top: 0.85rem;
    left: 0.85rem;
    z-index: 5;
    background: var(--brand-primary-500);
    color: #fff;
    margin-bottom: 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

/* Meta */
.news-meta-date {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8rem;
    color: var(--content-muted);
}

.news-meta-date i { color: var(--brand-accent-500); font-size: 0.75rem; }

.news-read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--brand-primary-500);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    transition: gap 0.3s;
}

.news-hero-card:hover .news-read-more { gap: 0.85rem; }
.news-read-more i { font-size: 0.8rem; transition: transform 0.3s; }
.news-hero-card:hover .news-read-more i { transform: translateX(3px); }

/* ── Grid Section ── */
.news-grid-section { margin-bottom: 2rem; }
.news-grid-header { margin-bottom: 1.75rem; }

.news-grid-heading {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--content-strong);
}

.news-grid-heading-accent {
    display: inline-block;
    width: 4px;
    height: 1.5rem;
    border-radius: 4px;
    background: var(--brand-primary-500);
}

/* ── News Card Grid ── */
.news-masonry-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .news-masonry-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
    .news-masonry-grid { grid-template-columns: repeat(3, 1fr); gap: 1.75rem; }
}

/* ── Individual News Card ── */
.news-item-card {
    background: var(--surface);
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}

.news-item-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.1);
    border-color: transparent;
}

.dark .news-item-card { background: #1e293b; border-color: #334155; }

.news-item-link {
    display: flex;
    flex-direction: column;
    height: 100%;
    text-decoration: none;
    color: inherit;
}

.news-item-thumb {
    position: relative;
    height: 200px;
    overflow: hidden;
}

@media (min-width: 1024px) { .news-item-thumb { height: 210px; } }

.news-item-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.news-item-card:hover .news-item-thumb img { transform: scale(1.08); }

.news-item-thumb-placeholder {
    width: 100%; height: 100%;
    background: var(--gradient-hero);
    display: flex; align-items: center; justify-content: center;
}

.news-item-thumb-placeholder i { font-size: 2.5rem; color: rgba(255,255,255,0.2); }

.news-item-body {
    padding: 1.25rem 1.25rem 1rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.news-item-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--content-strong);
    line-height: 1.4;
    margin-bottom: 0.6rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.3s;
}

.news-item-card:hover .news-item-title { color: var(--brand-primary-500); }

.news-item-excerpt {
    font-size: 0.85rem;
    color: var(--content-muted);
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1;
    margin-bottom: 1rem;
}

.news-item-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 0.85rem;
    border-top: 1px solid var(--border);
}

.news-item-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--surface-muted);
    color: var(--content-muted);
    font-size: 0.8rem;
    transition: all 0.3s;
}

.news-item-card:hover .news-item-arrow {
    background: var(--brand-primary-500);
    color: #fff;
    transform: translateX(2px);
}

/* ── Empty State ── */
.news-empty-state {
    grid-column: 1 / -1;
    text-align: center;
    padding: 5rem 2rem;
}

.news-empty-state .news-empty-icon {
    width: 90px; height: 90px; border-radius: 50%;
    background: var(--surface); border: 2px dashed var(--border);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 1.5rem;
}

.news-empty-state .news-empty-icon i { font-size: 2rem; color: var(--content-muted); }
.news-empty-state h3 { font-size: 1.25rem; font-weight: 700; color: var(--content-strong); margin-bottom: 0.5rem; }
.news-empty-state p { color: var(--content-muted); margin-bottom: 1.5rem; }

.news-empty-btn {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 0.7rem 1.5rem; background: var(--brand-primary-500);
    color: #fff; font-weight: 600; font-size: 0.9rem;
    border-radius: 100px; text-decoration: none; transition: all 0.3s;
}

.news-empty-btn:hover { background: var(--brand-primary-700); }

/* ── Pagination ── */
.news-pager {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

.news-pager-info { font-size: 0.8rem; color: var(--content-muted); font-weight: 500; }
.news-pager-controls { display: flex; align-items: center; gap: 0.35rem; }

.news-pager-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 0.6rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--content-strong);
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 0.6rem;
    text-decoration: none;
    transition: all 0.25s ease;
    cursor: pointer;
}

.news-pager-btn:hover:not(.is-active):not(.is-disabled) {
    border-color: var(--brand-primary-500);
    color: var(--brand-primary-500);
}

.news-pager-btn.is-active {
    background: var(--brand-primary-500);
    color: #fff;
    border-color: var(--brand-primary-500);
    box-shadow: 0 2px 8px rgba(220, 38, 38, 0.3);
}

.news-pager-btn.is-disabled { opacity: 0.35; pointer-events: none; }

.news-pager-dots {
    display: inline-flex; align-items: center; justify-content: center;
    width: 32px; height: 40px; font-size: 0.85rem; color: var(--content-muted);
}

.dark .news-pager-btn { background: #1e293b; border-color: #334155; }

/* ── Responsive ── */
@media (max-width: 768px) {
    .news-page-header { padding: 4rem 1.25rem 2.5rem; }
    .news-page-body { padding: 0 1rem 3rem; }
    .news-category-bar { margin: 0 -1rem; padding: 0 1rem; }
    .news-hero-card-body { padding: 1.5rem; }
    .news-masonry-grid { gap: 1rem; }
    .news-item-body { padding: 1rem; }
}

@media (max-width: 480px) {
    .news-page-title { font-size: 1.75rem; }
    .news-page-subtitle { font-size: 0.9rem; }
    .news-hero-card-image { height: 200px; }
    .news-item-thumb { height: 170px; }
}


/* ============================================
   NEWS DETAIL PAGE
   ============================================ */
/* Reading Progress */
.news-progress-container {
    position: fixed;
    top: 72px;
    left: 0;
    width: 100%;
    height: 4px;
    background: transparent;
    z-index: 1000;
}
.news-progress-bar {
    height: 100%;
    background: var(--brand-primary-500);
    width: 0%;
    transition: width 0.1s ease-out;
}

/* Detail Header */
.news-detail-header {
    position: relative;
    padding: 5rem 1.5rem 8rem;
    overflow: visible;
    background: var(--surface-muted);
}
.dark .news-detail-header {
    background: #1e293b;
}

.news-detail-header-bg {
    position: absolute;
    inset: 0;
    background: var(--gradient-hero);
    opacity: 0.05;
    z-index: 0;
}
.dark .news-detail-header-bg {
    opacity: 0.15;
}

.news-detail-header-content {
    position: relative;
    z-index: 10;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.news-detail-title {
    font-size: clamp(2rem, 4.5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.25;
    color: var(--content-strong);
    margin: 1.25rem 0 2rem;
    letter-spacing: -0.02em;
}

.news-detail-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    font-size: 0.95rem;
    color: var(--content-muted);
    margin-bottom: 2.5rem;
}

.news-meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
}
.news-meta-item i {
    color: var(--brand-primary-500);
}

.news-detail-hero-image {
    position: relative;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    margin: 0 auto -6rem; /* overlaps into body */
    aspect-ratio: 16/9;
    max-width: 1000px;
    z-index: 15;
    background: var(--surface);
}
@media (max-width: 768px) {
    .news-detail-hero-image {
        margin: 0 auto -4rem;
        border-radius: 1rem;
    }
}
.news-detail-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Body & Layout */
.news-detail-body {
    max-width: 1100px;
    margin: 8rem auto 4rem; /* 8rem top margin to clear hero overlap */
    padding: 0 1.5rem;
    position: relative;
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 3rem;
    align-items: start;
}

@media (max-width: 1024px) {
    .news-detail-body {
        grid-template-columns: 1fr;
        margin-top: 6rem;
    }
}

/* Social Share Sticky */
.news-detail-share {
    position: relative;
}
.news-share-sticky {
    position: sticky;
    top: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    z-index: 20;
}
@media (max-width: 1024px) {
    .news-share-sticky {
        position: relative;
        top: 0;
        flex-direction: row;
        justify-content: center;
        margin-bottom: 2rem;
        flex-wrap: wrap;
    }
}

.news-share-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--content-muted);
    letter-spacing: 0.05em;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    margin-bottom: 0.5rem;
}
@media (max-width: 1024px) {
    .news-share-label {
        writing-mode: horizontal-tb;
        transform: none;
        margin-bottom: 0;
        margin-right: 0.5rem;
    }
}

.news-share-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--surface);
    color: var(--content-muted);
    border: 1px solid var(--border);
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
}

.news-share-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}
.news-share-btn.fb:hover { color: #fff; background: #1877F2; border-color: #1877F2; }
.news-share-btn.tw:hover { color: #fff; background: #1DA1F2; border-color: #1DA1F2; }
.news-share-btn.cp:hover { color: #fff; background: var(--content-strong); border-color: var(--content-strong); }

/* Typography Prose Premium */
.news-detail-content {
    background: var(--surface);
    border-radius: 2rem;
    padding: 5rem 6rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.03);
    border: 1px solid var(--border);
    position: relative;
    z-index: 20;
    max-width: 100%;
    overflow-x: hidden;
}
@media (max-width: 768px) {
    .news-detail-content {
        padding: 2.5rem 1.5rem;
        border-radius: 1.25rem;
    }
}

.prose-premium {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--content-strong);
    font-family: inherit;
}

.prose-premium p {
    margin-bottom: 1.75rem;
}

.prose-premium h2, .prose-premium h3, .prose-premium h4, .prose-premium h5, .prose-premium h6 {
    color: var(--content-strong);
    font-weight: 700;
    line-height: 1.3;
    margin: 2.5rem 0 1.25rem;
}

.prose-premium h2 { font-size: 1.85rem; font-weight: 800; }
.prose-premium h3 { font-size: 1.5rem; }
.prose-premium h4 { font-size: 1.25rem; }

.prose-premium a {
    color: var(--brand-primary-500);
    text-decoration: none;
    border-bottom: 1px solid rgba(220, 38, 38, 0.3);
    transition: all 0.2s;
    font-weight: 500;
}
.prose-premium a:hover {
    border-bottom-color: var(--brand-primary-500);
    border-bottom-width: 2px;
}

.prose-premium img {
    max-width: 100%;
    height: auto;
    border-radius: 1rem;
    margin: 2.5rem auto;
    display: block;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}
.prose-premium img[class*="wp-image"] {
    width: auto;
}

.prose-premium figure {
    margin: 2.5rem 0;
    text-align: center;
}
.prose-premium figcaption {
    font-size: 0.9rem;
    color: var(--content-muted);
    margin-top: 1rem;
    font-style: italic;
}

.prose-premium blockquote {
    margin: 2.5rem 0;
    padding: 1.5rem 2.5rem;
    background: rgba(220, 38, 38, 0.04);
    border-left: 4px solid var(--brand-primary-500);
    border-radius: 0 1rem 1rem 0;
    font-size: 1.25rem;
    font-style: italic;
    color: var(--brand-primary-700);
    line-height: 1.6;
}
.dark .prose-premium blockquote {
    background: rgba(220, 38, 38, 0.1);
    color: var(--brand-primary-500);
}

.prose-premium ul, .prose-premium ol {
    margin-bottom: 2rem;
    padding-left: 1.5rem;
}
.prose-premium li {
    margin-bottom: 0.75rem;
}
.prose-premium li::marker {
    color: var(--brand-primary-500);
    font-weight: bold;
}

/* Content specific fixes for wordpress */
.prose-premium .aligncenter { text-align: center; margin: 0 auto; clear: both; display: block; }
.prose-premium .alignright { float: right; margin: 0 0 1rem 1rem; }
.prose-premium .alignleft { float: left; margin: 0 1rem 1rem 0; }
.prose-premium .jeg_share_button,
.prose-premium .share-secondary,
.prose-premium .jeg_sharelist {
    display: none !important;
}

/* First paragraph dropcap */
.prose-premium > p:first-of-type::first-letter,
.prose-premium .content-inner > p:first-of-type::first-letter {
    font-size: 4rem;
    font-weight: 900;
    float: left;
    line-height: 0.85;
    margin: 0.1em 0.15em 0 0;
    color: var(--brand-primary-500);
}

/* Related section */
.news-detail-related {
    background: var(--surface-muted);
    padding: 5rem 1.5rem;
    border-top: 1px solid var(--border);
}
.dark .news-detail-related { background: #1e293b; }

.news-detail-related-inner {
    max-width: 1280px;
    margin: 0 auto;
}
