/* =====================================================
   News List Layout
===================================================== */

.kf-news {
    padding: 120px 0;
    background: #f6f4ef;
}

.kf-news__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;

    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 64px;
}

/* =====================================================
   Side Category
===================================================== */

.kf-news__side {
    position: relative;
}

.kf-news__category {
    list-style: none;
    padding: 0;
    margin: 0;

    position: sticky;
    top: 120px;
}

.kf-news__category li {
    margin-bottom: 12px;
}

.kf-news__category a {
    display: block;
    padding: 14px 18px;
    font-size: 14px;
    letter-spacing: 0.08em;
    text-decoration: none;

    color: #333;
    background: #fff;
    border: 1px solid #ddd;
    transition: all 0.25s ease;
}

.kf-news__category li.is-active a,
.kf-news__category a:hover {
    background: #b8ab8a;
    color: #fff;
    border-color: #b8ab8a;
}

/* =====================================================
   Main Area
===================================================== */

.kf-news__title {
    font-size: 36px;
    letter-spacing: 0.08em;
    font-weight: 500;
    margin-bottom: 8px;
    color: #b8ab8a;
}

.kf-news__sub {
    font-size: 14px;
    margin-bottom: 48px;
    color: #555;
}

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

.kf-latest-news__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.kf-latest-news__item {
    display: grid;
    grid-template-columns: 110px 120px 1fr;
    gap: 16px;
    align-items: center;

    padding: 20px 0;
    border-bottom: 1px solid #ddd;
}

.kf-latest-news__item:first-child {
    border-top: 1px solid #ddd;
}

.kf-latest-news__date {
    font-size: 13px;
    color: #666;
    letter-spacing: 0.04em;
}

.kf-latest-news__label {
    display: inline-block;
    width: fit-content;
    padding: 6px 12px;
    font-size: 12px;
    letter-spacing: 0.04em;

    background: #b8ab8a;
    color: #fff;
}

/* カテゴリー別色分け（任意） */
.category-campaign .kf-latest-news__label {
    background: #a08f6a;
}

.kf-latest-news__link {
    font-size: 15px;
    color: #333;
    text-decoration: none;
    line-height: 1.6;
}

.kf-latest-news__link:hover {
    text-decoration: underline;
}

/* =====================================================
   Responsive
===================================================== */

@media (max-width: 900px) {

    .kf-news__inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .kf-news__category {
        display: flex;
        gap: 12px;
        position: static;
    }

    .kf-news__category li {
        margin-bottom: 0;
    }

    .kf-latest-news__item {
        grid-template-columns: 90px 1fr;
        gap: 12px;
    }

    .kf-latest-news__label {
        grid-column: 1 / -1;
    }
}

@media (max-width: 480px) {

    .kf-news {
        padding: 80px 0;
    }

    .kf-news__title {
        font-size: 28px;
    }

    .kf-latest-news__link {
        font-size: 14px;
    }
}