/* --- Premium Blog Detail Page Styles --- */

/* Hero Section */
.blog-detail-hero {
    position: relative;
    height: auto;
    min-height: 400px;
    display: flex;
    align-items: center;
    background-color: #000;
    padding: 10rem 0 3rem;
}

.blog-detail-hero::before {
    display: none;
}

.blog-hero-inner {
    position: relative;
    z-index: 2;
    max-width: none;
    width: 100%;
    text-align: left;
    margin-top: 3rem;
}

.blog-detail-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(30px, 4.5vw, 54px);
    color: var(--white);
    line-height: 1.1;
    font-weight: 400;
    margin-bottom: 1.2rem;
}

.blog-hero-meta {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-family: 'Jost', sans-serif;
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.75);
}

.blog-hero-meta .sep {
    color: rgba(255,255,255,0.4);
    font-weight: 300;
}

/* Back to Blogs Strip */
.back-to-blogs {
    padding: 0;
    background-color: transparent;
    border-bottom: none;
}

/* Featured Image & Sidebar Grid */
.featured-image-section {
    background-color: var(--valley-mist);
    padding: 3rem 0;
}

.blog-featured-grid {
    max-width: 1000px;
    margin: 0 auto;
}

.featured-image-wrapper {
    width: 100%;
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(0,0,0,0.15);
}

.featured-image-wrapper img {
    width: 100%;
    aspect-ratio: 16/10;
    object-fit: cover;
    display: block;
    transition: transform 0.8s ease;
}

.featured-image-wrapper:hover img {
    transform: scale(1.02);
}

.back-to-blogs a {
    font-family: 'Jost', sans-serif;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s;
}

.back-to-blogs a:hover {
    color: var(--dzong-gold);
}

/* Main Article Reading Area */
.blog-detail-content {
    padding: 2rem 0 3rem;
    background-color: var(--valley-mist);
}

.blog-article-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.blog-article-text {
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    line-height: 1.9;
    color: #555;
    margin-bottom: 2rem;
    font-weight: 300;
}

/* Media Within Post */
.blog-article-image {
    width: 100%;
    margin: 4rem 0;
}

.blog-article-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

/* Typography Hierarchy Inside Post */
.blog-article-wrapper h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 28px;
    font-weight: 400;
    color: var(--mountain-dusk);
    margin-top: 4rem;
    margin-bottom: 1.5rem;
}

/* Custom Bulleted Lists */
.custom-bullet-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.custom-bullet-list li {
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    font-weight: 300;
    margin-bottom: 1rem;
    position: relative;
    padding-left: 30px;
}

.custom-bullet-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: #333;
    font-weight: 400;
}

/* Two Column Text Sections */
.blog-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin: 2rem 0;
}

@media (max-width: 768px) {
    .blog-two-col {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Footer Tag & Share Ecosystem */
.blog-bottom-meta {
    margin-top: 6rem;
    padding-top: 2.5rem;
    border-top: 1px solid #eaeaea;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.post-tags, .post-share {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-family: 'Jost', sans-serif;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #888;
}

.post-tags span {
    font-weight: 500;
    color: var(--mountain-dusk);
}

.post-tags a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s;
}

.post-tags a:hover {
    color: var(--dzong-gold);
}

.post-share span {
    font-weight: 500;
    color: var(--mountain-dusk);
}

.share-icons {
    display: flex;
    gap: 8px;
}

.share-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background-color: var(--mountain-dusk);
    color: white;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.share-icons a:hover {
    background-color: var(--dzong-gold);
    transform: translateY(-2px);
}

.share-icons svg {
    width: 12px;
    height: 12px;
    fill: currentColor;
}


