.news-page {
    background: #f8f4ee;
    padding: 0 0 2.625rem;
    color: #000;
}

.news-box-container {
    max-width: var(--site-max-width, 1440px);
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: max(var(--site-px, 0px), env(safe-area-inset-left, 0px));
    padding-right: max(var(--site-px, 0px), env(safe-area-inset-right, 0px));
}

.news-head {
    margin: 0 auto 2.5rem;
    text-align: center;
    border-bottom: 1px solid #ddd4c8;
    padding-top: clamp(3rem, 6vw, 4.25rem);
    padding-bottom: 0.5%;
}

.news-head h1 {
    margin: 0;
    font-size: 2.5rem;
    font-family: var(--pd-font-brand);
    font-weight: 500;
}

.news-head p {
    margin: 0.5rem 0 0;
    font-size: 0.875rem;
    font-family: var(--pd-font-body);
    font-weight: 400;
    color: #6f6a63;
}

.news-tabs {
    display: inline-flex;
    gap: 1.375rem;
    margin-top: clamp(1.5rem, 3.2vw, 2.25rem);
}

.news-tabs a {
    font-size: 0.75rem;
    font-family: var(--pd-font-body);
    font-weight: 500;
    color: #8b847b;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding-bottom: 0.25rem;
}

.news-tabs a.active {
    color: #000;
    border-bottom: 1px solid #000;
}

.news-featured {
    margin: 0 auto 2.75rem;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
    gap: 2.25rem;
    align-items: center;
}

.news-featured img {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    display: block;
}

.news-featured a {
    display: block;
}

.news-featured-content .news-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #d4cfc5;
    color: #d4cfc5;
    font-size: 0.625rem;
    font-family: var(--pd-font-body);
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.32rem 0.6rem;
    margin-bottom: 1rem;
}

.news-featured-content h2 {
    margin: 0 0 0.85rem;
    font-size: 2rem;
    font-family: var(--pd-font-brand);
    font-weight: 500;
    line-height: 1.2;
}

.news-featured-content h2 a {
    color: #000;
}

.news-featured-content p {
    margin: 0 0 0.85rem;
    font-size: 0.875rem;
    font-family: var(--pd-font-body);
    font-weight: 400;
    line-height: 1.5;
}

.news-featured-content small {
    font-size: 0.8125rem;
    font-family: var(--pd-font-body);
    font-weight: 400;
    color: #8b847b;
}

.news-grid {
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 1.5rem;
    row-gap: 3rem;
}

.news-card img {
    width: 100%;
    height: auto;
    aspect-ratio: 357 / 268;
    object-fit: cover;
    display: block;
    margin-bottom: 0.5rem;
}

.news-card span {
    font-size: 0.75rem;
    font-family: var(--pd-font-body);
    font-weight: 400;
    color: #8b847b;
    letter-spacing: 0.08em;
}

.news-card h3 {
    margin: 0.25rem 0;
    font-size: 1.5rem;
    font-family: var(--pd-font-body);
    font-weight: 500;
}

.news-card h3 a {
    color: #000;
}

.news-card small {
    font-size: 0.9rem;
    font-family: var(--pd-font-body);
    font-weight: 400;
    color: #8b847b;
}

.news-pagination {
    margin-top: 1.75rem;
    display: flex;
    justify-content: center;
    gap: 1.125rem;
}

.news-pagination a {
    font-size: 0.875rem;
    color: #000;
}

.news-pagination a.active {
    border-bottom: 1px solid #000;
}

@media (max-width: 64rem) {
    .news-featured {
        grid-template-columns: 1fr;
    }

    .news-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 48rem) {
    .news-page {
        padding: 0 0 2rem;
    }

    .news-head h1 {
        font-size: 1.75rem;
    }

    .news-head p {
        font-size: 0.8125rem;
    }

    .news-tabs {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.75rem 1rem;
    }

    .news-featured img {
        height: auto;
        min-height: 12rem;
        max-height: 18rem;
    }

    .news-featured-content h2 {
        font-size: 1.375rem;
    }

    .news-grid {
        grid-template-columns: 1fr;
        row-gap: 2.25rem;
        column-gap: 1rem;
    }

    .news-card img {
        height: auto;
    }

    .news-pagination {
        flex-wrap: wrap;
        gap: 0.75rem;
    }
}

@media (max-width: 36rem) {
    .news-head {
        margin-bottom: 1rem;
        padding-top: clamp(2rem, 8vw, 2.5rem);
        padding-bottom: clamp(2rem, 8vw, 2.5rem);
    }

    .news-head h1 {
        font-size: 1.5rem;
    }

    .news-featured-content h2 {
        font-size: 1.1875rem;
    }
}
