/* Shymea Journal — Magazine Editorial Styles (Elle-inspired) */

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

body {
    background: #fff;
    font-family: 'Lora', Georgia, serif;
    color: #374151;
    line-height: 1.6;
}

a { color: inherit; }

/* ── Header ──────────────────────────────────────── */
header { position: sticky; top: 0; z-index: 1000; }
.post-header { position: static; z-index: auto; }

.shymea-site-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    height: 64px;
    background: #0a0a14;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.shymea-logo {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.6rem;
    font-weight: 700;
    background: linear-gradient(135deg, #8B5CF6, #EC4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
}

.shymea-nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.shymea-nav a {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    transition: color 0.2s ease;
}

.shymea-nav a:hover, .shymea-nav a.active {
    color: #8B5CF6;
}

.shymea-mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: rgba(255,255,255,0.75);
    cursor: pointer;
    padding: 4px;
}

/* ── Footer ──────────────────────────────────────── */
.shymea-site-footer {
    background: #0a0a14;
    color: #fff;
    padding: 60px 40px 40px;
}

.shymea-footer-inner {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.shymea-footer-brand { margin-bottom: 28px; }

.shymea-footer-logo {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
}

.shymea-footer-tagline {
    color: rgba(255,255,255,0.5);
    font-size: 15px;
    font-style: italic;
    margin-top: 8px;
}

.shymea-footer-nav { margin-bottom: 28px; }

.shymea-footer-nav a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s;
}
.shymea-footer-nav a:hover { color: #8B5CF6; }
.shymea-footer-nav .dot {
    color: rgba(255,255,255,0.3);
    margin: 0 12px;
}

.shymea-footer-social {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 28px;
}

.shymea-footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.7);
    transition: all 0.3s ease;
    text-decoration: none;
}
.shymea-footer-social a:hover {
    border-color: #8B5CF6;
    color: #8B5CF6;
    background: rgba(139,92,246,0.1);
}
.shymea-footer-social svg { width: 20px; height: 20px; fill: currentColor; }

.shymea-footer-copyright hr {
    border: none;
    border-top: 1px solid rgba(255,255,255,0.08);
    margin-bottom: 20px;
}
.shymea-footer-copyright p {
    color: rgba(255,255,255,0.35);
    font-size: 13px;
}

/* ── Category Nav Bar ────────────────────────────── */
.cat-nav {
    border-top: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
    background: #fff;
}

.cat-nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}
.cat-nav-inner::-webkit-scrollbar { display: none; }

.cat-nav a {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #6b7280;
    text-decoration: none;
    padding: 16px 20px;
    white-space: nowrap;
    transition: color 0.2s;
    position: relative;
}
.cat-nav a:hover {
    color: #1a1a2e;
}
.cat-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 20px;
    right: 20px;
    height: 2px;
    background: #1a1a2e;
    transform: scaleX(0);
    transition: transform 0.2s ease;
}
.cat-nav a:hover::after {
    transform: scaleX(1);
}

/* ── Home Search Bar ─────────────────────────────── */
.home-search {
    max-width: 1200px;
    margin: 0 auto;
    padding: 24px 24px 0;
}

.home-search-inner {
    position: relative;
    max-width: 400px;
}

.home-search-icon {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    color: #9ca3af;
    pointer-events: none;
}

