/* ==================== BLOG POST PAGE ==================== */
.blog-post-hero {
    position: relative;
    height: 70vh;
    min-height: 500px;
    overflow: hidden;
}

.blog-post-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-post-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(10,10,10,0.3) 0%,
        rgba(10,10,10,0.7) 100%
    );
}

.blog-post-hero-content {
    position: absolute;
    bottom: 4rem;
    left: 0;
    right: 0;
    padding: 0 2rem;
    max-width: 900px;
    margin: 0 auto;
    color: var(--white);
}

.blog-post-category {
    display: inline-block;
    background: var(--gold);
    color: var(--white);
    padding: 0.4rem 1rem;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.blog-post-hero-content h1 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    max-width: 700px;
}

.blog-post-hero-content time {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
    font-weight: 400;
}

/* Blog Post Content */
.blog-post-container {
    max-width: 750px;
    margin: 0 auto;
    padding: 4rem 2rem 6rem;
}

.blog-post-body p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: #495057;
    margin-bottom: 1.8rem;
}

.blog-post-body h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: #212529;
    margin-top: 3rem;
    margin-bottom: 1.2rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #b8964e;
}

.blog-post-body ul {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.blog-post-body li {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #495057;
    margin-bottom: 0.8rem;
    padding-left: 0.5rem;
}

.blog-post-body li::marker {
    color: #b8964e;
}

.blog-post-body figure {
    margin: 2.5rem 0;
}

.blog-post-body figure img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.blog-post-body figcaption {
    font-size: 0.85rem;
    color: #adb5bd;
    text-align: center;
    margin-top: 0.8rem;
    font-style: italic;
}

/* Back Button */
.blog-post-back {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid #e9ecef;
}

.blog-post-back a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: #b8964e;
    text-decoration: none;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
}

.blog-post-back a:hover {
    color: #1a3a5c;
    transform: translateX(-5px);
}

/* Responsive */
@media (max-width: 768px) {
    .blog-post-hero {
        height: 50vh;
        min-height: 350px;
    }

    .blog-post-hero-content h1 {
        font-size: 1.8rem;
    }

    .blog-post-hero-content {
        bottom: 2rem;
    }

    .blog-post-body p {
        font-size: 1rem;
    }

    .blog-post-body h2 {
        font-size: 1.4rem;
    }

    .blog-post-body figure img {
        height: 250px;
    }
}
