.news-index-page {
    --news-ink: #1d1c20;
    --news-muted: #67676d;
    --news-soft: #f4f4f5;
    color: var(--news-ink);
    background: #fff;
}

.news-index-page a {
    color: inherit;
    text-decoration: none;
}

.news-index-hero {
    padding: 105px max(44px, calc((100vw - 1380px) / 2 + 44px));
    display: grid;
    grid-template-columns: 1.4fr .6fr;
    align-items: end;
    gap: 70px;
    background: var(--news-soft);
}

.news-index-hero span {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .18em;
}

.news-index-hero h1 {
    margin: 18px 0 0;
    font-size: clamp(44px, 5vw, 72px);
    line-height: 1.04;
    letter-spacing: -.055em;
}

.news-index-hero p {
    max-width: 470px;
    margin: 0 0 8px;
    color: var(--news-muted);
    font-size: 15px;
    line-height: 1.75;
}

.news-index-list {
    max-width: 1380px;
    margin: 0 auto;
    padding: 90px 44px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px;
}

.news-card {
    min-width: 0;
    border: 1px solid #e4e4e6;
    border-radius: 20px;
    overflow: hidden;
    background: #fff;
    display: flex;
    flex-direction: column;
    transition: transform .25s ease, box-shadow .25s ease;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 45px rgba(25, 25, 30, .09);
}

.news-card-image {
    display: block;
    aspect-ratio: 1.48 / 1;
    overflow: hidden;
    background: #ececee;
}

.news-card-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
}

.news-card:hover .news-card-image img {
    transform: scale(1.025);
}

.news-card-body {
    padding: 26px;
    display: flex;
    flex: 1;
    flex-direction: column;
}

.news-card-body > span {
    color: var(--news-muted);
    font-size: 11px;
}

.news-card h2 {
    margin: 11px 0;
    height: calc(1.35em * 3);
    font-size: 22px;
    line-height: 1.35;
    letter-spacing: -.025em;
    overflow: hidden;
}

.news-card h2 a {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    line-clamp: 3;
}

.news-card p {
    height: calc(1.7em * 4);
    margin: 0;
    color: var(--news-muted);
    font-size: 13px;
    line-height: 1.7;
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    line-clamp: 4;
}

.news-card-link {
    margin-top: auto;
    padding-top: 22px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 750;
}

.news-card-link span {
    font-size: 16px;
}

.news-empty {
    grid-column: 1 / -1;
    padding: 80px 20px;
    text-align: center;
    border-radius: 20px;
    background: var(--news-soft);
}

.news-pagination {
    padding: 0 30px 90px;
    display: flex;
    justify-content: center;
}

@media (max-width: 900px) {
    .news-index-hero {
        grid-template-columns: 1fr;
        gap: 28px;
        padding-top: 80px;
        padding-bottom: 80px;
    }

    .news-index-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 600px) {
    .news-index-hero {
        padding: 64px 20px;
    }

    .news-index-hero h1 {
        font-size: 43px;
    }

    .news-index-list {
        padding: 56px 18px 70px;
        grid-template-columns: 1fr;
        gap: 20px;
    }

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

}

@media (prefers-reduced-motion: reduce) {
    .news-card,
    .news-card-image img {
        transition: none;
    }
}
