/* --- ニュース一覧用スタイル --- */
.news-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

.news-item {
    padding: 0;
    background: #fdfdfd;
    border-radius: 15px;
    border: 1px solid var(--card-border);
    transition: all 0.3s ease;
    overflow: hidden;
}

.news-item-link {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 25px;
    width: 100%;
    text-decoration: none;
    color: inherit;
}

.news-item:hover {
    background: #fffafa;
    border-color: var(--acc-color);
    box-shadow: 0 4px 15px rgba(255, 175, 145, 0.15);
    transform: translateY(-2px);
}

.news-date {
    font-size: 0.95rem;
    color: var(--text-muted);
    font-weight: 500;
    min-width: 110px;
    flex-shrink: 0;
}

.news-title {
    font-size: 1.05rem;
    color: var(--text-color);
    font-weight: 600;
    text-decoration: none;
    line-height: 1.5;
    transition: color 0.3s ease;
}

.news-item:hover .news-title {
    color: var(--acc-color);
}

/* レスポンシブ (スマホ表示時も優しく) */
@media (max-width: 600px) {

    /* ニュース一覧スマホ調整 */
    .news-item-link {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }

    .news-date {
        min-width: auto;
        font-size: 0.85rem;
    }
}