/* ============================================================
   SHOBUK GOLD — blog.css
   Shared styles for all blog post pages
   ============================================================ */


/* ── BLOG HERO BANNER ── */
.blog-hero {
    min-height: 70vh;
    background: var(--black-2);
    display: flex;
    align-items: flex-start;
    padding-bottom: 5rem;
    overflow: hidden;
}

.blog-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: var(--black-3);
}

.blog-hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(10, 10, 10, 0.3) 0%,
        rgba(10, 10, 10, 0.6) 50%,
        rgba(10, 10, 10, 0.92) 100%
    );
}

.blog-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 8rem 4rem 0;
}

.blog-back {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--black);
    background: var(--gold);
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    text-decoration: none;
    margin-bottom: 1.5rem;
    padding: 0.7rem 1.5rem;
    border: 1px solid var(--gold);
    transition: all 0.3s;
    font-weight: 500;
}

.blog-back:hover {
    background: transparent;
    color: var(--gold);
}

.blog-hero-category {
    font-size: 0.68rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.blog-hero-category::before {
    content: '';
    width: 24px;
    height: 1px;
    background: var(--gold);
}

.blog-hero-content h1 {
    font-family: 'Cormorant Garant', serif;
    font-size: clamp(2.2rem, 5vw, 4rem);
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--off-white);
}

.blog-hero-content h1 em {
    font-style: italic;
    color: var(--gold);
}

.blog-hero-meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.8rem;
    color: rgba(248, 244, 236, 0.55);
    flex-wrap: wrap;
}

.meta-dot {
    color: var(--gold);
    opacity: 0.5;
}


/* ── BLOG BODY ── */
.blog-body {
    background: var(--black);
    padding: 5rem 4rem;
}

.blog-container {
    max-width: 1200px;
    margin: 0 auto;
}

.blog-content-wrap {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 5rem;
    align-items: start;
}


/* ── ARTICLE ── */
.blog-article {
    max-width: 100%;
}

.blog-lead {
    font-family: 'Cormorant Garant', serif;
    font-size: 1.35rem;
    font-weight: 300;
    line-height: 1.7;
    color: rgba(248, 244, 236, 0.85);
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(201, 168, 76, 0.15);
    font-style: italic;
}

.blog-article h2 {
    font-family: 'Cormorant Garant', serif;
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--off-white);
    margin: 2.5rem 0 1rem;
    line-height: 1.2;
}

.blog-article h2:first-of-type {
    margin-top: 0;
}

.blog-article p {
    font-size: 0.95rem;
    font-weight: 300;
    color: rgba(248, 244, 236, 0.68);
    line-height: 1.95;
    margin-bottom: 1.2rem;
}

.blog-article ul,
.blog-article ol {
    margin: 1rem 0 1.5rem 1.5rem;
}

.blog-article li {
    font-size: 0.9rem;
    font-weight: 300;
    color: rgba(248, 244, 236, 0.65);
    line-height: 1.8;
    margin-bottom: 0.5rem;
    padding-left: 0.5rem;
}

/* Inline blog image */
.blog-inline-img {
    margin: 2.5rem 0;
}

.blog-inline-img img {
    width: 100%;
    height: auto;
    display: block;
    border: 1px solid rgba(201, 168, 76, 0.15);
}

.img-caption {
    font-size: 0.75rem !important;
    color: rgba(248, 244, 236, 0.35) !important;
    text-align: center;
    margin-top: 0.5rem !important;
    font-style: italic;
    letter-spacing: 0.06em;
}

/* CTA box at end of article */
.blog-cta-box {
    background: rgba(201, 168, 76, 0.05);
    border: 1px solid rgba(201, 168, 76, 0.25);
    padding: 3rem;
    margin-top: 4rem;
    text-align: center;
}

.blog-cta-tag {
    font-size: 0.68rem !important;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--gold) !important;
    margin-bottom: 0.8rem !important;
}

.blog-cta-box h3 {
    font-family: 'Cormorant Garant', serif;
    font-size: 1.8rem;
    font-weight: 300;
    color: var(--off-white);
    margin-bottom: 1.8rem;
}


/* ── CHECKLIST TIMELINE (blog-3) ── */
.checklist-timeline {
    margin: 2rem 0;
}

