/* ================================================================
   PEERS PUBLISHING — Premium Academic Theme
   Elegant · Refined · Professional
   ================================================================ */

/* === GLOBAL === */
html {
    scroll-behavior: smooth;
}

* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* === TYPOGRAPHY — Serif headings, sans body === */
h1, h2, h3, h4, h5, h6,
.wp-block-heading {
    font-family: 'PlayfairDisplay', 'Playfair Display', Georgia, 'Times New Roman', serif !important;
    font-weight: 700;
    letter-spacing: -0.01em;
    line-height: 1.15;
    color: #0F172A;
}

body, p, li, a, span, div {
    font-family: 'DMSans', 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* === HEADER === */
.site-header {
    border-bottom: 1px solid #E5E7EB;
    background: #ffffff;
}

.site-header .wp-block-site-logo img {
    max-height: 80px;
    width: auto;
}

.site-header .wp-block-site-title a {
    font-family: 'PlayfairDisplay', 'Playfair Display', Georgia, serif !important;
    font-weight: 700;
    font-size: 22px;
    color: #1B2A4A !important;
    text-decoration: none !important;
    letter-spacing: 0.02em;
}

.site-header .wp-block-navigation a {
    font-family: 'DMSans', 'DM Sans', sans-serif !important;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: #374151 !important;
    text-decoration: none !important;
    transition: color 0.25s ease;
    padding: 8px 0;
}

.site-header .wp-block-navigation a:hover {
    color: #B8860B !important;
}

/* === HERO SECTIONS === */
.peers-hero {
    background: linear-gradient(165deg, #0F172A 0%, #1B2A4A 60%, #1E3356 100%);
    position: relative;
    overflow: hidden;
}

.peers-hero::before {
    content: '';
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    background: radial-gradient(ellipse at 25% 50%, rgba(184,134,11,0.07) 0%, transparent 65%);
    pointer-events: none;
}

.peers-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(184,134,11,0.3), transparent);
}

/* === SECTION LABELS (replaces emoji headers) === */
.peers-label {
    font-family: 'DMSans', 'DM Sans', sans-serif !important;
    font-size: 12px !important;
    font-weight: 600 !important;
    letter-spacing: 3px !important;
    text-transform: uppercase !important;
    color: #B8860B !important;
    margin-bottom: 16px;
}

/* === GOLD DIVIDER LINE === */
.peers-gold-line::after {
    content: '';
    display: block;
    width: 50px;
    height: 2px;
    background: #B8860B;
    margin-top: 24px;
}

.peers-gold-line-center::after {
    content: '';
    display: block;
    width: 50px;
    height: 2px;
    background: #B8860B;
    margin: 24px auto 0;
}

/* === CARDS — Subtle, refined === */
.peers-card {
    background: #ffffff;
    border: 1px solid #E5E7EB;
    border-radius: 6px;
    padding: 40px 36px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.03);
    transition: box-shadow 0.35s ease, transform 0.35s ease;
}

.peers-card:hover {
    box-shadow: 0 8px 32px rgba(0,0,0,0.06);
    transform: translateY(-3px);
}

/* Card with gold top accent */
.peers-card-accent {
    background: #ffffff;
    border: 1px solid #E5E7EB;
    border-top: 2px solid #B8860B;
    border-radius: 6px;
    padding: 40px 36px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.03);
    transition: box-shadow 0.35s ease, transform 0.35s ease;
}

.peers-card-accent:hover {
    box-shadow: 0 8px 32px rgba(0,0,0,0.06);
    transform: translateY(-3px);
}

/* === PRODUCT CARDS === */
.peers-product-card {
    background: #ffffff;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    padding: 48px 40px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
    transition: all 0.35s ease;
}

.peers-product-card:hover {
    box-shadow: 0 12px 40px rgba(0,0,0,0.07);
    transform: translateY(-4px);
}

/* === FEATURE LISTS — Clean, no emoji === */
.peers-feature-list {
    list-style: none !important;
    padding-left: 0 !important;
}

.peers-feature-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 14px;
    font-size: 15px;
    line-height: 1.7;
    color: #374151;
}

.peers-feature-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    background: #B8860B;
    border-radius: 50%;
}

/* === LICENSE / VERIFICATION BADGE === */
.peers-license-card {
    background: #FAFAF8;
    border: 1px solid #D4AF37;
    border-radius: 8px;
    padding: 40px;
}

