/* ============================================================
   FINANCIAL EDITORIAL PORTAL — DESIGN SYSTEM
   Editorial / high-density / trustworthy / data-driven
   Namespaced tokens (--ep-*) so DB-injected :root vars never clash.
   ============================================================ */

:root {
    /* Backgrounds */
    --ep-bg-page: #FFFFFF;
    --ep-bg-soft: #F5F5F5;
    --ep-bg-dark: #151515;
    --ep-bg-footer: #0D0D0D;

    /* Text */
    --ep-text: #111111;
    --ep-text-secondary: #5F6368;
    --ep-text-muted: #8A8A8A;
    --ep-text-inverse: #FFFFFF;

    /* Brand */
    --ep-brand: #00D9B2;
    --ep-brand-dark: #00A98D;
    --ep-accent-blue: #1677FF;
    --ep-warning: #F5A623;
    --ep-up: #0A8F5B;
    --ep-down: #D0342C;

    /* Borders */
    --ep-border-light: #E3E3E3;
    --ep-border-medium: #BDBDBD;
    --ep-border-dark: #333333;

    /* Typography */
    --ep-font-head: Georgia, "Times New Roman", serif;
    --ep-font-body: Arial, Helvetica, sans-serif;

    /* Layout */
    --ep-max: 1180px;
    --ep-content: 1040px;
    --ep-pad: 24px;
    --ep-col-gap: 18px;
    --ep-row-gap: 24px;
    --ep-section-gap: 48px;
    --ep-card-gap: 16px;
}

/* ============================================================
   RESET & BASE
   ============================================================ */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
    background: var(--ep-bg-page);
    color: var(--ep-text);
    font-family: var(--ep-font-body);
    font-size: 14px;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
}

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

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

h1, h2, h3, h4, h5, h6 {
    margin: 0;
    font-family: var(--ep-font-head);
    font-weight: 700;
    color: var(--ep-text);
}

p { margin: 0; }

ul, ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
}

:focus-visible {
    outline: 2px solid var(--ep-accent-blue);
    outline-offset: 2px;
}

/* ============================================================
   LAYOUT CONTAINER
   ============================================================ */

.ep-container {
    width: 100%;
    max-width: var(--ep-max);
    margin: 0 auto;
    padding-left: var(--ep-pad);
    padding-right: var(--ep-pad);
}

main {
    display: block;
}

/* ============================================================
   MARKET TICKER
   ============================================================ */

.ep-ticker {
    height: 24px;
    background: var(--ep-brand);
    overflow: hidden;
}

.ep-ticker-inner {
    display: flex;
    align-items: center;
    height: 24px;
    max-width: var(--ep-max);
    margin: 0 auto;
    padding: 0 var(--ep-pad);
}

.ep-ticker-label {
    flex: 0 0 auto;
    padding-right: 14px;
    margin-right: 4px;
    border-right: 1px solid rgba(0, 0, 0, 0.18);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    color: var(--ep-text);
    white-space: nowrap;
}

.ep-ticker-viewport {
    flex: 1 1 auto;
    overflow: hidden;
    white-space: nowrap;
}

.ep-ticker-track {
    display: inline-flex;
    align-items: center;
    animation: ep-ticker-scroll 42s linear infinite;
}

.ep-ticker-inner:hover .ep-ticker-track {
    animation-play-state: paused;
}

.ep-ticker-item {
    display: inline-flex;
    align-items: baseline;
    gap: 6px;
    padding: 0 18px;
    font-size: 11px;
    font-weight: 600;
    color: var(--ep-text);
    border-right: 1px solid rgba(0, 0, 0, 0.12);
}