.home-search-input {
    width: 100%;
    padding: 10px 16px 10px 28px;
    border: none;
    border-bottom: 1px solid #e5e5e5;
    background: transparent;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #1a1a2e;
    outline: none;
    transition: border-color 0.2s;
}
.home-search-input:focus {
    border-bottom-color: #1a1a2e;
}
.home-search-input::placeholder { color: #9ca3af; }

/* ── Search Dropdown Results ─────────────────────── */
.search-results {
    display: none;
    position: absolute;
    top: 100%;
    left: -16px;
    right: -16px;
    max-height: 480px;
    overflow-y: auto;
    background: #fff;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 12px;
    box-shadow: 0 12px 48px rgba(0,0,0,0.12);
    z-index: 100;
    margin-top: 8px;
    padding: 8px 0;
}
.search-results.active { display: block; }

.search-result-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 10px 16px;
    text-decoration: none;
    transition: background 0.15s;
}
.search-result-item:hover {
    background: #f8f5ff;
}
.search-result-img {
    width: 56px;
    height: 56px;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
}
.search-result-info {
    flex: 1;
    min-width: 0;
}
.search-result-cat {
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: #8B5CF6;
}
.search-result-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 0.95rem;
    font-weight: 500;
    color: #1a1a2e;
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.search-result-meta {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    color: #9ca3af;
    margin-top: 2px;
}
.search-no-results {
    padding: 24px 16px;
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #9ca3af;
}
.search-results-divider {
    height: 1px;
    background: rgba(0,0,0,0.05);
    margin: 4px 16px;
}

/* ── Section Heading (Elle-style) ────────────────── */
.section-heading {
    font-family: 'Playfair Display', Georgia, serif;
    font-style: italic;
    font-weight: 400;
    font-size: 2rem;
    color: #1a1a2e;
    padding-top: 20px;
    margin-bottom: 32px;
    border-top: 1px solid #1a1a2e;
    letter-spacing: -0.01em;
    line-height: 1.2;
}

.column-heading {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #1a1a2e;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid #e5e5e5;
}

/* ── Editorial Hero (3-column) ───────────────────── */
.editorial-hero {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 24px 0;
}

.editorial-hero-inner {
    display: grid;
    grid-template-columns: 280px 1fr 260px;
    gap: 32px;
    min-height: 420px;
}

/* LEFT: The Latest */
.hero-latest {
    border-right: 1px solid #e5e5e5;
    padding-right: 32px;
}

.list-item {
    display: block;
    text-decoration: none;
    padding: 16px 0;
    border-bottom: 1px solid #e5e5e5;
    transition: opacity 0.2s;
}
.list-item:first-of-type { padding-top: 0; }
.list-item:last-child { border-bottom: none; }
.list-item:hover { opacity: 0.7; }

.list-item-cat {
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #8B5CF6;
    display: block;
    margin-bottom: 4px;
}

.list-item-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.1rem;
    font-weight: 500;
    color: #1a1a2e;
    line-height: 1.35;
    margin-bottom: 4px;
    letter-spacing: -0.01em;
}

.list-item-meta {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    color: #9ca3af;
}

/* CENTER: Featured */
.hero-featured {
    display: flex;
    flex-direction: column;
}

.hero-featured-link {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: opacity 0.2s;
}
.hero-featured-link:hover { opacity: 0.9; }

.hero-featured-image-wrap {
    height: 260px;
    position: relative;
    flex-shrink: 0;
    overflow: hidden;
}
.hero-featured-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}
.hero-featured-link:hover .hero-featured-image { transform: scale(1.03); }

.hero-featured-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px 24px;
    background: linear-gradient(transparent, rgba(0,0,0,0.4));
}

.hero-featured-badge {
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fff;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(4px);
    padding: 4px 12px;
    border-radius: 2px;
}

.hero-featured-body {
    padding: 20px 0;
    flex: 1;
}

.hero-featured-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-style: italic;
    font-size: 1.75rem;
    font-weight: 500;
    color: #1a1a2e;
    line-height: 1.25;
    margin-bottom: 10px;
    letter-spacing: -0.02em;
}

.hero-featured-excerpt {
    font-family: 'Lora', Georgia, serif;
    font-size: 0.95rem;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 10px;
}

.hero-featured-meta {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: #9ca3af;
}

/* RIGHT: Editor's Picks */
.hero-picks {
    border-left: 1px solid #e5e5e5;
    padding-left: 32px;
}