/* === BUTTONS — Refined === */
.wp-block-button__link {
    font-family: 'DMSans', 'DM Sans', sans-serif !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    letter-spacing: 0.08em !important;
    text-transform: uppercase !important;
    padding: 15px 36px !important;
    border-radius: 3px !important;
    transition: all 0.3s ease !important;
}

/* Primary button — Navy */
.peers-btn-primary .wp-block-button__link {
    background: #1B2A4A !important;
    color: #ffffff !important;
    border: 1px solid #1B2A4A !important;
}

.peers-btn-primary .wp-block-button__link:hover {
    background: #B8860B !important;
    border-color: #B8860B !important;
}

/* Outline button */
.peers-btn-outline .wp-block-button__link {
    background: transparent !important;
    color: #ffffff !important;
    border: 1px solid rgba(255,255,255,0.35) !important;
}

.peers-btn-outline .wp-block-button__link:hover {
    background: rgba(255,255,255,0.08) !important;
    border-color: #ffffff !important;
}

/* Gold button */
.peers-btn-gold .wp-block-button__link {
    background: #B8860B !important;
    color: #ffffff !important;
    border: 1px solid #B8860B !important;
}

.peers-btn-gold .wp-block-button__link:hover {
    background: #96700A !important;
    border-color: #96700A !important;
}

/* === SEPARATOR / DIVIDER === */
hr.wp-block-separator {
    border-color: #E5E7EB !important;
    opacity: 1;
}

/* === TRUST / STAT ITEMS === */
.peers-trust-item {
    text-align: center;
    padding: 32px 20px;
}

.peers-trust-number {
    font-family: 'PlayfairDisplay', 'Playfair Display', Georgia, serif !important;
    font-size: 36px !important;
    font-weight: 700 !important;
    color: #1B2A4A !important;
    line-height: 1 !important;
}

.peers-trust-label {
    font-size: 12px !important;
    font-weight: 500 !important;
    letter-spacing: 1.5px !important;
    text-transform: uppercase !important;
    color: #6B7280 !important;
    margin-top: 8px;
}

/* === INFO GRID === */
.peers-info-label {
    font-size: 11px !important;
    font-weight: 600 !important;
    letter-spacing: 2px !important;
    text-transform: uppercase !important;
    color: #9CA3AF !important;
    margin-bottom: 4px !important;
}

.peers-info-value {
    font-size: 17px !important;
    font-weight: 600 !important;
    color: #0F172A !important;
}

/* === CALLOUT BOX === */
.peers-callout {
    background: #FAFAF8;
    border-left: 3px solid #B8860B;
    padding: 32px 36px;
    border-radius: 0 6px 6px 0;
}

/* === FOOTER === */
.site-footer {
    border-top: 1px solid rgba(255,255,255,0.06);
}

.site-footer h3,
.site-footer .wp-block-heading {
    font-family: 'DMSans', 'DM Sans', sans-serif !important;
    font-size: 12px !important;
    font-weight: 600 !important;
    letter-spacing: 2.5px !important;
    text-transform: uppercase !important;
    color: rgba(255,255,255,0.4) !important;
    margin-bottom: 24px !important;
}

.site-footer a {
    transition: opacity 0.25s ease;
}

.site-footer a:hover {
    opacity: 0.65;
}

.site-footer ul {
    list-style: none;
    padding-left: 0;
}

.site-footer li {
    margin-bottom: 12px;
}

.site-footer .peers-footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    margin-top: 48px;
    padding-top: 32px;
}

/* === RESPONSIVE === */
@media (max-width: 782px) {
    .peers-hero {
        padding-top: 64px !important;
        padding-bottom: 64px !important;
    }

    h1.wp-block-heading {
        font-size: 32px !important;
    }

    h2.wp-block-heading {
        font-size: 26px !important;
    }

    .peers-card,
    .peers-card-accent,
    .peers-product-card {
        padding: 28px 24px;
    }

    .peers-trust-number {
        font-size: 28px !important;
    }

    .site-header .wp-block-site-logo img {
        max-height: 80px;
    }
}

@media (max-width: 480px) {
    .wp-block-button__link {
        padding: 12px 24px !important;
        font-size: 12px !important;
    }
}