.ep-ticker-sym { font-weight: 700; }
.ep-ticker-val { color: rgba(0, 0, 0, 0.75); }
.ep-ticker-chg.up { color: #05603A; }
.ep-ticker-chg.down { color: #8B1A12; }

@keyframes ep-ticker-scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
    .ep-ticker-track { animation: none; }
}

/* ============================================================
   HEADER — MAIN BAR
   ============================================================ */

.ep-header {
    position: sticky;
    top: 0;
    z-index: 200;
    background: var(--ep-bg-footer);
}

.ep-header-main {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    height: 64px;
    gap: 16px;
}

.ep-header-left {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-self: start;
}

.ep-header-right {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-self: end;
}

.ep-hamburger {
    display: none;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    padding: 0;
    background: transparent;
    border: 0;
    color: #FFFFFF;
    font-size: 22px;
}

.ep-logo {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    justify-self: center;
    font-family: var(--ep-font-head);
    font-size: 23px;
    font-weight: 700;
    letter-spacing: -0.3px;
    color: #FFFFFF;
}

.ep-logo .site-brand-logo { height: 38px; width: auto; }
.ep-logo i { color: var(--ep-brand); font-size: 26px; }
.ep-logo em { color: var(--ep-brand); font-style: normal; }

.ep-header-search {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 17px;
    transition: color 180ms ease;
}

.ep-header-search:hover { color: var(--ep-brand); }

.ep-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    height: 38px;
    padding: 0 16px;
    border-radius: 2px;
    border: 0;
    font-family: var(--ep-font-body);
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
    transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.ep-btn-primary {
    background: var(--ep-brand);
    color: var(--ep-text);
}
.ep-btn-primary:hover { background: var(--ep-brand-dark); }

.ep-btn-ghost {
    background: transparent;
    color: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(255, 255, 255, 0.28);
}
.ep-btn-ghost:hover { color: #FFFFFF; border-color: rgba(255, 255, 255, 0.6); }

.ep-header-auth-form { margin: 0; }

/* ============================================================
   HEADER — PRIMARY NAV
   ============================================================ */

.ep-nav-primary {
    background: var(--ep-bg-footer);
    border-top: 1px solid #262626;
}

.ep-nav-primary .ep-container {
    display: flex;
    justify-content: center;
}

.ep-nav-primary-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.ep-nav-primary-list > li > a {
    display: block;
    padding: 11px 13px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
    transition: color 160ms ease;
}

.ep-nav-primary-list > li > a:hover,
.ep-nav-primary-list > li > a.active {
    color: var(--ep-brand);
}

/* ============================================================
   HEADER — SECONDARY NAV
   ============================================================ */

.ep-nav-secondary {
    background: var(--ep-bg-page);
    border-bottom: 1px solid var(--ep-border-light);
}

.ep-nav-secondary-list {
    display: flex;
    overflow-x: auto;
    scrollbar-width: none;
}
.ep-nav-secondary-list::-webkit-scrollbar { display: none; }

.ep-nav-secondary-list > li > a {
    display: block;
    padding: 9px 14px;
    color: var(--ep-text-secondary);
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
    border-bottom: 2px solid transparent;
    transition: color 160ms ease, border-color 160ms ease;
}

.ep-nav-secondary-list > li:first-child > a { padding-left: 0; }

.ep-nav-secondary-list > li > a:hover,
.ep-nav-secondary-list > li > a.active {
    color: var(--ep-text);
    border-bottom-color: var(--ep-brand);
}

/* ============================================================
   ADVERTISING SLOTS
   ============================================================ */

.ep-ad {
    background: var(--ep-bg-page);
}

.ep-ad-leaderboard { min-height: 90px; margin: 20px 0; }
.ep-ad-rectangle { min-height: 250px; }

/* ============================================================
   SECTION HEADER
   ============================================================ */

.ep-section {
    margin-top: var(--ep-section-gap);
}
.ep-section:first-of-type { margin-top: 28px; }

.ep-section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    border-top: 2px solid var(--ep-border-dark);
    padding-top: 10px;
    margin-bottom: 16px;
}

.ep-section-head h2 {
    font-size: 22px;
    line-height: 1.2;
    letter-spacing: -0.2px;
}

.ep-view-all {
    flex: 0 0 auto;
    font-family: var(--ep-font-body);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    color: var(--ep-text-secondary);
    transition: color 160ms ease;
}
.ep-view-all:hover { color: var(--ep-brand-dark); }
.ep-view-all i { font-size: 12px; }

/* ============================================================
   CATEGORY BADGE / KICKER
   ============================================================ */

.ep-kicker {
    display: inline-block;
    font-family: var(--ep-font-body);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.7px;
    color: var(--ep-brand-dark);
    transition: color 160ms ease;
}
.ep-kicker:hover { color: var(--ep-brand); }

.ep-badge-pro {
    display: inline-block;
    padding: 2px 7px;
    border: 1px solid var(--ep-brand-dark);
    border-radius: 2px;
    font-family: var(--ep-font-body);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--ep-brand-dark);
}

.ep-meta {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    color: var(--ep-text-muted);
}
.ep-meta i { font-size: 12px; }
.ep-meta + .ep-meta::before {
    content: "\2022";
    margin-right: 5px;
    color: var(--ep-border-medium);
}

/* ============================================================
   ARTICLE CARD — image top
   ============================================================ */

.ep-card {
    display: flex;
    flex-direction: column;
    background: transparent;
}

.ep-card-media {
    display: block;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    margin-bottom: 10px;
    background: var(--ep-bg-soft);
}

.ep-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 180ms ease;
}
.ep-card:hover .ep-card-media img { transform: scale(1.03); }

.ep-card-body { display: flex; flex-direction: column; gap: 6px; }

.ep-card-title {
    font-size: 15px;
    line-height: 1.3;
    font-weight: 700;
}
.ep-card-title a { transition: color 160ms ease; }
.ep-card:hover .ep-card-title a { color: var(--ep-brand-dark); }

