.news-list {
    width: 100%;
}

/* 偶数行 */
.news-item:nth-child(even) {
    background-color: #f9f9f9;
}

/* 奇数行 */
.news-item:nth-child(odd) {
    background-color: #ffffff;
}

/* 余白調整（背景を見せるため） */
.news-item {
    padding: 12px 10px;
}

.news-item:hover {
    background-color: #eef4ff;
}

.news-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 10px 0;
    border-bottom: 1px solid #ddd;
    white-space: nowrap; /* 改行させない */
}

/* 投稿日（固定幅） */
.news-date {
    width: 90px;              /* ← 固定 */
    flex-shrink: 0;
    font-size: 0.9rem;
    color: #666;
    text-align: center;
}

/* タイトル（最大幅固定） */
.news-title {
    width: 350px;              /* ← 固定 */
    flex-shrink: 0;
    overflow: hidden;
    text-overflow: ellipsis;
}

.news-title a {
    color: #333;
    text-decoration: none;
}

.news-title a:hover {
    text-decoration: underline;
}

/* 要約（残り幅を使用） */
.news-excerpt {
    flex: 1;                   /* ← 可変 */
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 0.9rem;
    color: #555;
}

/* アイキャッチ（固定幅） */
.news-thumb {
    width: 60px;
    flex-shrink: 0;
}

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