/* ── BLOG LIST ─────────────────────────────────────────────────────── */
.blog-hero {
    padding: 64px 0 40px;
    text-align: center;
    border-bottom: 1px solid rgba(255,255,255,.07);
}
.blog-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 5vw, 48px);
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 12px;
}
.blog-hero-sub {
    font-size: 16px;
    color: var(--muted);
    max-width: 520px;
    margin: 0 auto;
}
.blog-list {
    padding: 48px 24px;
}
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
}
.blog-card {
    background: var(--surface);
    border: 1px solid rgba(255,255,255,.07);
    border-radius: 14px;
    overflow: hidden;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    transition: transform .2s, border-color .2s;
}
.blog-card:hover {
    transform: translateY(-3px);
    border-color: rgba(212,168,71,.3);
}
.blog-card-img {
    height: 200px;
    overflow: hidden;
    background: rgba(255,255,255,.04);
}
.blog-card-img picture, .blog-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .3s;
}
.blog-card:hover .blog-card-img img { transform: scale(1.04); }
.blog-card-no-img {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: rgba(255,255,255,.1);
}
.blog-card-body {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.blog-card-date {
    font-size: 12px;
    color: var(--muted);
    letter-spacing: .04em;
}
.blog-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--ink);
    line-height: 1.4;
}
.blog-card-meta {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.5;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.blog-card-read {
    font-size: 13px;
    color: var(--accent);
    font-weight: 500;
    margin-top: 4px;
}
.blog-empty {
    text-align: center;
    padding: 64px 0;
    color: var(--muted);
}

/* ── SINGLE POST ──────────────────────────────────────────────────── */
.post-hero {
    position: relative;
    height: clamp(300px, 45vw, 480px);
    overflow: hidden;
}
.post-hero picture, .post-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.post-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(13,17,23,.9) 0%, rgba(13,17,23,.3) 60%, transparent 100%);
}
.post-hero-content {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    padding: 0 24px 40px;
    max-width: 900px;
}
.post-hero-plain {
    padding: 48px 24px 32px;
    max-width: 900px;
    margin: 0 auto;
}
.post-meta-top {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}
.post-back {
    font-size: 13px;
    color: rgba(255,255,255,.7);
    text-decoration: none;
    transition: color .2s;
}
.post-back:hover { color: var(--accent); }
.post-date {
    font-size: 13px;
    color: rgba(255,255,255,.5);
}
.post-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(24px, 4vw, 40px);
    font-weight: 600;
    color: #fff;
    line-height: 1.25;
    text-shadow: 0 2px 12px rgba(0,0,0,.4);
}
.post-title-plain {
    font-family: 'Playfair Display', serif;
    font-size: clamp(24px, 4vw, 40px);
    font-weight: 600;
    color: var(--ink);
    line-height: 1.25;
}

/* Layout */
.post-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 48px;
    padding: 48px 24px 80px;
    max-width: 1100px;
    margin: 0 auto;
}
@media (max-width: 768px) {
    .post-layout { grid-template-columns: 1fr; }
}

/* Article content */
.post-content {
    font-size: 16px;
    line-height: 1.8;
    color: var(--ink);
}
.post-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 600;
    color: var(--ink);
    margin: 32px 0 12px;
}
.post-content h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--ink);
    margin: 24px 0 10px;
}
.post-content p { margin: 0 0 16px; }
.post-content ul, .post-content ol {
    margin: 0 0 16px 24px;
}
.post-content li { margin-bottom: 6px; }
.post-content strong { color: var(--accent); font-weight: 600; }
.post-content a { color: var(--accent); text-decoration: underline; }

/* Sidebar */
.post-sidebar { display: flex; flex-direction: column; gap: 24px; }

.post-cta-box {
    background: var(--surface);
    border: 1px solid rgba(212,168,71,.2);
    border-radius: 12px;
    padding: 24px;
    position: sticky;
    top: 80px;
}
.post-cta-title {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 8px;
}
.post-cta-text {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.5;
    margin-bottom: 16px;
}

/* Related */
.post-related { display: flex; flex-direction: column; gap: 12px; }
.post-related-title {
    font-size: 13px;
    font-weight: 600;
    color: var(--muted);
    letter-spacing: .06em;
    text-transform: uppercase;
    margin-bottom: 4px;
}
.related-card {
    display: flex;
    gap: 12px;
    text-decoration: none;
    padding: 10px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,.05);
    transition: border-color .2s, background .2s;
}
.related-card:hover {
    border-color: rgba(212,168,71,.2);
    background: rgba(212,168,71,.04);
}
.related-img {
    width: 56px;
    height: 56px;
    border-radius: 6px;
    overflow: hidden;
    flex-shrink: 0;
}
.related-img picture, .related-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.related-title {
    font-size: 13px;
    font-weight: 500;
    color: var(--ink);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.related-date {
    font-size: 11px;
    color: var(--muted);
    margin-top: 4px;
}

/* ── BLOG PREVIEW ON HOME PAGE ──────────────────────────────────────── */
.blog-preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}
.blog-prev-card {
    background: var(--surface);
    border: 1px solid rgba(255,255,255,.07);
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    transition: transform .2s, border-color .2s;
}
.blog-prev-card:hover {
    transform: translateY(-3px);
    border-color: rgba(212,168,71,.3);
}
.blog-prev-img {
    height: 160px;
    overflow: hidden;
    background: rgba(255,255,255,.04);
}
.blog-prev-no-img {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: rgba(255,255,255,.1);
}
.blog-prev-body {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.blog-prev-date { font-size: 11px; color: var(--muted); }
.blog-prev-title {
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--ink);
    line-height: 1.4;
}
.blog-prev-meta {
    font-size: 12px;
    color: var(--muted);
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ── FAQ SECTION ─────────────────────────────────────────────────────── */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.faq-item {
    background: var(--surface);
    border: 1px solid rgba(255,255,255,.07);
    border-radius: 10px;
    overflow: hidden;
    transition: border-color .2s;
}
.faq-item:has(.faq-a[style*="block"]) {
    border-color: rgba(212,168,71,.25);
}
.faq-q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 20px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: var(--ink);
    line-height: 1.4;
}
.faq-q:hover { color: var(--accent); }
.faq-icon { flex-shrink: 0; transition: transform .25s; color: var(--muted); }
.faq-a {
    padding: 0 20px 16px;
    font-size: 14px;
    line-height: 1.7;
    color: var(--muted);
}
.faq-a p { margin: 0; }