.picks-item {
    display: block;
    text-decoration: none;
    padding: 16px 0;
    border-bottom: 1px solid #e5e5e5;
    transition: opacity 0.2s;
}
.picks-item:first-of-type { padding-top: 0; }
.picks-item:last-child { border-bottom: none; }
.picks-item:hover { opacity: 0.7; }

.picks-item-cat {
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #8B5CF6;
    display: block;
    margin-bottom: 6px;
}

.picks-item-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.1rem;
    font-weight: 500;
    color: #1a1a2e;
    line-height: 1.35;
    margin-bottom: 6px;
    letter-spacing: -0.01em;
}

.picks-item-excerpt {
    font-family: 'Lora', Georgia, serif;
    font-size: 0.85rem;
    color: #6b7280;
    line-height: 1.5;
    margin-bottom: 6px;
}

.picks-item-meta {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    color: #9ca3af;
}

/* ── Newsletter CTA ──────────────────────────────── */
.newsletter-cta {
    margin: 60px auto;
    max-width: 1200px;
    padding: 0 24px;
}

.newsletter-cta-inner {
    background: linear-gradient(135deg, #8B5CF6, #6D28D9, #EC4899);
    padding: 56px 40px;
    text-align: center;
}

.newsletter-heading {
    font-family: 'Playfair Display', Georgia, serif;
    font-style: italic;
    font-size: 2rem;
    font-weight: 400;
    color: #fff;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
    line-height: 1.3;
}

.newsletter-subtext {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: rgba(255,255,255,0.8);
    margin-bottom: 28px;
}

.newsletter-btn {
    display: inline-block;
    background: #fff;
    color: #6D28D9;
    padding: 14px 36px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: all 0.2s;
}
.newsletter-btn:hover {
    background: #f5f3ff;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

/* ── Most Popular ────────────────────────────────── */
.most-popular {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px 60px;
}

.most-popular-inner {
    /* inner wrapper */
}

.popular-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
}

.popular-card {
    text-decoration: none;
    display: block;
    position: relative;
    transition: opacity 0.2s;
}
.popular-card:hover { opacity: 0.8; }

.popular-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, #8B5CF6, #EC4899);
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 700;
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
}

.popular-image {
    width: 100%;
    height: 160px;
    object-fit: cover;
    display: block;
    margin-bottom: 12px;
    transition: transform 0.4s ease;
}
.popular-card:hover .popular-image { transform: scale(1.05); }

.popular-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 0.9rem;
    font-weight: 500;
    color: #1a1a2e;
    line-height: 1.35;
    letter-spacing: -0.01em;
}

/* ── Category Sections ───────────────────────────── */
.cat-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px 60px;
}

.cat-section-inner {
    /* inner wrapper */
}

.cat-section-grid {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 32px;
    margin-bottom: 20px;
}

.cat-featured-link {
    display: block;
    text-decoration: none;
    transition: opacity 0.2s;
}
.cat-featured-link:hover { opacity: 0.85; }

.cat-featured-image {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
    margin-bottom: 16px;
    transition: transform 0.4s ease;
}
.cat-featured-link:hover .cat-featured-image { transform: scale(1.03); }

.cat-featured-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.4rem;
    font-weight: 500;
    color: #1a1a2e;
    line-height: 1.3;
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.cat-featured-excerpt {
    font-family: 'Lora', Georgia, serif;
    font-size: 0.9rem;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 8px;
}

.cat-featured-meta {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: #9ca3af;
}

/* Category sidebar list */
.cat-sidebar {
    /* right column */
}

.cat-sidebar-item {
    display: block;
    text-decoration: none;
    padding: 16px 0;
    border-top: 1px solid #e5e5e5;
    transition: opacity 0.2s;
}
.cat-sidebar-item:hover { opacity: 0.7; }

.cat-sidebar-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.1rem;
    font-weight: 500;
    color: #1a1a2e;
    line-height: 1.35;
    margin-bottom: 4px;
    letter-spacing: -0.01em;
}

