/* =========================================
    News
========================================= */

.news {
    padding: 60px 0;
}

/* リスト */
.news_list {
    border-top: 1px solid var(--border);
}

/* アイテム */
.news_item {
    border-bottom: 1px solid var(--border);
}

/* リンク */
.news_link {
    display: flex;
    flex-direction: column;
    gap: 12px;

    padding: 24px 0;

    text-decoration: none;

    transition:
        background 0.3s ease,
        transform 0.3s ease;
}

.news_link:hover {
    background: rgba(56, 189, 248, 0.04);
}

/* 日付 */
.news_date {
    font-size: 13px;
    font-weight: 700;

    color: var(--text-sub);
}

/* カテゴリ */
.news_category {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 84px;
    height: 28px;

    font-size: 12px;
    font-weight: 700;

    color: var(--primary);

    background: #eef6fc;

    padding: 0 12px;

    border-radius: 999px;
}

/* タイトル */
.news_title {
    font-size: 15px;
    font-weight: 700;

    line-height: 1.8;

    color: var(--text-main);
}

/* =========================================
    PC
========================================= */

@media (min-width: 1024px) {

    .news_link {
        flex-direction: row;
        align-items: center;

        gap: 32px;

        padding: 28px 12px;
    }

    .news_date {
        width: 120px;

        flex-shrink: 0;
    }

    .news_category {
        flex-shrink: 0;
    }

    .news_title {
        font-size: 17px;
    }

}