.ep-card-summary {
    font-size: 13px;
    line-height: 1.5;
    color: var(--ep-text-secondary);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.ep-card-footer {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 2px;
}

/* Larger card title variant */
.ep-card-lg .ep-card-title { font-size: 20px; line-height: 1.25; }

/* ============================================================
   COMPACT ARTICLE — thumbnail + text
   ============================================================ */

.ep-compact {
    display: grid;
    grid-template-columns: 72px 1fr;
    gap: 4px 12px;
    align-items: start;
    padding: 12px 0;
    border-bottom: 1px solid var(--ep-border-light);
}
.ep-compact:last-child { border-bottom: 0; }

.ep-compact-media {
    grid-row: span 2;
    width: 72px;
    height: 54px;
    overflow: hidden;
    background: var(--ep-bg-soft);
}
.ep-compact-media img { width: 100%; height: 100%; object-fit: cover; }

.ep-compact-title {
    font-size: 14px;
    line-height: 1.3;
    font-weight: 700;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 160ms ease;
}
.ep-compact:hover .ep-compact-title { color: var(--ep-brand-dark); }

.ep-compact-meta { font-size: 11px; color: var(--ep-text-muted); }

/* Text-only compact (no thumb) */
.ep-compact-text {
    display: block;
    padding: 12px 0;
    border-bottom: 1px solid var(--ep-border-light);
}
.ep-compact-text:last-child { border-bottom: 0; }

/* ============================================================
   RANKED HEADLINE LIST
   ============================================================ */

.ep-ranked {
    display: grid;
    grid-template-columns: 26px 1fr;
    gap: 12px;
    align-items: start;
    padding: 12px 0;
    border-bottom: 1px solid var(--ep-border-light);
}
.ep-ranked:last-child { border-bottom: 0; }

.ep-ranked-num {
    font-family: var(--ep-font-head);
    font-size: 18px;
    font-weight: 700;
    line-height: 1.1;
    color: var(--ep-brand);
}

.ep-ranked-title {
    font-size: 14px;
    line-height: 1.3;
    font-weight: 700;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 160ms ease;
}
.ep-ranked:hover .ep-ranked-title { color: var(--ep-brand-dark); }
.ep-ranked-meta { margin-top: 4px; font-size: 11px; color: var(--ep-text-muted); }

/* ============================================================
   GRIDS
   ============================================================ */

.ep-grid { display: grid; gap: var(--ep-col-gap); }
.ep-grid-2 { grid-template-columns: repeat(2, 1fr); }
.ep-grid-3 { grid-template-columns: repeat(3, 1fr); }
.ep-grid-4 { grid-template-columns: repeat(4, 1fr); }

/* ============================================================
   TOP NEWS HERO (3-column editorial)
   ============================================================ */

.ep-hero {
    display: grid;
    grid-template-columns: 3fr 6fr 3fr;
    gap: 24px;
    padding: 24px 0;
    border-top: 2px solid var(--ep-border-dark);
}

.ep-hero-col { min-width: 0; }
.ep-hero-col--divider {
    padding-left: 24px;
    border-left: 1px solid var(--ep-border-light);
}

.ep-hero-eyebrow {
    font-family: var(--ep-font-body);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.7px;
    color: var(--ep-text-muted);
    padding-bottom: 8px;
    margin-bottom: 4px;
    border-bottom: 1px solid var(--ep-border-light);
}

/* Main story (center) */
.ep-lead-media {
    display: block;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    margin-bottom: 14px;
    background: var(--ep-bg-soft);
}
.ep-lead-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 200ms ease; }
.ep-lead-media:hover img { transform: scale(1.02); }

.ep-lead-title {
    font-size: 28px;
    line-height: 1.15;
    letter-spacing: -0.4px;
    margin: 8px 0 10px;
}
.ep-lead-title a { transition: color 160ms ease; }
.ep-lead-title a:hover { color: var(--ep-brand-dark); }

.ep-lead-summary {
    font-size: 15px;
    line-height: 1.55;
    color: var(--ep-text-secondary);
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.ep-byline {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: var(--ep-text-muted);
}
.ep-byline strong { color: var(--ep-text); font-weight: 700; }
.ep-avatar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--ep-bg-dark);
    color: #FFFFFF;
    font-size: 12px;
    font-weight: 700;
}

/* ============================================================
   FEATURED MOSAIC (Investing / Technology)
   ============================================================ */

.ep-mosaic {
    display: grid;
    grid-template-columns: 8fr 4fr;
    gap: var(--ep-col-gap);
}

.ep-mosaic-secondary {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-left: 20px;
    border-left: 1px solid var(--ep-border-light);
}

.ep-mosaic-bottom {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--ep-col-gap);
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--ep-border-light);
}

/* Beside-image feature */
.ep-feature-split {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 18px;
    align-items: start;
}
.ep-feature-split .ep-card-media { margin-bottom: 0; }
.ep-feature-split .ep-lead-title { font-size: 22px; margin-top: 0; }

/* ============================================================
   DARK SECTIONS (data strip / media)
   ============================================================ */

.ep-dark {
    background: var(--ep-bg-dark);
    color: var(--ep-text-inverse);
    padding: 40px 0;
    margin-top: var(--ep-section-gap);
}

.ep-dark .ep-section-head {
    border-top-color: #3A3A3A;
}
.ep-dark .ep-section-head h2 { color: #FFFFFF; }
.ep-dark .ep-view-all { color: rgba(255, 255, 255, 0.7); }
.ep-dark .ep-view-all:hover { color: var(--ep-brand); }
.ep-dark .ep-card-title,
.ep-dark .ep-compact-title { color: rgba(255, 255, 255, 0.94); }
.ep-dark .ep-card:hover .ep-card-title a { color: var(--ep-brand); }
.ep-dark .ep-card-summary { color: rgba(255, 255, 255, 0.62); }
.ep-dark .ep-kicker { color: var(--ep-brand); }

/* Data strip */
.ep-market-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: #2A2A2A;
    border: 1px solid #2A2A2A;
}
.ep-market-cell {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 18px 16px;
    background: var(--ep-bg-dark);
}
.ep-market-sym { font-size: 12px; font-weight: 700; color: rgba(255, 255, 255, 0.7); text-transform: uppercase; letter-spacing: 0.5px; }
.ep-market-price { font-size: 22px; font-weight: 700; color: #FFFFFF; letter-spacing: -0.3px; }
.ep-market-chg { font-size: 13px; font-weight: 700; }
.ep-market-chg.up { color: var(--ep-brand); }
.ep-market-chg.down { color: #FF6B60; }
.ep-market-note {
    margin-top: 14px;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.45);
}

/* ============================================================
   TOPIC COLUMNS (3-column)
   ============================================================ */

.ep-topics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.ep-topic-col { min-width: 0; }
.ep-topic-col + .ep-topic-col {
    padding-left: 28px;
    border-left: 1px solid var(--ep-border-light);
}

.ep-topic-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 2px solid var(--ep-border-dark);
    padding-bottom: 8px;
    margin-bottom: 14px;
}
.ep-topic-head h3 { font-size: 18px; }