.cat-sidebar-meta {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    color: #9ca3af;
}

.cat-see-all {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #8B5CF6;
    text-decoration: none;
    letter-spacing: 0.3px;
    transition: color 0.2s;
}
.cat-see-all:hover { color: #6D28D9; }

/* ── All Articles Section ────────────────────────── */
.all-articles {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px 60px;
}

.all-articles-inner {
    /* inner wrapper */
}

/* ── Search (global on listing pages) ────────────── */
.search-container {
    position: relative;
    max-width: 480px;
    margin: 0 auto 24px;
}

.search-input {
    width: 100%;
    padding: 14px 20px 14px 48px;
    border-radius: 50px;
    border: 1px solid rgba(139,92,246,0.2);
    background: white;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: #1a1a2e;
    outline: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.search-input:focus {
    border-color: #8B5CF6;
    box-shadow: 0 4px 20px rgba(139,92,246,0.15);
}
.search-input::placeholder { color: #9ca3af; }

.search-icon {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    color: #9ca3af;
    pointer-events: none;
}

/* ── Filter Pills ──────────────────────────────────── */
.journal-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    padding: 0 0 36px;
    max-width: 800px;
    margin: 0 auto;
}

.filter-pill {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 500;
    padding: 8px 20px;
    border-radius: 24px;
    border: 1px solid #e5e5e5;
    color: #6b7280;
    text-decoration: none;
    transition: all 0.25s ease;
    background: white;
    cursor: pointer;
}
.filter-pill:hover {
    border-color: #1a1a2e;
    color: #1a1a2e;
}
.filter-pill.active {
    background: #1a1a2e;
    color: white;
    border-color: #1a1a2e;
}

/* ── Blog Grid (cards) ───────────────────────────── */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px 40px;
}

.blog-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(0,0,0,0.06);
    border: 1px solid rgba(0,0,0,0.04);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}
.blog-card.hidden { display: none; }

.card-image-link { display: block; overflow: hidden; }
.card-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}
.blog-card:hover .card-image { transform: scale(1.05); }

.card-body { padding: 20px 24px 24px; }

.category-badge {
    background: linear-gradient(135deg, #8B5CF6, #EC4899);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 10px;
}

.card-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.15rem;
    font-weight: 600;
    line-height: 1.35;
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}
.card-title a {
    color: #1a1a2e;
    text-decoration: none;
    transition: color 0.2s;
}
.card-title a:hover { color: #8B5CF6; }

.card-excerpt {
    color: #6b7280;
    font-family: 'Lora', Georgia, serif;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 12px;
}

.card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 12px;
    border-top: 1px solid rgba(0,0,0,0.05);
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: #9ca3af;
}

/* ── No Results ──────────────────────────────────── */
.no-results {
    text-align: center;
    padding: 60px 24px;
    color: #6b7280;
    font-family: 'Lora', Georgia, serif;
    font-size: 1.1rem;
}

/* ── Pagination ──────────────────────────────────── */
.pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 20px 24px 60px;
}

.page-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #6b7280;
    text-decoration: none;
    background: white;
    border: 1px solid rgba(0,0,0,0.08);
    transition: all 0.2s;
}
.page-btn:hover {
    border-color: #1a1a2e;
    color: #1a1a2e;
}
.page-btn.active {
    background: #1a1a2e;
    color: white;
    border-color: #1a1a2e;
}

/* ── Category Hero ──────────────────────────────────── */
.category-hero {
    padding: 48px 24px;
    text-align: center;
    color: #242424;
    margin-bottom: 32px;
    border-bottom: 1px solid #f2f2f2;
}
.category-hero h1 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 600;
    margin-bottom: 8px;
    color: #242424;
}
.category-count {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: #6b6b6b;
}

/* ── Reading Progress Bar ─────────────────────────── */
/* ── Reading Progress ─────────────────────────────── */
.reading-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 2px;
    width: 0%;
    background: #1a8917;
    z-index: 1001;
    transition: width 0.1s linear;
    pointer-events: none;
}

