﻿.blog-detail-hero {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 120px 0 60px;
    margin-top: 70px;
    text-align: center;
}

.blog-detail-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #333;
}

.article-meta {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
    color: #666;
    font-size: 1rem;
}

    .article-meta span {
        display: flex;
        align-items: center;
        gap: 5px;
    }

.article-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    margin: 30px 0;
}

.article-content {
    max-width: 800px;
    margin: 0 auto 50px;
    line-height: 1.8;
    font-size: 1.1rem;
    color: #444;
}

    .article-content h2 {
        font-size: 1.8rem;
        margin: 30px 0 20px;
        color: #333;
    }

    .article-content h3 {
        font-size: 1.5rem;
        margin: 25px 0 15px;
        color: #333;
    }

    .article-content p {
        margin-bottom: 20px;
        line-height: 1.8;
    }

    .article-content ul,
    .article-content ol {
        margin: 20px 0 20px 30px;
    }

    .article-content li {
        margin-bottom: 10px;
    }

    .article-content blockquote {
        border-left: 4px solid #fa8c16;
        padding: 20px;
        background: #f8f9fa;
        margin: 30px 0;
        border-radius: 0 8px 8px 0;
        font-style: italic;
    }

.article-tags {
    display: flex;
    gap: 10px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.tag {
    background: #f0f0f0;
    color: #666;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
}

.social-share {
    display: flex;
    gap: 15px;
    margin: 40px 0;
    justify-content: center;
}

.share-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

    .share-btn:hover {
        transform: translateY(-3px);
    }

.share-facebook {
    background: #3b5998;
}

.share-twitter {
    background: #1da1f2;
}

.share-linkedin {
    background: #0077b5;
}

.share-reddit {
    background: #ff4500;
}

.related-articles {
    margin: 60px 0 40px;
}

    .related-articles .section-title {
        text-align: center;
        margin-bottom: 40px;
        font-size: 1.8rem;
        color: #333;
    }

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.article-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

    .article-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    }

.article-card-image {
    height: 180px;
    position: relative;
}

    .article-card-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.article-card-category {
    position: absolute;
    top: 16px;
    left: 16px;
    background: #fa8c16;
    color: #fff;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
}

.article-card-content {
    padding: 24px;
}

.article-card-meta {
    display: flex;
    gap: 16px;
    margin-bottom: 12px;
}

    .article-card-meta .date {
        color: #666;
        font-size: 14px;
    }

.article-card-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: #333;
    line-height: 1.4;
}

.article-card-excerpt {
    color: #666;
    line-height: 1.6;
    margin-bottom: 16px;
    font-size: 0.95rem;
}

.read-more-link {
    color: #fa8c16;
    font-weight: 500;
    text-decoration: none;
}

    .read-more-link:hover {
        text-decoration: underline;
    }

@media (max-width: 768px) {
    .blog-detail-title {
        font-size: 2rem;
    }

    .article-image {
        height: 250px;
    }

    .article-meta {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }
}
