
/* ============================
   NEWS一覧
============================ */
.news-archive__list {
    display: flex;
    flex-direction: column;
    gap: clamp(2rem, 1.5rem + 2vw, 3rem);
    margin-top: 2rem;
}

.news-card {
    display: block;
    border-radius: 16px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    text-decoration: none;
    color: inherit;
}

.news-card__link {
    display: flex;
    align-items: center;
    gap: clamp(1.5rem, 1vw + 1rem, 2.5rem);
    padding: clamp(1rem, 0.8rem + 1vw, 2rem);
}

.news-card__thumb {
    flex-shrink: 0;
    width: clamp(10rem, 6rem + 15vw, 16rem);
    aspect-ratio: 4 / 3;
    border-radius: 12px;
    overflow: hidden;
}

.news-card__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-card__body {
    text-align: left;
    flex: 1;
    min-width: 0;
}

.news-card__date {
    font-size: 0.875rem;
    color: #888;
    margin: 0 0 1rem 0;
}

/* 記事タイトル */
.news-card__title {
    font-size: clamp(1.1rem, 1vw + 0.9rem, 1.5rem);
    line-height: 1.3;
    margin: 0 0 0.8rem 0;
}

.news-card__divider {
    width: 100%;
    height: 1px;
    background: #e5e5e5;
    margin-bottom: 0.8rem;
}

/* 本文抜粋 */
.news-card__excerpt {
    font-size: 0.9rem;
    line-height: 1.7;
    color: #555;
    margin: 0;
    overflow-wrap: break-word;
    word-break: break-word;
}

@media screen and (max-width: 768px) {
    .news-card__link {
        flex-direction: column;
        align-items: flex-start;
    }

    /* .news-card__divider {
        display: none;
    } */

    .news-card__thumb {
        width: 100%;
    }

    .news-card__body {
        width: 100%;
    }
}

/* ============================
   ニュース一覧ページ:ホバー効果を無効化
============================ */
.news-archive a:hover,
.news-archive button:hover,
.news-archive a img:hover,
.news-archive button img:hover {
    transform: none;
}