/* ── Medium-Style Post Article ──────────────────────── */
.post-article {
    max-width: 680px;
    margin: 0 auto;
    padding: 48px 24px 0;
    background: #fff;
}

.post-header {
    margin-bottom: 32px;
    position: static;
    z-index: auto;
}

.post-title {
    font-family: Georgia, 'Times New Roman', serif;
    color: #242424;
    font-size: 32px;
    font-weight: 700;
    line-height: 40px;
    letter-spacing: -0.016em;
    margin: 0 0 8px;
    word-break: break-word;
}

.post-subtitle {
    font-family: Georgia, 'Times New Roman', serif;
    color: #6b6b6b;
    font-size: 18px;
    line-height: 28px;
    font-weight: 400;
    margin: 0 0 24px;
}

.post-author-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.post-author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #8B5CF6, #EC4899);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 18px;
    font-weight: 600;
    flex-shrink: 0;
}

.post-author-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.post-author-top {
    display: flex;
    align-items: center;
    gap: 8px;
}

.post-author-name {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #242424;
}

.post-follow-link {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 14px;
    color: #1a8917;
    text-decoration: none;
    font-weight: 400;
}
.post-follow-link:hover { text-decoration: underline; }

.post-author-meta {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 14px;
    color: #6b6b6b;
}
.meta-dot { margin: 0 4px; }

/* ── Actions Bar (like Medium top bar) ──────────────── */
.post-actions-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    border-top: 1px solid #f2f2f2;
    border-bottom: 1px solid #f2f2f2;
    margin-bottom: 32px;
}

.post-actions-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.post-clap-count {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 13px;
    color: #6b6b6b;
}

.post-actions-right {
    display: flex;
    align-items: center;
    gap: 4px;
}

