/* Article Detail Section */
.article-detail-section {
    padding: 80px 0;
    background: #f9fafb;
}

.article-detail-content {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    border-radius: 12px;
    padding: 3rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.article-meta-bar {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid #f3f4f6;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #6b7280;
    font-weight: 500;
    font-size: 0.95rem;
}

.meta-item svg {
    stroke: #9ca3af;
}

.article-featured-image {
    margin-bottom: 3rem;
    border-radius: 12px;
    overflow: hidden;
}

.article-featured-image img {
    width: 100%;
    height: auto;
    display: block;
}

.article-prose {
    color: #374151;
    line-height: 1.8;
    font-size: 1.0625rem;
}

.article-prose h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #111827;
    margin: 2.5rem 0 1.25rem;
}

.article-prose h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #374151;
    margin: 2rem 0 1rem;
}

.article-prose p {
    margin-bottom: 1.5rem;
}

.article-prose ul,
.article-prose ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.article-prose li {
    margin-bottom: 0.75rem;
}

.article-prose a {
    color: #f59e0b;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.article-prose a:hover {
    color: #d97706;
}

.article-prose img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 2rem 0;
}

.article-share {
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 2px solid #f3f4f6;
}

.article-share h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1.5rem;
}

.share-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.share-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    text-decoration: none;
    border: none;
    cursor: pointer;
}

.share-facebook {
    background: #1877f2;
    color: white;
}

.share-facebook:hover {
    background: #145dbf;
}

.share-twitter {
    background: #1da1f2;
    color: white;
}

.share-twitter:hover {
    background: #1a8cd8;
}

.share-linkedin {
    background: #0077b5;
    color: white;
}

.share-linkedin:hover {
    background: #006399;
}

.share-copy {
    background: #6b7280;
    color: white;
}

.share-copy:hover {
    background: #4b5563;
}

.article-back {
    margin-top: 3rem;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1.75rem;
    background: white;
    color: #f59e0b;
    border: 2px solid #f59e0b;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: #f59e0b;
    color: white;
}

/* Related Articles Section */
.related-articles-section {
    padding: 80px 0;
    background: white;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #111827;
    text-align: center;
    margin-bottom: 3rem;
}

.related-articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.related-article-card {
    background: #f9fafb;
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    display: block;
}

.related-article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.related-article-image {
    height: 200px;
    overflow: hidden;
    background: white;
}

.related-article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.related-article-card:hover .related-article-image img {
    transform: scale(1.1);
}

.related-article-content {
    padding: 1.5rem;
}

.related-article-date {
    display: inline-block;
    background: #f59e0b;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.related-article-content h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.75rem;
    transition: color 0.3s ease;
}

.related-article-card:hover .related-article-content h3 {
    color: #f59e0b;
}

.related-article-content p {
    color: #6b7280;
    font-size: 0.9rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .article-detail-section {
        padding: 60px 0;
    }

    .article-detail-content {
        padding: 2rem 1.5rem;
    }

    .article-meta-bar {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }

    .article-prose {
        font-size: 1rem;
    }

    .article-prose h2 {
        font-size: 1.5rem;
    }

    .article-prose h3 {
        font-size: 1.25rem;
    }

    .share-buttons {
        flex-direction: column;
    }

    .share-btn {
        width: 100%;
        justify-content: center;
    }

    .related-articles-section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 2rem;
    }

    .related-articles-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .article-detail-section {
        padding: 50px 0;
    }

    .article-header {
        padding: 2rem 1rem;
    }

    .article-title {
        font-size: 1.75rem;
        line-height: 1.3;
    }

    .article-meta-bar {
        gap: 1rem;
    }

    .article-meta-item {
        font-size: 0.8125rem;
    }

    .article-prose {
        padding: 1.5rem 1rem;
        font-size: 0.9375rem;
    }

    .article-prose h2 {
        font-size: 1.375rem;
    }

    .article-prose h3 {
        font-size: 1.125rem;
    }

    .article-share {
        padding: 1.25rem 1rem;
    }

    .article-share h4 {
        font-size: 1rem;
    }

    .share-buttons {
        flex-wrap: wrap;
        gap: 0.625rem;
    }

    .share-buttons a {
        padding: 0.625rem 1rem;
        font-size: 0.875rem;
    }

    .related-articles-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
}
