@charset "UTF-8";

/* News Page Specific Styles */

.news-page-section {
    padding: 60px 0 100px;
    background-color: #f9f9f9;
    /* Keep main background consistent with top page section if desired, or white? Usually list pages are simple */
}

/* Reusing .news-list from style.css but ensuring it looks good on a full page */
.news-list {
    margin-bottom: 60px;
}

/* Pagination Styles */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.page-link {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #fff;
    color: #333;
    font-weight: bold;
    text-decoration: none;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.page-link:hover {
    background-color: #eee;
    transform: translateY(-2px);
}

.page-link.active {
    background-color: #e65c5c;
    /* Red accent matching buttons */
    color: #fff;
    pointer-events: none;
}

.page-dots {
    font-weight: bold;
    color: #999;
    padding: 0 5px;
}

.page-link.next {
    font-family: monospace;
    /* simplified arrow font */
}

/* Responsive */
@media (max-width: 768px) {
    .news-list li {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        padding: 20px;
        border-radius: 20px;
    }
}

/* News Detail Styles */
.news-detail-section {
    padding: 60px 0 100px;
    background-color: #f9f9f9;
}

.news-article {
    max-width: 1000px;
    margin: 0 auto;
    background-color: #fff;
    padding: 60px;
    border-radius: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.article-header {
    border-bottom: 2px solid #eee;
    padding-bottom: 30px;
    margin-bottom: 40px;
}

.article-date {
    display: block;
    font-weight: bold;
    color: #666;
    margin-bottom: 15px;
    font-size: 16px;
}

.article-title {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.4;
}

.article-content {
    font-size: 16px;
    line-height: 1.8;
}

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

.article-content h2 {
    font-size: 24px;
    font-weight: 700;
    background-color: #fff4f4;
    /* Pale pink background */
    border-left: 6px solid #e65c5c;
    /* Accent red */
    padding: 15px 20px;
    margin-top: 50px;
    margin-bottom: 30px;
    border-radius: 0 5px 5px 0;
}

.article-content h3 {
    font-size: 20px;
    font-weight: 700;
    border-left: none;
    /* Reset distinct style */
    border-bottom: 2px dashed #e65c5c;
    /* Dashed underline */
    padding: 5px 5px 10px;
    margin-top: 40px;
    margin-bottom: 20px;
}

/* Gray Button for Back */
.btn-more.gray {
    background-color: #999;
}

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

    .article-title {
        font-size: 22px;
    }
}