.post-action-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: none;
    background: transparent;
    color: #6b6b6b;
    cursor: pointer;
    transition: color 0.2s;
    text-decoration: none;
    padding: 0;
}
.post-action-btn:hover { color: #242424; }
.post-action-btn svg { width: 20px; height: 20px; }

/* Hide native share on desktop (no navigator.share) */
@supports not (selector(:has(*))) {
    .post-share-native { display: none; }
}

/* ── Clap/Like Button ────────────────────────────────── */
.clap-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: none;
    background: transparent;
    color: #6b6b6b;
    cursor: pointer;
    padding: 6px 2px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 13px;
    transition: color 0.2s;
}
.clap-btn:hover { color: #242424; }
.clap-btn.clapped { color: #1a8917; }
.clap-btn.clapped svg { fill: none; stroke: #1a8917; }
.clap-btn svg { transition: transform 0.2s; }
.clap-btn.clap-pop svg { transform: scale(1.3); }
.clap-count { min-width: 12px; }

.post-insta-share.shared { color: #E1306C; }

/* ── Featured Image ────────────────────────────────── */
.post-featured-image {
    margin: 0 0 32px;
}
.post-featured-image img {
    width: 100%;
    display: block;
    border-radius: 0;
}

/* ── Article Body (Medium typography) ────────────────── */
.article-body {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 20px;
    line-height: 32px;
    color: #242424;
    letter-spacing: -0.003em;
    word-break: break-word;
}

.article-body p {
    margin-top: 0;
    margin-bottom: 2em;
}

.article-body > p:first-of-type::first-letter {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 3.5em;
    float: left;
    line-height: 0.8;
    padding-right: 10px;
    padding-top: 6px;
    color: #242424;
    font-weight: 700;
}

.article-body h2 {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: #242424;
    font-size: 22px;
    font-weight: 700;
    line-height: 28px;
    margin-top: 3em;
    margin-bottom: 0.4em;
    padding-bottom: 0;
    border-bottom: none;
    letter-spacing: -0.012em;
}

.article-body h3 {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: #242424;
    font-size: 18px;
    font-weight: 700;
    line-height: 24px;
    margin-top: 2em;
    margin-bottom: 0.3em;
    letter-spacing: -0.008em;
}

.article-body strong { color: #242424; font-weight: 700; }

.article-body em { color: inherit; font-style: italic; }

.article-body p:last-child,
.article-body p:last-child em {
    color: inherit;
    font-style: normal;
    font-weight: 400;
}

.article-body blockquote {
    border-left: 3px solid #242424;
    margin: 2em 0;
    padding: 0 0 0 20px;
    font-style: italic;
    color: #242424;
}

.article-body ul,
.article-body ol {
    margin: 1em 0 2em;
    padding-left: 30px;
}

.article-body li {
    margin-bottom: 0.5em;
    line-height: 28px;
}

.article-body a {
    color: inherit;
    text-decoration: underline;
    text-decoration-color: rgba(36, 36, 36, 0.4);
    text-underline-offset: 2px;
}
.article-body a:hover {
    text-decoration-color: #242424;
}

/* ── Post Tags ──────────────────────────────────────── */
.post-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 32px 0;
    border-top: 1px solid #f2f2f2;
    margin-top: 32px;
}

.post-tag {
    display: inline-block;
    background: #f2f2f2;
    color: #242424;
    padding: 8px 16px;
    border-radius: 100px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 13px;
    text-decoration: none;
    transition: background 0.2s;
}
.post-tag:hover { background: #e2e2e2; }

/* ── Post Bottom Actions ────────────────────────────── */
.post-bottom-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 12px 0 32px;
    border-bottom: 1px solid #f2f2f2;
}

/* ── CTA Box ──────────────────────────────────── */
.cta-box {
    background: #f9f9f9;
    border-radius: 4px;
    padding: 32px;
    text-align: center;
    margin-top: 40px;
    margin-bottom: 40px;
    border: 1px solid #f2f2f2;
}
.cta-box p {
    font-family: Georgia, 'Times New Roman', serif;
    color: #242424;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
}
.cta-button {
    display: inline-block;
    background: #242424;
    color: white;
    padding: 10px 28px;
    border-radius: 100px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.2s;
}
.cta-button:hover {
    background: #1a8917;
}

/* ── Related Posts ──────────────────────────────────── */
.related-posts {
    max-width: 680px;
    margin: 0 auto;
    padding: 0 24px 60px;
}
.related-title {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #242424;
    margin-bottom: 16px;
    text-align: left;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.related-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.related-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: white;
    border-radius: 0;
    overflow: hidden;
    text-decoration: none;
    box-shadow: none;
    transition: background 0.2s;
    padding: 16px 0;
    border-bottom: 1px solid #f2f2f2;
}
.related-card:hover {
    transform: none;
    box-shadow: none;
    background: #fafafa;
}
.related-card:last-child { border-bottom: none; }

.related-image {
    width: 112px;
    height: 112px;
    object-fit: cover;
    display: block;
    border-radius: 4px;
    flex-shrink: 0;
    order: 2;
}

.related-info {
    padding: 0;
    flex: 1;
    min-width: 0;
    order: 1;
}
.related-category {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 12px;
    font-weight: 500;
    text-transform: none;
    letter-spacing: 0;
    color: #6b6b6b;
}
.related-info h4 {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #242424;
    line-height: 20px;
    margin: 4px 0;
}
.related-meta {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 13px;
    color: #6b6b6b;
}

/* ── Back to Top ──────────────────────────────────── */
.back-to-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #242424;
    color: white;
    border: none;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    transition: all 0.2s;
    z-index: 999;
}
.back-to-top.visible { display: flex; }
.back-to-top:hover { background: #1a8917; box-shadow: 0 4px 12px rgba(0,0,0,0.2); }
.back-to-top svg { width: 18px; height: 18px; }

/* ── Responsive ──────────────────────────────────── */
@media (max-width: 1024px) {
    .editorial-hero-inner {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }
    .hero-latest {
        border-right: none;
        padding-right: 0;
        grid-column: 1 / -1;
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        gap: 16px;
    }
    .hero-latest .column-heading {
        grid-column: 1 / -1;
    }
    .hero-latest .list-item {
        border-bottom: none;
        padding: 0;
        border-right: 1px solid #e5e5e5;
        padding-right: 16px;
    }
    .hero-latest .list-item:last-child { border-right: none; }
    .hero-picks {
        border-left: none;
        padding-left: 0;
    }
    .popular-grid { grid-template-columns: repeat(3, 1fr); }
    .cat-section-grid { grid-template-columns: 1fr 280px; }
}

@media (max-width: 900px) {
    .editorial-hero-inner { grid-template-columns: 1fr; }
    .hero-latest {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .hero-latest .list-item {
        border-right: none;
        padding-right: 0;
        border-bottom: 1px solid #e5e5e5;
        padding: 12px 0;
    }
    .hero-picks { border-left: none; padding-left: 0; border-top: 1px solid #e5e5e5; padding-top: 24px; }
    .blog-grid { grid-template-columns: repeat(2, 1fr); }
    .related-grid { flex-direction: column; }
    .popular-grid { grid-template-columns: repeat(3, 1fr); }
    .cat-section-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .shymea-site-header { padding: 0 20px; }
    .shymea-mobile-toggle { display: block; }
    .shymea-nav {
        display: none;
        position: absolute;
        top: 64px;
        left: 0;
        right: 0;
        background: #0a0a14;
        flex-direction: column;
        padding: 20px;
        gap: 16px;
        border-bottom: 1px solid rgba(255,255,255,0.08);
        box-shadow: 0 10px 30px rgba(0,0,0,0.4);
    }
    .shymea-nav.open { display: flex; }
    .popular-grid { grid-template-columns: repeat(2, 1fr); }
    .cat-nav-inner { justify-content: flex-start; }
    .newsletter-heading { font-size: 1.5rem; }
    .newsletter-cta-inner { padding: 40px 24px; }
}

@media (max-width: 600px) {
    .blog-grid { grid-template-columns: 1fr; }
    .related-grid { grid-template-columns: 1fr; }
    .journal-filters { gap: 8px; padding: 0 0 28px; }
    .filter-pill { font-size: 12px; padding: 6px 16px; }
    .post-article { padding: 32px 20px 0; }
    .post-title { font-size: 24px; line-height: 30px; }
    .post-subtitle { font-size: 16px; line-height: 24px; }
    .article-body { font-size: 18px; line-height: 28px; }
    .article-body h2 { font-size: 20px; line-height: 26px; }
    .related-image { width: 80px; height: 80px; }
    .related-info h4 { font-size: 14px; }
    .related-posts { padding: 0 20px 40px; }
    .shymea-site-footer { padding: 40px 20px 30px; }
    .card-image { height: 140px; }
    .popular-grid { grid-template-columns: 1fr 1fr; }
    .editorial-hero { padding: 24px 16px 0; }
    .hero-featured-image-wrap { height: 200px; }
    .hero-featured-title { font-size: 1.4rem; }
    .section-heading { font-size: 1.6rem; }
    .cat-featured-image { height: 200px; }
    .cat-nav a { padding: 12px 14px; font-size: 11px; }
    .home-search { padding: 16px 16px 0; }
    .most-popular,
    .cat-section,
    .all-articles { padding-left: 16px; padding-right: 16px; }
    .newsletter-cta { padding: 0 16px; }
}

/* Print */
@media print {
    header, footer, .cta-box, .related-posts, .post-actions-bar, .post-bottom-actions,
    .back-to-top, .reading-progress, .post-tags, .post-featured-image { display: none; }
    .post-article { max-width: 100%; padding: 0; }
    body { background: white; }
}