.timeline-block {
    display: grid;
    grid-template-columns: 160px 1fr;
    gap: 2.5rem;
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(201, 168, 76, 0.08);
}

.timeline-block:last-child {
    border-bottom: none;
}

.timeline-marker {
    font-size: 0.68rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    padding-top: 0.4rem;
    font-weight: 400;
    line-height: 1.5;
    position: relative;
}

.timeline-marker::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0.6rem;
    width: 1px;
    height: 100%;
    background: rgba(201, 168, 76, 0.15);
}

.timeline-content {
    padding-left: 1rem;
}

.timeline-content h2 {
    margin-top: 0 !important;
}

.checklist {
    list-style: none !important;
    margin-left: 0 !important;
    margin-bottom: 1.2rem !important;
}

.checklist li {
    padding: 0.55rem 0 !important;
    padding-left: 1.5rem !important;
    border-bottom: 1px solid rgba(201, 168, 76, 0.07) !important;
    position: relative;
    margin-bottom: 0 !important;
}

.checklist li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-size: 0.5rem;
    top: 0.85rem;
    opacity: 0.7;
}


/* ── SIDEBAR ── */
.blog-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: sticky;
    top: 6rem;
}

.sidebar-card {
    background: var(--black-2);
    border: 1px solid rgba(201, 168, 76, 0.12);
    padding: 1.8rem;
}

.sidebar-card h4 {
    font-size: 0.62rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
}

.sidebar-card p {
    font-size: 0.82rem;
    color: rgba(248, 244, 236, 0.5);
    line-height: 1.75;
    margin-bottom: 1rem;
}

.sidebar-link {
    font-size: 0.72rem;
    color: var(--gold);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    transition: opacity 0.3s;
}

.sidebar-link:hover {
    opacity: 0.7;
}

.sidebar-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.sidebar-list li a {
    font-size: 0.82rem;
    color: rgba(248, 244, 236, 0.5);
    text-decoration: none;
    line-height: 1.5;
    transition: color 0.3s;
    display: block;
    padding-bottom: 0.85rem;
    border-bottom: 1px solid rgba(201, 168, 76, 0.08);
}

.sidebar-list li:last-child a {
    border-bottom: none;
    padding-bottom: 0;
}

.sidebar-list li a:hover {
    color: var(--gold);
}

.sidebar-cta {
    background: rgba(201, 168, 76, 0.04);
    border-color: rgba(201, 168, 76, 0.22);
    text-align: center;
}

.sidebar-cta p {
    margin-bottom: 1.2rem;
}


/* ── RESPONSIVE ── */
@media (max-width: 768px) {
    .blog-hero { min-height: 55vh; padding-bottom: 2.5rem; }
    .blog-hero-content { padding: 6rem 1.5rem 0; }
    .blog-hero-content h1 { font-size: clamp(1.8rem, 7vw, 2.8rem); }
    .blog-hero-meta { font-size: 0.72rem; gap: 0.5rem; }
    .blog-back { padding: 0.6rem 1.2rem; font-size: 0.68rem; }
    .blog-body { padding: 3rem 1.5rem; }
    .blog-content-wrap { grid-template-columns: 1fr; gap: 2.5rem; }
    .blog-sidebar { position: static; }
    .blog-lead { font-size: 1.1rem; }
    .blog-article h2 { font-size: 1.5rem; }
    .blog-cta-box { padding: 2rem 1.5rem; }
    .blog-cta-box h3 { font-size: 1.4rem; }
    .timeline-block { grid-template-columns: 1fr; gap: 0.5rem; }
    .timeline-marker::after { display: none; }
    .timeline-content { padding-left: 0; }
    .timeline-marker { padding-bottom: 0.5rem; border-bottom: 1px solid rgba(201,168,76,0.15); }
}

@media (max-width: 480px) {
    .blog-hero { min-height: 50vh; }
    .blog-hero-content { padding: 5.5rem 1.2rem 0; }
    .blog-hero-content h1 { font-size: clamp(1.6rem, 8vw, 2.2rem); }
    .blog-body { padding: 2.5rem 1.2rem; }
    .blog-lead { font-size: 1rem; }
    .sidebar-card { padding: 1.3rem; }
    .blog-cta-box { padding: 1.8rem 1.2rem; }
}