/* moved to assets/css/column.css (column archive styles) */
/* --- News Feature Final --- */

/* Base Layout */
/* main-contentのpadding-topは削除（page-headerがmargin-topを持っているため） */
/* page-header は main.css の共通定義を使用（ここでは定義しない） */
.news-list-section {
    padding: 50px 0;
    background: #f8f9fa;
}
.page-content {
    padding: 40px 0 60px;
}

/* Archive List Styles */
.news-list { display: flex; flex-direction: column; }
.news-item {
    background: #fff;
    padding: 30px;
    border-bottom: 1px solid #e9ecef;
    text-decoration: none;
    color: inherit;
    transition: all 0.2s ease-in-out;
}
.news-item:hover { transform: translateY(-3px); box-shadow: 0 8px 20px rgba(0,0,0,0.08); }
.news-meta { display: flex; align-items: center; gap: 15px; margin-bottom: 10px; font-size: 0.9rem; }
.news-date { color: #6c757d; }
.news-category { background: #275d46; color: #fff; border-radius: 99px; padding: 4px 12px; font-size: 0.75rem; }
.news-title { font-size: 1.2rem; font-weight: 600; margin-bottom: 8px; }
.news-excerpt { color: #6c757d; }

/* Single Page Content Styles */
.article-meta {
    margin-bottom: 30px;
    font-size: 0.9rem;
    color: #6c757d;
}
.news-category-badge {
    background: #275d46;
    color: #fff;
    padding: 4px 12px;
    border-radius: 99px;
    margin-left: 10px;
}

/* High-specificity content styles */
.news-article-wrapper .article-content h2 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #022b22;
    margin: 40px 0 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #569578;
}
.news-article-wrapper .article-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #275d46;
    margin: 30px 0 15px;
}
.news-article-wrapper .article-content p {
    margin-bottom: 20px;
    line-height: 1.8;
}
.news-article-wrapper .article-content img {
    max-width: 100%;
    height: auto;
    margin: 30px 0;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}
.news-article-wrapper .article-content ul,
.news-article-wrapper .article-content ol {
    margin: 20px 0 20px 30px;
}
.news-article-wrapper .article-content li {
    margin-bottom: 10px;
}
.news-article-wrapper .article-content blockquote {
    margin: 30px 0;
    padding: 20px 30px;
    background: #f8f9fa;
    border-left: 4px solid #569578;
}

.back-to-list {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid #e9ecef;
    text-align: center;
}
.back-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #275d46;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}
.back-link:hover { color: #569578; }
