/* Corporate Professional Blog Style */
.blog-detail-hero {
    background: #1a1a2e;
    padding: 50px 0 25px;
    text-align: left;
    color: white;
    margin: 0;
    border-bottom: 4px solid #0099AC;
}

.blog-detail-hero-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 30px;
}

.blog-detail-hero h1 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    color: white;
}

.blog-detail-meta {
    justify-content: center;
    gap: 20px;
    margin-bottom: 15px;
    flex-wrap: wrap;
    display: flex;
    align-items: center;
}

.blog-detail-date {
    color: #ccc;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Additional Tags */
.blog-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 15px;
}

.blog-tag {
    background: rgba(255,255,255,0.1);
    color: white;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.65rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    border: 1px solid rgba(255,255,255,0.3);
}

.blog-tag.primary {
    background: #0099AC;
    border: 1px solid #0099AC;
    border-radius: 20px;
    font-size: 0.65rem;
}

.blog-tag.secondary {
    background: rgba(0,153,172,0.2);
    color: #0099AC;
    border: 1px solid #0099AC;
    border-radius: 20px;
    font-size: 0.65rem;
}

.blog-detail-content {
    padding: 40px 0;
    background: white;
    margin: 0;
}

.blog-detail-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 30px;
}

.blog-detail-text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #333;
    background: white;
    padding: 0;
    margin: 0;
    border: none;
    box-shadow: none;
}

.blog-detail-text h2 {
    color: #1a1a2e;
    font-size: 1.1rem;
    font-weight: 700;
    margin: 30px 0 15px;
    border-bottom: 2px solid #0099AC;
    padding-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-detail-text p {
    margin-bottom: 18px;
    color: #444;
    font-size: 0.95rem;
}

.blog-detail-text ul {
    margin: 18px 0;
    padding-left: 25px;
}

.blog-detail-text li {
    margin-bottom: 8px;
    color: #444;
    font-size: 0.95rem;
}

.blog-detail-text blockquote {
    background: #f8f9fa;
    border-left: 4px solid #1a1a2e;
    padding: 20px;
    margin: 25px 0;
    font-size: 1rem;
    font-weight: 500;
    color: #1a1a2e;
    border-radius: 0 6px 6px 0;
}

.inline-image {
    margin: 25px 0;
    text-align: center;
}

.inline-image img {
    max-width: 100%;
    height: auto;
    border-radius: 6px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.12);
    border: 2px solid #e0e0e0;
}

.inline-image .image-caption {
    margin-top: 12px;
    font-size: 0.8rem;
    color: #666;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Related Posts */
.related-posts {
    padding: 80px 0;
    background: #f8f9fa;
}

.related-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.related-header {
    text-align: center;
    margin-bottom: 3rem;
}

.related-header h2 {
    font-size: 2.5rem;
    color: #24256A;
    margin-bottom: 1rem;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.related-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.related-card:hover {
    transform: translateY(-5px);
}

.related-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.related-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.related-content {
    padding: 1.5rem;
}

.related-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #24256A;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.related-excerpt {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.related-link {
    color: #0099AC;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
}

.related-link:hover {
    text-decoration: underline;
}

/* Share Section */
.share-section {
    padding: 2rem 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    margin: 3rem 0;
}

.share-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.share-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 8px;
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.share-btn.facebook {
    background: #1877f2;
}

.share-btn.instagram {
    background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
}

.share-btn.linkedin {
    background: #0077b5;
}

.share-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* Responsive Design */
@media (max-width: 768px) {
    .blog-detail-hero h1 {
        font-size: 1.8rem;
    }
    
    .blog-detail-meta {
        flex-direction: column;
        gap: 1rem;
    }
    
    .blog-detail-text {
        font-size: 0.9rem;
    }
    
    .blog-detail-text h2 {
        font-size: 1rem;
    }
    
    .related-grid {
        grid-template-columns: 1fr;
    }
}