.ep-topic-lead-media {
    display: block;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    margin-bottom: 10px;
    background: var(--ep-bg-soft);
}
.ep-topic-lead-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 180ms ease; }
.ep-topic-lead-media:hover img { transform: scale(1.03); }
.ep-topic-lead-title { font-size: 17px; line-height: 1.28; margin-bottom: 12px; }
.ep-topic-lead-title a:hover { color: var(--ep-brand-dark); }

/* ============================================================
   RECENT ARTICLES + LOAD MORE
   ============================================================ */

.ep-load-more-wrap {
    display: flex;
    justify-content: center;
    margin-top: 28px;
}
.ep-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    height: 42px;
    padding: 0 26px;
    background: transparent;
    border: 1px solid var(--ep-text);
    border-radius: 2px;
    color: var(--ep-text);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: background 160ms ease, color 160ms ease;
}
.ep-btn-outline:hover { background: var(--ep-text); color: #FFFFFF; }

/* ============================================================
   FOOTER
   ============================================================ */

.site-footer {
    margin-top: var(--ep-section-gap);
    background: var(--ep-bg-footer);
    color: var(--ep-text-inverse);
}

.ep-footer-top { padding: 48px 0 36px; }

.ep-footer-grid {
    display: grid;
    grid-template-columns: 1.4fr repeat(4, 1fr);
    gap: 32px;
}

.ep-footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--ep-font-head);
    font-size: 22px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 12px;
}
.ep-footer-brand i { color: var(--ep-brand); }
.ep-footer-brand em { color: var(--ep-brand); font-style: normal; }
.ep-footer-tagline {
    font-size: 13px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.6);
    max-width: 34ch;
}

.ep-footer-col-title {
    font-family: var(--ep-font-body);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.9px;
    color: #FFFFFF;
    margin-bottom: 14px;
}
.ep-footer-col li { margin-bottom: 9px; }
.ep-footer-col a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    transition: color 160ms ease;
}
.ep-footer-col a:hover { color: var(--ep-brand); }

.ep-footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 14px;
    padding: 20px 0;
    border-top: 1px solid var(--ep-border-dark);
}
.ep-footer-bottom-links {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}
.ep-footer-bottom-links a {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.55);
    transition: color 160ms ease;
}
.ep-footer-bottom-links a:hover { color: #FFFFFF; }
.ep-footer-copy { font-size: 12px; color: rgba(255, 255, 255, 0.45); }
.ep-footer-social { display: flex; gap: 14px; }
.ep-footer-social a { color: rgba(255, 255, 255, 0.55); font-size: 16px; transition: color 160ms ease; }
.ep-footer-social a:hover { color: var(--ep-brand); }

/* ============================================================
   NOTICES
   ============================================================ */

.notice {
    display: flex;
    align-items: center;
    gap: 10px;
    max-width: var(--ep-max);
    margin: 20px auto 0;
    padding: 12px 16px;
    background: #E9FBF5;
    border: 1px solid #A9E9D7;
    border-left: 3px solid var(--ep-brand-dark);
    color: #0A5C4A;
    font-size: 13px;
}
.notice.error {
    background: #FDECEA;
    border-color: #F5B7B1;
    border-left-color: var(--ep-down);
    color: #922B21;
    align-items: flex-start;
}
.notice i { font-size: 16px; }

/* ============================================================
   BREADCRUMB
   ============================================================ */

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 16px 0;
    font-size: 12px;
    color: var(--ep-text-muted);
}
.breadcrumb a { color: var(--ep-text-secondary); transition: color 160ms ease; }
.breadcrumb a:hover { color: var(--ep-brand-dark); }
.breadcrumb-separator { color: var(--ep-border-medium); }

/* ============================================================
   ARTICLE PAGE
   ============================================================ */

.article-page { padding-bottom: 40px; }
.article-page-container {
    max-width: 760px;
    margin: 0 auto;
    padding: 0 var(--ep-pad);
}

.article-header { margin-bottom: 28px; }
.article-header-eyebrow {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--ep-brand-dark);
    margin-bottom: 12px;
}
.article-header h1 {
    font-size: 38px;
    line-height: 1.12;
    letter-spacing: -0.6px;
    margin-bottom: 16px;
}
.article-summary {
    font-size: 18px;
    line-height: 1.5;
    color: var(--ep-text-secondary);
    margin-bottom: 22px;
}

