.news-page {
    background: #faf8f5;
    color: #4a423f;
}

.news-hero {
    position: relative;
    min-height: 56svh;
    display: flex;
    align-items: center;
    overflow: hidden;
    isolation: isolate;
}

.news-hero__media {
    position: absolute;
    inset: 0;
    z-index: -2;
}

.news-hero__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(90deg, rgba(250, 248, 245, 0.94) 0%, rgba(250, 248, 245, 0.76) 48%, rgba(250, 248, 245, 0.42) 100%),
        linear-gradient(180deg, rgba(250, 248, 245, 0.15) 0%, rgba(250, 248, 245, 0.88) 100%);
}

.news-hero__inner {
    width: min(1120px, calc(100% - 48px));
    margin: 0 auto;
    padding-top: 72px;
}

.news-eyebrow {
    margin: 0 0 14px;
    color: #87a89a;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.news-hero h1 {
    margin: 0;
    font-family: "Noto Serif JP", serif;
    font-size: clamp(2rem, 5vw, 3.75rem);
    font-weight: 500;
    letter-spacing: 0.08em;
}

.news-hero p:not(.news-eyebrow) {
    max-width: 640px;
    margin: 24px 0 0;
    line-height: 2;
    font-size: 1rem;
}

.news-section {
    padding: 72px 0 96px;
}

.news-container {
    width: min(960px, calc(100% - 48px));
    margin: 0 auto;
}

.news-list {
    display: grid;
    gap: 24px;
}

.news-card,
.news-empty {
    border: 1px solid #ebe5d9;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 16px 42px rgba(74, 66, 63, 0.07);
}

.news-card {
    padding: 28px;
}

.news-card time {
    display: block;
    color: #8c817d;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.18em;
}

.news-card h2 {
    margin: 12px 0 0;
    font-family: "Noto Serif JP", serif;
    font-size: 1.28rem;
    font-weight: 500;
    line-height: 1.8;
}

.news-card p {
    margin: 18px 0 0;
    color: rgba(74, 66, 63, 0.82);
    line-height: 2;
}

.news-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.75rem;
    margin-top: 22px;
    padding: 0.72rem 1.15rem;
    border: 1px solid rgba(135, 168, 154, 0.85);
    border-radius: 9999px;
    background: #ffffff;
    color: #4a423f;
    font-size: 0.92rem;
    font-weight: 700;
    text-decoration: none;
    transition: background-color 0.25s ease, transform 0.25s ease;
}

.news-link:hover,
.news-link:focus-visible {
    background: rgba(216, 226, 223, 0.52);
    transform: translateY(-1px);
}

.news-empty {
    padding: 32px;
    text-align: center;
    color: #8c817d;
}

@media (max-width: 767px) {
    .news-hero {
        min-height: 48svh;
    }

    .news-hero__inner,
    .news-container {
        width: min(100% - 32px, 960px);
    }

    .news-card {
        padding: 22px 18px;
    }
}
