/* Breadcrumbs */
.breadcrumbs {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 20px 0;
    font-size: 14px;
}

.breadcrumb-link {
    color: var(--gray-600);
    text-decoration: none;
    transition: color 0.2s ease;
}

.breadcrumb-link:hover {
    color: var(--primary-blue);
}

.breadcrumb-separator {
    color: var(--gray-400);
}

.breadcrumb-current {
    color: var(--gray-900);
    font-weight: 500;
}

/* News Article */
.news-article {
    background-color: var(--white);
    border-radius: 12px;
    padding: 48px;
    margin-bottom: 48px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.news-article-header {
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 2px solid var(--gray-100);
}

.news-article-meta {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 16px;
}

.news-article-date,
.news-article-category {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: var(--gray-600);
}

.meta-icon {
    width: 18px;
    height: 18px;
    color: var(--primary-blue);
}

.news-article-category {
    color: var(--primary-blue);
    font-weight: 600;
}

.news-article-title {
    font-size: 36px;
    color: var(--gray-900);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 16px;
}

.news-article-author {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--gray-600);
}

.author-icon {
    width: 20px;
    height: 20px;
    color: var(--gray-500);
}

/* News Article Image */
.news-article-image {
    margin-bottom: 32px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

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

/* News Article Content */
.news-article-content {
    font-size: 17px;
    line-height: 1.8;
    color: var(--gray-700);
    margin-bottom: 40px;
}

.news-article-content p {
    margin-bottom: 20px;
}

.news-article-content h2 {
    font-size: 28px;
    color: var(--gray-900);
    margin-top: 32px;
    margin-bottom: 16px;
    font-weight: 600;
}

.news-article-content h3 {
    font-size: 22px;
    color: var(--gray-900);
    margin-top: 24px;
    margin-bottom: 12px;
    font-weight: 600;
}

.news-article-content ul,
.news-article-content ol {
    margin-bottom: 20px;
    padding-left: 24px;
}

.news-article-content li {
    margin-bottom: 8px;
}

.news-article-content blockquote {
    border-left: 4px solid var(--primary-blue);
    padding-left: 20px;
    margin: 24px 0;
    font-style: italic;
    color: var(--gray-600);
}

/* Attachments */
.news-article-attachments {
    background-color: var(--gray-50);
    padding: 24px;
    border-radius: 8px;
    margin-bottom: 32px;
}

.attachments-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 18px;
    color: var(--gray-900);
    margin-bottom: 16px;
    font-weight: 600;
}

.attachment-icon {
    width: 22px;
    height: 22px;
    color: var(--primary-blue);
}

.attachments-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.attachment-item {
    background-color: var(--white);
    border-radius: 6px;
    transition: all 0.2s ease;
}

.attachment-item:hover {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.attachment-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    text-decoration: none;
    color: var(--gray-700);
    transition: all 0.2s ease;
}

.attachment-link:hover {
    color: var(--primary-blue);
}

.file-icon {
    width: 24px;
    height: 24px;
    color: var(--primary-blue);
}

/* Article Footer */
.news-article-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 32px;
    border-top: 2px solid var(--gray-100);
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.2s ease;
}

.back-link:hover {
    gap: 12px;
    color: var(--dark-blue);
}

.back-icon {
    width: 20px;
    height: 20px;
}

.share-buttons {
    display: flex;
    align-items: center;
    gap: 12px;
}

.share-text {
    font-size: 14px;
    color: var(--gray-600);
    font-weight: 500;
}

.share-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background-color: var(--gray-100);
    color: var(--gray-600);
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.share-btn:hover {
    background-color: var(--primary-blue);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 86, 160, 0.3);
}

.share-icon {
    width: 18px;
    height: 18px;
}

/* Related News */
.related-news {
    margin-bottom: 48px;
}

.related-news-title {
    font-size: 28px;
    color: var(--gray-900);
    font-weight: 700;
    margin-bottom: 24px;
}

.related-news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
}

.related-news-card {
    background-color: var(--white);
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.related-news-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    border-color: var(--light-blue);
}

.related-news-date {
    display: block;
    font-size: 13px;
    color: var(--gray-600);
    margin-bottom: 8px;
}

.related-news-title-text {
    font-size: 18px;
    color: var(--gray-900);
    margin-bottom: 12px;
    font-weight: 600;
    line-height: 1.4;
}

.related-news-excerpt {
    font-size: 14px;
    color: var(--gray-600);
    margin-bottom: 16px;
    line-height: 1.6;
}

.related-news-link {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    transition: all 0.2s ease;
}

.related-news-link:hover {
    gap: 8px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .news-article {
        padding: 24px;
    }

    .news-article-title {
        font-size: 28px;
    }

    .news-article-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .news-article-content {
        font-size: 16px;
    }

    .news-article-footer {
        flex-direction: column;
        gap: 24px;
        align-items: flex-start;
    }

    .share-buttons {
        width: 100%;
        justify-content: space-between;
    }

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

    .breadcrumbs {
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    .news-article {
        padding: 20px;
    }

    .news-article-title {
        font-size: 24px;
    }

    .news-article-content {
        font-size: 15px;
    }

    .share-btn {
        width: 36px;
        height: 36px;
    }

    .share-icon {
        width: 16px;
        height: 16px;
    }
}