.article-byline {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    padding: 16px 0;
    border-top: 1px solid var(--ep-border-light);
    border-bottom: 1px solid var(--ep-border-light);
}
.byline-item { display: flex; align-items: center; gap: 10px; }
.byline-item i { font-size: 20px; color: var(--ep-brand-dark); }
.byline-item strong { display: block; font-family: var(--ep-font-body); font-size: 13px; }
.byline-item small { color: var(--ep-text-muted); font-size: 11px; text-transform: uppercase; letter-spacing: 0.4px; }

/* Prose */
.prose {
    font-size: 17px;
    line-height: 1.7;
    color: #24282B;
}
.prose > * + * { margin-top: 1.1em; }
.prose h2 { font-size: 26px; line-height: 1.25; margin-top: 1.6em; }
.prose h3 { font-size: 21px; line-height: 1.3; margin-top: 1.4em; }
.prose p { margin: 0; }
.prose a { color: var(--ep-brand-dark); text-decoration: underline; text-underline-offset: 2px; }
.prose a:hover { color: var(--ep-brand); }
.prose ul, .prose ol { padding-left: 1.4em; }
.prose ul { list-style: disc; }
.prose ol { list-style: decimal; }
.prose li { margin-top: 0.5em; }
.prose img { margin: 1.6em 0; }
.prose blockquote {
    margin: 1.6em 0;
    padding: 6px 0 6px 20px;
    border-left: 3px solid var(--ep-brand);
    font-family: var(--ep-font-head);
    font-size: 20px;
    font-style: italic;
    color: var(--ep-text);
}
.prose code {
    font-family: "SFMono-Regular", Consolas, monospace;
    font-size: 0.9em;
    background: var(--ep-bg-soft);
    padding: 2px 5px;
    border-radius: 2px;
}

/* TOC */
.toc {
    margin: 24px 0;
    padding: 18px 20px;
    background: var(--ep-bg-soft);
    border: 1px solid var(--ep-border-light);
}
.toc h3 { font-family: var(--ep-font-body); font-size: 12px; text-transform: uppercase; letter-spacing: 0.7px; margin-bottom: 10px; }
.toc a { display: block; padding: 4px 0; font-size: 14px; color: var(--ep-text-secondary); }
.toc a:hover { color: var(--ep-brand-dark); }

/* FAQ */
.faq { margin-top: 32px; }
.faq-item {
    padding: 18px 0;
    border-bottom: 1px solid var(--ep-border-light);
}
.faq-item h3 { font-size: 18px; margin-bottom: 8px; }
.faq-content { font-size: 15px; line-height: 1.6; color: var(--ep-text-secondary); }

/* Financial disclaimer */
.financial-disclaimer {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    margin: 32px 0;
    padding: 18px 20px;
    background: var(--ep-bg-soft);
    border: 1px solid var(--ep-border-light);
    border-left: 3px solid var(--ep-warning);
    font-size: 13px;
    line-height: 1.6;
    color: var(--ep-text-secondary);
}
.financial-disclaimer i { font-size: 20px; color: var(--ep-warning); }

/* Trust / share links */
.trust-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--ep-brand-dark);
    font-size: 13px;
    font-weight: 700;
}
.trust-link:hover { color: var(--ep-brand); }

/* Article sidebar */
.sidebar { display: flex; flex-direction: column; gap: 24px; }
.sidebar-section {
    padding: 18px 20px;
    background: var(--ep-bg-soft);
    border: 1px solid var(--ep-border-light);
}
.sidebar-section h3 { font-size: 14px; margin-bottom: 12px; display: flex; align-items: center; gap: 8px; }
.sidebar-section h3 i { color: var(--ep-brand-dark); }
.sidebar-section a { display: block; padding: 6px 0; font-size: 13px; color: var(--ep-text-secondary); border-bottom: 1px solid var(--ep-border-light); }
.sidebar-section a:last-child { border-bottom: 0; }
.sidebar-section a:hover { color: var(--ep-brand-dark); }

/* ============================================================
   ARTICLE CARD (partial) & ARTICLE ROW (partial)
   ============================================================ */

.article-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--ep-col-gap) var(--ep-col-gap);
}

.article-card { display: flex; flex-direction: column; }
.article-card-image {
    display: block;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    margin-bottom: 10px;
    background: var(--ep-bg-soft);
}
.article-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 180ms ease; }
.article-card:hover .article-card-image img { transform: scale(1.03); }
.article-card-body { display: flex; flex-direction: column; gap: 6px; }
.article-card-category {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.7px;
    color: var(--ep-brand-dark);
}
.article-card-title { font-size: 15px; line-height: 1.3; }
.article-card-title a:hover { color: var(--ep-brand-dark); }
.article-card-meta { font-size: 11px; color: var(--ep-text-muted); }
.article-card-meta i { font-size: 12px; }

