/* Blog Detail Container */
.blog-detail-container {
    background: #ffffff;
    min-height: 100vh;
    position: relative;
}

/* Article Hero Section */
.article-hero {
    position: relative;
    height: 500px;
    margin-bottom: 60px;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0,0,0,0.8) 0%, rgba(165,165,165,0.3) 100%);
}

.hero-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 60px 80px;
    color: white;
    z-index: 2;
}

.article-category {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.article-title {
    font-size: 35px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    font-family: "Michroma", sans-serif;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 10px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
}

.meta-item i {
    font-size: 1.1rem;
}

/* Article Content */
.article-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px 80px;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
}

/* Main Article */
.article-main {
    background: white;
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 10px 30px rgba(165, 165, 165, 0.1);
}



/* Content Sections */
.content-section {
    margin-bottom: 50px;
}

.section-title {
    font-size: 1.8rem;
    color: black;
    margin-bottom: 25px;
    font-family: "Michroma", sans-serif;
    font-weight: 600;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: #a5a5a5;
}

.content-text {
    color: #444;
    line-height: 1.8;
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.content-image {
    width: 100%;
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
    margin: 30px 0;
}

.content-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.content-image:hover img {
    transform: scale(1.05);
}

/* Quote Block */
.quote-block {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 15px;
    margin: 40px 0;
    border-left: 5px solid #a5a5a5;
}

.quote-text {
    font-size: 1.4rem;
    color: #333;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 20px;
    font-weight: 300;
}

.quote-author {
    color: #a5a5a5;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Author Section */
.author-section {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 20px;
    margin-top: 60px;
    text-align: center;
    border: 1px solid rgba(165, 165, 165, 0.1);
}

.author-avatar-large {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, #a5a5a5 0%, #000 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 2rem;
    margin: 0 auto 25px;
    box-shadow: 0 10px 25px rgba(165, 165, 165, 0.3);
}

.author-name-large {
    font-size: 1.5rem;
    color: black;
    margin-bottom: 10px;
    font-family: "Michroma", sans-serif;
}

.author-role {
    color: #a5a5a5;
    font-size: 1rem;
    margin-bottom: 20px;
}

.author-bio {
    color: #666;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto 25px;
}

.author-social {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #a5a5a5;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(165, 165, 165, 0.2);
}

.social-link:hover {
    background: #a5a5a5;
    color: white;
    transform: translateY(-3px);
}

/* Sidebar */
.article-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}




/* Related Articles */
.related-widget {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(165, 165, 165, 0.1);
    border: 1px solid rgba(165, 165, 165, 0.1);
}

.related-article {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(165, 165, 165, 0.1);
}

.related-article:last-child {
    border-bottom: none;
}

.related-image {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
}

.related-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.related-content h4 {
    font-size: 1rem;
    color: black;
    margin-bottom: 5px;
    font-family: "Michroma", sans-serif;
}

.related-meta {
    color: #a5a5a5;
    font-size: 0.85rem;
}

/* Responsive */
@media (max-width: 1200px) {
    .article-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 30px 60px;
    }
    
    .article-sidebar {
        position: static;
    }
}

@media (max-width: 768px) {
    .article-hero {
        height: 400px;
    }
    
    .hero-content {
        padding: 40px 30px;
    }
    
    .article-title {
        font-size: 2.5rem;
    }
    
    .article-main {
        padding: 30px;
    }

    
    .article-wrapper {
        padding: 0 20px 40px;
    }
}

@media (max-width: 480px) {
    .article-hero {
        height: 300px;
    }
    
    .article-title {
        font-size: 2rem;
    }
    
    .hero-content {
        padding: 30px 20px;
    }
    
    .article-meta {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
    
    .article-main {
        padding: 20px;
    }
    
    .share-buttons {
        flex-direction: column;
    }
}