/* ==========================================================================
   SUCCESS STORIES — Charts, Animations & Interactive Elements
   ========================================================================== */

/* ── Scroll Reveal ────────────────────────────────── */
.peers-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.peers-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}
.peers-reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.peers-reveal-left.revealed {
    opacity: 1;
    transform: translateX(0);
}
.peers-reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.peers-reveal-right.revealed {
    opacity: 1;
    transform: translateX(0);
}

/* ── Animated Counters ────────────────────────────── */
.peers-counter-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}
.peers-counter-item {
    padding: 24px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}
.peers-counter {
    font-family: 'PlayfairDisplay', 'Playfair Display', Georgia, serif !important;
    font-size: 52px;
    font-weight: 700;
    color: #B8860B;
    line-height: 1;
    display: block;
}
.peers-counter-label {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 12px;
    display: block;
    text-align: center;
    max-width: 190px;
    min-height: 34px;
}

/* ── Donut Charts ─────────────────────────────────── */
.peers-donut-wrap {
    display: flex;
    align-items: center;
    gap: 40px;
}
.peers-donut {
    --percent: 0;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: conic-gradient(
        #B8860B calc(var(--percent) * 1%),
        #E5E7EB calc(var(--percent) * 1%)
    );
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    flex-shrink: 0;
}
.peers-donut::after {
    content: '';
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background: #ffffff;
    position: absolute;
}
.peers-donut-center {
    position: relative;
    z-index: 1;
    text-align: center;
}
.peers-donut-value {
    font-family: 'PlayfairDisplay', 'Playfair Display', Georgia, serif !important;
    font-size: 36px;
    font-weight: 700;
    color: #0F172A;
    line-height: 1;
}
.peers-donut-sub {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #6B7280;
    margin-top: 4px;
}
.peers-donut-stats {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.peers-donut-stat {
    padding: 16px 20px;
    background: #FAFAF8;
    border-radius: 8px;
    border-left: 3px solid #B8860B;
}
.peers-donut-stat-num {
    font-family: 'PlayfairDisplay', 'Playfair Display', Georgia, serif !important;
    font-size: 24px;
    font-weight: 700;
    color: #0F172A;
}
.peers-donut-stat-label {
    font-size: 13px;
    color: #6B7280;
    margin-top: 2px;
}
.peers-donut-stat .peers-integrity-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: #16a34a;
    font-weight: 600;
    margin-top: 4px;
}

/* Dark-bg donut variant */
.peers-dark-bg .peers-donut::after {
    background: #0F172A;
}
.peers-dark-bg .peers-donut-value {
    color: #ffffff;
}
.peers-dark-bg .peers-donut-sub {
    color: rgba(255,255,255,0.5);
}
.peers-dark-bg .peers-donut-stat {
    background: rgba(255,255,255,0.06);
    border-left-color: #B8860B;
}
.peers-dark-bg .peers-donut-stat-num {
    color: #ffffff;
}
.peers-dark-bg .peers-donut-stat-label {
    color: rgba(255,255,255,0.5);
}