.article-list { display: flex; flex-direction: column; }
.article-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    padding: 18px 0;
    border-bottom: 1px solid var(--ep-border-light);
}
.article-row-content { flex: 1; min-width: 0; }
.article-row-category {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.7px;
    color: var(--ep-brand-dark);
    margin-bottom: 6px;
}
.article-row-title { font-size: 18px; line-height: 1.3; margin-bottom: 6px; }
.article-row-title a:hover { color: var(--ep-brand-dark); }
.article-row-summary {
    font-size: 14px;
    line-height: 1.5;
    color: var(--ep-text-secondary);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.article-row-meta { flex: 0 0 auto; font-size: 12px; color: var(--ep-text-muted); white-space: nowrap; }

/* ============================================================
   CATEGORY PAGE
   ============================================================ */

.category-hero {
    padding: 8px 0 28px;
    border-bottom: 1px solid var(--ep-border-light);
    margin-bottom: 28px;
}
.eyebrow {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--ep-brand-dark);
    margin-bottom: 10px;
}
.category-hero h1 { font-size: 38px; line-height: 1.1; letter-spacing: -0.5px; margin-bottom: 12px; }
.category-hero > p { font-size: 17px; line-height: 1.55; color: var(--ep-text-secondary); max-width: 70ch; margin-bottom: 20px; }

.hero-search-form {
    display: flex;
    align-items: center;
    gap: 8px;
    max-width: 520px;
    padding: 6px 6px 6px 14px;
    background: var(--ep-bg-page);
    border: 1px solid var(--ep-border-medium);
    border-radius: 2px;
}
.hero-search-form i { color: var(--ep-text-muted); }
.hero-search-form input {
    flex: 1;
    border: 0;
    outline: none;
    font-family: var(--ep-font-body);
    font-size: 14px;
    background: transparent;
    color: var(--ep-text);
}
.hero-search-form button {
    height: 36px;
    padding: 0 18px;
    background: var(--ep-brand);
    border: 0;
    border-radius: 2px;
    font-size: 13px;
    font-weight: 700;
    color: var(--ep-text);
    transition: background 160ms ease;
}
.hero-search-form button:hover { background: var(--ep-brand-dark); }

.category-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 40px;
    align-items: start;
}
.category-intro { font-size: 16px; line-height: 1.7; color: #24282B; }
.category-intro > * + * { margin-top: 1em; }

.sidebar-card {
    padding: 20px;
    background: var(--ep-bg-soft);
    border: 1px solid var(--ep-border-light);
}
.sidebar-card h3 { font-size: 15px; margin-bottom: 14px; }
.sidebar-card span {
    display: inline-block;
    margin: 0 6px 6px 0;
    padding: 4px 10px;
    background: var(--ep-bg-page);
    border: 1px solid var(--ep-border-light);
    font-size: 12px;
    color: var(--ep-text-secondary);
}

.home-section { margin-top: 40px; }
.section-heading { font-size: 22px; margin-bottom: 18px; border-top: 2px solid var(--ep-border-dark); padding-top: 10px; }
.pagination-wrap { margin-top: 32px; }
.text-muted { color: var(--ep-text-muted); }
.pagination-wrap nav { display: flex; justify-content: center; }
.pagination-wrap svg,
.pagination svg {
    width: 18px;
    height: 18px;
}

/* ============================================================
   SEARCH PAGE
   ============================================================ */

.section { padding: 24px 0 40px; }
.search-page { background: var(--ep-bg-page); }
.search-page-container { max-width: var(--ep-content); }
.section-title {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 20px;
}
.section-title h1 { font-size: 32px; letter-spacing: -0.4px; }
.section-title span { font-size: 13px; color: var(--ep-text-muted); }

.search-box {
    display: flex;
    gap: 8px;
    max-width: 560px;
    margin-bottom: 28px;
}
.search-box input {
    flex: 1;
    height: 44px;
    padding: 0 14px;
    border: 1px solid var(--ep-border-medium);
    border-radius: 2px;
    font-family: var(--ep-font-body);
    font-size: 14px;
    outline: none;
}
.search-box input:focus { border-color: var(--ep-brand-dark); }
.search-box button {
    height: 44px;
    padding: 0 22px;
    background: var(--ep-brand);
    border: 0;
    border-radius: 2px;
    font-size: 13px;
    font-weight: 700;
    color: var(--ep-text);
    transition: background 160ms ease;
}
.search-box button:hover { background: var(--ep-brand-dark); }

/* ============================================================
   POLICY PAGES
   ============================================================ */

.policy-page { padding-bottom: 40px; }
.policy-page-container { max-width: var(--ep-content); margin: 0 auto; padding: 0 var(--ep-pad); }
.policy-header { margin-bottom: 32px; }
.policy-layout {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 40px;
    align-items: start;
}
.policy-content { font-size: 16px; line-height: 1.7; color: #24282B; }
.policy-content > * + * { margin-top: 1.1em; }
.policy-content h2 { font-size: 24px; margin-top: 1.5em; }
.policy-content h3 { font-size: 19px; margin-top: 1.3em; }
.policy-content a { color: var(--ep-brand-dark); text-decoration: underline; }
.policy-content ul, .policy-content ol { padding-left: 1.4em; }
.policy-content ul { list-style: disc; }
.policy-content ol { list-style: decimal; }
.policy-sidebar { position: sticky; top: 110px; }

/* ============================================================
   GENERIC BUTTONS (legacy classes kept for internal pages)
   ============================================================ */

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0 18px;
    height: 40px;
    border-radius: 2px;
    background: var(--ep-brand);
    border: 1px solid var(--ep-brand);
    color: var(--ep-text);
    font-size: 13px;
    font-weight: 700;
    transition: background 160ms ease, color 160ms ease;
}
.btn:hover { background: var(--ep-brand-dark); border-color: var(--ep-brand-dark); }
.btn-outline { background: transparent; color: var(--ep-text); border-color: var(--ep-text); }
.btn-outline:hover { background: var(--ep-text); color: #FFFFFF; }
.btn-sm { height: 32px; padding: 0 12px; font-size: 12px; }

/* Laravel pagination */
.pagination {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    list-style: none;
    padding: 0;
}
.pagination .page-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 38px;
    height: 38px;
    padding: 0 10px;
    border: 1px solid var(--ep-border-light);
    color: var(--ep-text);
    font-size: 13px;
}
.pagination .page-item.active .page-link {
    background: var(--ep-brand);
    border-color: var(--ep-brand);
    color: var(--ep-text);
}
.pagination .page-item.disabled .page-link { color: var(--ep-border-medium); }

/* ============================================================
   MEGA MENU (mobile drawer categories — desktop hidden by default)
   ============================================================ */

.ep-drawer { display: none; }

/* ============================================================
   ARTICLE PAGE — 2-column layout (content + sidebar)
   Overrides the narrow single-column container above.
   ============================================================ */

.article-page .article-page-container { max-width: var(--ep-max); }

.ep-article-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 40px;
    align-items: start;
    margin-bottom: var(--ep-section-gap);
}
.ep-article-main { min-width: 0; }
.ep-article-main .prose { max-width: 720px; }

