/* for news.html */

.news-list-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
    color: #333;
    background: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.news-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.news-item {
    display: flex;
    align-items: center;
    padding: 25px 15px;
    border-bottom: 1px solid #e0e0e0;
}

.news-item-date {
    flex-shrink: 0;
    margin-right: 30px;
    font-weight: 600;
    color: #555;
    letter-spacing: 0.5px;
}

.news-item-title {
    flex-grow: 1;
    line-height: 1.6;
}

/* --- Responsive (SP) --- */
@media (max-width: 450px) {
    .news-list-container {
        padding: 20px;
    }

    .news-item {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px 15px;
    }

    .news-item-date {
        margin-right: 0;
        margin-bottom: 8px;
        font-size: 14px;
    }

    .news-item-title {
        font-size: 15px;
    }
}