/* ── Horizontal Bar Charts ────────────────────────── */
.peers-bar-chart {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.peers-bar-row {
    display: flex;
    align-items: center;
    gap: 16px;
}
.peers-bar-label {
    width: 120px;
    font-size: 13px;
    color: #6B7280;
    text-align: right;
    flex-shrink: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.peers-bar-track {
    flex: 1;
    height: 28px;
    background: #F3F4F6;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}
.peers-bar-fill {
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, #1B2A4A, #B8860B);
    border-radius: 4px;
    transition: width 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 10px;
}
.peers-bar-value {
    font-size: 12px;
    font-weight: 600;
    color: #ffffff;
    white-space: nowrap;
}

/* ── Step Progress Indicator ──────────────────────── */
.peers-steps {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}
.peers-steps::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 60px;
    right: 60px;
    height: 3px;
    background: #E5E7EB;
}
.peers-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    position: relative;
    z-index: 1;
}
.peers-step-dot {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #E5E7EB;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #6B7280;
    transition: all 0.5s ease;
}
.peers-step.achieved .peers-step-dot {
    background: #B8860B;
    color: #ffffff;
    box-shadow: 0 0 0 6px rgba(184, 134, 11, 0.15);
}
.peers-step.achieved.glow .peers-step-dot {
    animation: stepGlow 2s ease-in-out infinite;
}
@keyframes stepGlow {
    0%, 100% { box-shadow: 0 0 0 6px rgba(184, 134, 11, 0.15); }
    50% { box-shadow: 0 0 0 12px rgba(184, 134, 11, 0.25); }
}
.peers-step-label {
    font-size: 12px;
    text-align: center;
    color: #6B7280;
    max-width: 100px;
    line-height: 1.4;
}
.peers-step.achieved .peers-step-label {
    color: #0F172A;
    font-weight: 600;
}

/* ── Journal Card Strip ───────────────────────────── */
.peers-journal-strip {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 8px 0 24px;
    scrollbar-width: thin;
    scrollbar-color: #B8860B transparent;
}
.peers-journal-strip::-webkit-scrollbar {
    height: 4px;
}
.peers-journal-strip::-webkit-scrollbar-track {
    background: transparent;
}
.peers-journal-strip::-webkit-scrollbar-thumb {
    background: #B8860B;
    border-radius: 4px;
}
.peers-journal-card {
    min-width: 260px;
    max-width: 280px;
    background: #ffffff;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    padding: 28px 24px;
    scroll-snap-align: start;
    flex-shrink: 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}
.peers-journal-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: #B8860B;
}
.peers-journal-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}
.peers-journal-card h4 {
    font-family: 'PlayfairDisplay', 'Playfair Display', Georgia, serif !important;
    font-size: 16px;
    color: #0F172A;
    margin: 0 0 8px;
    line-height: 1.3;
}
.peers-journal-card .peers-jc-count {
    font-size: 28px;
    font-weight: 700;
    color: #B8860B;
    font-family: 'PlayfairDisplay', 'Playfair Display', Georgia, serif !important;
}
.peers-journal-card .peers-jc-label {
    font-size: 12px;
    color: #6B7280;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.peers-journal-card .peers-jc-subject {
    display: inline-block;
    font-size: 11px;
    padding: 4px 10px;
    background: #FAFAF8;
    border: 1px solid #E5E7EB;
    border-radius: 20px;
    color: #6B7280;
    margin-top: 12px;
}

/* ── Subject Tags ─────────────────────────────────── */
.peers-tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}
.peers-tag {
    display: inline-block;
    padding: 8px 18px;
    font-size: 13px;
    border: 1px solid #D4A843;
    border-radius: 24px;
    color: #B8860B;
    background: rgba(184, 134, 11, 0.04);
    transition: all 0.3s ease;
}
.peers-tag:hover {
    background: #B8860B;
    color: #ffffff;
}
.peers-tag.large {
    font-size: 15px;
    padding: 10px 22px;
    font-weight: 600;
}

/* ── Comparison Table ─────────────────────────────── */
.peers-compare-table {
    width: 100%;
    background: #ffffff;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
}
.peers-compare-table thead th {
    background: #1B2A4A;
    color: #ffffff;
    padding: 20px 24px;
    font-family: 'PlayfairDisplay', 'Playfair Display', Georgia, serif !important;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
}
.peers-compare-table thead th:first-child {
    text-align: left;
    color: rgba(255,255,255,0.6);
    font-family: 'DM Sans', sans-serif !important;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}
.peers-compare-table tbody td {
    padding: 16px 24px;
    font-size: 15px;
    color: #0F172A !important;
    background: #ffffff !important;
    border-bottom: 1px solid #F3F4F6;
    text-align: center;
}
.peers-compare-table tbody td:first-child {
    text-align: left;
    font-weight: 500;
    color: #334155 !important;
    background: #ffffff !important;
    font-size: 14px;
}
.peers-compare-table tbody tr:nth-child(even) {
    background: #F8FAFC !important;
}
.peers-compare-table tbody tr:nth-child(even) td {
    background: #F8FAFC !important;
}
.peers-compare-table tbody tr:hover {
    background: rgba(184, 134, 11, 0.06) !important;
}
.peers-compare-table tbody tr:hover td {
    background: rgba(184, 134, 11, 0.06) !important;
}
.peers-compare-table .highlight-cell {
    color: #8A6500 !important;
    font-weight: 700;
}

.peers-data-source {
    margin-top: 18px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.peers-data-source-label {
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.72);
}