/* TOC uses <strong> + <ul> */
.toc strong {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--ep-font-body);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.7px;
    color: var(--ep-text);
    margin-bottom: 10px;
}
.toc ul { list-style: none; margin: 0; padding: 0; }
.toc li { margin: 0; }
.toc li a { display: block; padding: 4px 0; font-size: 14px; color: var(--ep-text-secondary); }
.toc li a:hover { color: var(--ep-brand-dark); }

/* FAQ uses <details>/<summary> */
.faq > h2 {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 22px;
    margin-bottom: 8px;
    border-top: 2px solid var(--ep-border-dark);
    padding-top: 10px;
}
.faq-item details summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    cursor: pointer;
    list-style: none;
    font-family: var(--ep-font-head);
    font-size: 17px;
    font-weight: 700;
    color: var(--ep-text);
}
.faq-item details summary::-webkit-details-marker { display: none; }
.faq-item details summary i {
    flex-shrink: 0;
    color: var(--ep-brand-dark);
    transition: transform 180ms ease;
}
.faq-item details[open] summary i { transform: rotate(180deg); }
.faq-item .faq-content { margin-top: 10px; }

/* Sidebar sticky within the article layout */
.ep-article-layout .sidebar { position: sticky; top: 110px; }

/* Share buttons */
.ep-share-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
}
.ep-share-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 42px;
    padding: 0;
    border: 1px solid #DDE4E8;
    border-bottom: 1px solid #DDE4E8;
    border-radius: 6px;
    background: #FFFFFF;
    color: var(--ep-text);
    font-size: 16px;
    box-shadow: 0 1px 0 rgba(17, 17, 17, 0.04);
    overflow: hidden;
    transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, color 160ms ease, box-shadow 160ms ease;
}
.sidebar-section .ep-share-btn {
    display: inline-flex;
    padding: 0;
    color: var(--ep-text);
    border-bottom: 1px solid #DDE4E8;
}
.ep-share-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.08;
    transition: opacity 160ms ease;
}
.ep-share-btn i {
    position: relative;
    z-index: 1;
}
.ep-share-btn[aria-label*="Facebook"]::before { background: #1877F2; }
.ep-share-btn[aria-label*="Facebook"]:hover { border-color: #1877F2; background: #1877F2; }
.ep-share-btn[aria-label*="X"]::before { background: #111111; }
.ep-share-btn[aria-label*="X"]:hover { border-color: #111111; background: #111111; }
.ep-share-btn[aria-label*="LinkedIn"]::before { background: #0A66C2; }
.ep-share-btn[aria-label*="LinkedIn"]:hover { border-color: #0A66C2; background: #0A66C2; }
.sidebar-section .ep-share-btn:hover,
.ep-share-btn:hover {
    transform: translateY(-2px);
    color: #FFFFFF;
    box-shadow: 0 8px 18px rgba(17, 17, 17, 0.14);
}
.ep-share-btn:hover::before {
    opacity: 0;
}
.ep-share-btn:active { transform: translateY(0); }
.ep-share-btn:focus-visible {
    border-color: var(--ep-accent-blue);
    outline-offset: 3px;
}

/* ============================================================
   LOGIN / AUTH PAGE
   ============================================================ */

.login-page {
    display: grid;
    place-items: center;
    width: 100%;
    min-height: 520px;
    padding: 72px 24px;
   
}

.login-panel {
    width: 100%;
    max-width: 440px;
    padding: 34px;
    background: var(--ep-bg-page);
    border: 1px solid var(--ep-border-light);
    border-radius: 8px;
    box-shadow: 0 18px 45px rgba(17, 17, 17, 0.09);
}

.login-panel-head {
    display: grid;
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 14px;
    align-items: center;
    margin-bottom: 24px;
}

.login-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 8px;
    background: rgba(0, 217, 178, 0.12);
    color: var(--ep-brand-dark);
    font-size: 22px;
}

.login-panel .section-kicker {
    display: block;
    font-family: var(--ep-font-body);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--ep-brand-dark);
    margin-bottom: 5px;
}

.login-panel h1 {
    font-size: 30px;
    line-height: 1.15;
    letter-spacing: 0;
}

.login-error {
    display: grid;
    grid-template-columns: 18px minmax(0, 1fr);
    gap: 9px;
    align-items: start;
    margin-bottom: 18px;
    padding: 12px 14px;
    border: 1px solid rgba(208, 52, 44, 0.28);
    border-radius: 6px;
    background: rgba(208, 52, 44, 0.07);
    color: #8B1A12;
    font-size: 13px;
    line-height: 1.4;
}

.login-error i {
    margin-top: 1px;
    font-size: 15px;
}

.login-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.login-form > label {
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--ep-text-secondary);
}

.login-form > label > input[type="email"],
.login-form > label > input[type="password"] {
    width: 100%;
    height: 46px;
    padding: 0 14px;
    border: 1px solid var(--ep-border-medium);
    border-radius: 6px;
    background: var(--ep-bg-page);
    font-family: var(--ep-font-body);
    font-size: 15px;
    font-weight: 400;
    text-transform: none;
    letter-spacing: normal;
    color: var(--ep-text);
    transition: border-color 160ms ease, box-shadow 160ms ease;
}

.login-form > label > input[aria-invalid="true"] {
    border-color: var(--ep-down);
}

.login-form > label > input:focus {
    outline: none;
    border-color: var(--ep-brand-dark);
    box-shadow: 0 0 0 3px rgba(0, 217, 178, 0.15);
}

.login-remember {
    flex-direction: row !important;
    align-items: center;
    gap: 8px !important;
    text-transform: none !important;
    letter-spacing: normal !important;
    font-size: 13px !important;
    font-weight: 400 !important;
    color: var(--ep-text-secondary) !important;
    cursor: pointer;
}

.login-remember input[type="checkbox"] {
    width: 16px;
    height: 16px;
    margin: 0;
    accent-color: var(--ep-brand-dark);
    cursor: pointer;
}

.login-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 46px;
    margin-top: 6px;
    padding: 0 20px;
    background: var(--ep-brand);
    border: 0;
    border-radius: 6px;
    color: var(--ep-text);
    font-family: var(--ep-font-body);
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: background 160ms ease, transform 120ms ease, box-shadow 160ms ease;
}
.login-submit:hover {
    background: var(--ep-brand-dark);
    box-shadow: 0 8px 18px rgba(0, 169, 141, 0.22);
}
.login-submit:active { transform: translateY(1px); }
.login-submit i { font-size: 16px; }

/* ============================================================
   ARTICLE IMAGES (featured + inline figures injected at render)
   ============================================================ */

.article-hero-figure {
    margin: 0 0 28px;
    overflow: hidden;
    border-radius: var(--ep-radius-lg);
    background: var(--ep-bg-soft);
}
.article-hero-figure img { display: block; width: 100%; height: auto; }

.prose .article-figure { margin: 1.8em 0; }
.prose .article-figure img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: var(--ep-radius-lg);
    background: var(--ep-bg-soft);
}
.prose .article-figure figcaption {
    margin-top: 8px;
    color: var(--ep-text-muted);
    font-size: 13px;
    line-height: 1.5;
    text-align: center;
}

/* ============================================================
   INLINE IMAGE EDITING (admin only, rendered server-side)
   ============================================================ */

.article-figure-editable {
    position: relative;
    outline: 1px dashed var(--ep-border-medium);
    outline-offset: 4px;
    transition: outline-color 160ms ease;
}
.article-figure-editable:hover { outline-color: var(--ep-brand-dark); }
.article-figure-editable.is-busy { opacity: 0.55; pointer-events: none; }

/* Discreet control bar, floats top-left over the figure */
.article-figure-controls {
    position: absolute;
    top: 8px;
    left: 8px;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    opacity: 0;
    transform: translateY(-4px);
    transition: opacity 160ms ease, transform 160ms ease;
}
.article-figure-editable:hover .article-figure-controls,
.article-figure-editable.is-empty .article-figure-controls {
    opacity: 1;
    transform: translateY(0);
}

.article-figure-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    height: 32px;
    padding: 0 12px;
    background: rgba(13, 13, 13, 0.88);
    color: #FFFFFF;
    border: 0;
    border-radius: var(--ep-radius);
    font-family: var(--ep-font-body);
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: background 160ms ease;
}
.article-figure-btn:hover { background: var(--ep-brand-dark); }
.article-figure-btn.danger { background: rgba(176, 40, 31, 0.9); }
.article-figure-btn.danger:hover { background: var(--ep-down); }
.article-figure-btn i { font-size: 13px; }

/* Empty-slot placeholder */
.article-figure-placeholder {
    display: grid;
    justify-items: center;
    align-content: center;
    gap: 8px;
    min-height: 180px;
    padding: 28px 20px;
    background: var(--ep-bg-soft);
    border: 1px dashed var(--ep-border-medium);
    border-radius: var(--ep-radius-lg);
    text-align: center;
    color: var(--ep-text-secondary);
}
.article-figure-placeholder i { font-size: 30px; color: var(--ep-text-muted); }
.article-figure-placeholder strong { font-family: var(--ep-font-body); font-size: 13px; color: var(--ep-text); }
.article-figure-prompt {
    max-width: 60ch;
    font-size: 12px;
    line-height: 1.5;
    color: var(--ep-text-muted);
}