.peers-data-source a {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    border-radius: 999px;
    border: 1px solid rgba(184, 134, 11, 0.45);
    background: rgba(255, 255, 255, 0.08);
    color: #F7E7B3;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-decoration: none;
    transition: all 0.25s ease;
}

.peers-data-source a:hover {
    background: rgba(184, 134, 11, 0.18);
    border-color: #B8860B;
    color: #ffffff;
}

/* ── Interactive Timeline ─────────────────────────── */
.peers-timeline {
    position: relative;
    padding: 20px 0 20px 60px;
    max-width: 700px;
    margin: 0 auto;
}
.peers-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 28px;
    bottom: 0;
    width: 3px;
    background: #E5E7EB;
}
.peers-tl-item {
    position: relative;
    padding: 0 0 40px 32px;
}
.peers-tl-item:last-child {
    padding-bottom: 0;
}
.peers-tl-dot {
    position: absolute;
    left: -46px;
    top: 4px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #E5E7EB;
    border: 3px solid #ffffff;
    transition: all 0.5s ease;
    z-index: 1;
}
.peers-tl-dot.active {
    background: #B8860B;
    box-shadow: 0 0 0 6px rgba(184, 134, 11, 0.15);
}
.peers-tl-year {
    font-family: 'PlayfairDisplay', 'Playfair Display', Georgia, serif !important;
    font-size: 22px;
    font-weight: 700;
    color: #B8860B;
    margin-bottom: 4px;
}
.peers-tl-text {
    font-size: 15px;
    color: #6B7280;
    line-height: 1.6;
}

/* ── Progress Bar with Pulse ──────────────────────── */
.peers-progress-bar {
    width: 100%;
    height: 12px;
    background: #E5E7EB;
    border-radius: 6px;
    overflow: visible;
    position: relative;
}
.peers-progress-fill {
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, #1B2A4A, #B8860B);
    border-radius: 6px;
    transition: width 2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
}
.peers-progress-bar.animate .peers-progress-fill {
    width: var(--progress);
}
.peers-progress-fill::after {
    content: '';
    position: absolute;
    right: -6px;
    top: -3px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #B8860B;
    box-shadow: 0 0 0 4px rgba(184, 134, 11, 0.2);
    animation: progressPulse 2s ease-in-out infinite;
}
@keyframes progressPulse {
    0%, 100% { box-shadow: 0 0 0 4px rgba(184, 134, 11, 0.2); }
    50% { box-shadow: 0 0 0 10px rgba(184, 134, 11, 0.3); }
}

/* ── Chapter Divider ──────────────────────────────── */
.peers-chapter-divider {
    text-align: center;
    padding: 80px 0;
    position: relative;
}
.peers-chapter-divider::before {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: #B8860B;
    margin: 0 auto 32px;
}
.peers-chapter-divider p {
    font-family: 'PlayfairDisplay', 'Playfair Display', Georgia, serif !important;
    font-size: 28px;
    font-style: italic;
    color: #B8860B;
}

/* ── Story Intro Readability ─────────────────────── */
.peers-meta-line {
    color: #334155 !important;
    font-weight: 500;
    letter-spacing: 0.01em;
}
.peers-meta-line a {
    color: #1B2A4A;
    text-decoration-color: rgba(27, 42, 74, 0.35);
}
.peers-meta-line a:hover {
    color: #B8860B;
    text-decoration-color: rgba(184, 134, 11, 0.5);
}
.peers-intro-copy {
    color: #334155 !important;
    max-width: 980px;
}

/* ── Location Pin Drop ───────────────────────────── */
.peers-location-drop {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 4px 10px;
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(184, 134, 11, 0.14), rgba(184, 134, 11, 0.06));
    border: 1px solid rgba(184, 134, 11, 0.28);
    vertical-align: middle;
}
.peers-reveal-location {
    opacity: 0;
    transform: translateY(-16px);
    transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.2, 0.9, 0.25, 1);
}
.peers-reveal-location.revealed {
    opacity: 1;
    transform: translateY(0);
}
.peers-location-pin {
    width: 12px;
    height: 12px;
    border-radius: 50% 50% 50% 0;
    background: linear-gradient(145deg, #D4A843, #B8860B);
    transform: rotate(-45deg);
    position: relative;
    box-shadow: 0 2px 6px rgba(184, 134, 11, 0.35);
}
.peers-location-pin::after {
    content: '';
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #ffffff;
    top: 4px;
    left: 4px;
}
.peers-location-country {
    color: #7a5a06;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* ── Publisher Logo in Story ──────────────────────── */
.peers-publisher-logo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: contain;
    background: #ffffff;
    padding: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid #E5E7EB;
}

/* ── Open Access Badge ────────────────────────────── */
.peers-oa-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    border: 4px solid #B8860B;
    margin: 0 auto;
    animation: oaBadgeRotate 8s linear infinite;
    position: relative;
}
.peers-oa-badge::before {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 2px dashed rgba(184, 134, 11, 0.3);
    animation: oaBadgeRotate 15s linear infinite reverse;
}
@keyframes oaBadgeRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}
.peers-oa-badge-inner {
    animation: oaBadgeRotate 8s linear infinite reverse;
    text-align: center;
}
.peers-oa-badge-inner .pct {
    font-family: 'PlayfairDisplay', 'Playfair Display', Georgia, serif !important;
    font-size: 36px;
    font-weight: 700;
    color: #B8860B;
    line-height: 1;
}
.peers-oa-badge-inner .lbl {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #6B7280;
    margin-top: 4px;
}

/* ── Closing Statement ────────────────────────────── */
.peers-stagger-line {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.peers-stagger-line.visible {
    opacity: 1;
    transform: translateY(0);
}
.peers-closing-hero {
    font-family: 'PlayfairDisplay', 'Playfair Display', Georgia, serif !important;
    font-size: 42px;
    font-weight: 700;
    color: #B8860B;
    line-height: 1.2;
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 1s ease 0.5s, transform 1s ease 0.5s;
}
.peers-stagger .peers-closing-hero.visible {
    opacity: 1;
    transform: scale(1);
}

/* ── Story section spacing ────────────────────────── */
.peers-story-section {
    padding: 100px 0;
}

/* ── Responsive for charts ────────────────────────── */
@media (max-width: 782px) {
    .peers-counter-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .peers-counter {
        font-size: 38px;
    }
    .peers-donut-wrap {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .peers-donut {
        width: 150px;
        height: 150px;
    }
    .peers-donut::after {
        width: 106px;
        height: 106px;
    }
    .peers-bar-label {
        width: 80px;
        font-size: 11px;
    }
    .peers-steps {
        flex-wrap: wrap;
        gap: 24px;
        justify-content: center;
    }
    .peers-steps::before {
        display: none;
    }
    .peers-journal-card {
        min-width: 220px;
    }
    .peers-compare-table {
        font-size: 13px;
    }
    .peers-compare-table thead th,
    .peers-compare-table tbody td {
        padding: 12px 14px;
    }
    .peers-closing-hero {
        font-size: 30px;
    }
    .peers-data-source {
        gap: 8px;
    }
    .peers-data-source-label {
        width: 100%;
        text-align: center;
        margin-bottom: 2px;
    }
    .peers-case-head {
        flex-wrap: wrap !important;
        gap: 14px !important;
        align-items: flex-start !important;
    }
    .peers-meta-line {
        font-size: 13px !important;
        line-height: 1.8;
    }
    .peers-intro-copy {
        font-size: 16px !important;
        line-height: 1.75 !important;
    }
    .peers-location-drop {
        padding: 3px 8px;
        gap: 6px;
    }
    .peers-publisher-logo {
        width: 80px;
        height: 80px;
    }
}

@media (max-width: 480px) {
    .peers-counter-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .peers-counter {
        font-size: 30px;
    }
    .peers-counter-label {
        font-size: 10px;
        letter-spacing: 1px;
    }
    .peers-donut {
        width: 130px;
        height: 130px;
    }
    .peers-donut::after {
        width: 90px;
        height: 90px;
    }
    .peers-donut-value {
        font-size: 26px;
    }
    .peers-timeline {
        padding-left: 40px;
    }
    .peers-timeline::before {
        left: 16px;
    }
    .peers-tl-dot {
        left: -36px;
    }
    .peers-location-country {
        font-size: 11px;
    }
    .peers-location-pin {
        width: 10px;
        height: 10px;
    }
    .peers-data-source a {
        font-size: 11px;
        padding: 6px 10px;
    }
}
