.press-list-page {
    background: #ffffff;
    padding: 120px 0;
}

.press-list-shell {
    width: min(100% - 48px, 1180px);
    margin-inline: auto;
}

.press-list-hero {
    max-width: 980px;
    margin-bottom: 96px;
}

.press-list-label {
    margin: 0 0 24px;

    font-size: 12px;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;

    color: #777777;
}

.press-list-hero h1 {
    margin: 0;
    max-width: 760px;
    font-size: clamp(36px, 4vw, 56px);
    line-height: 1.02;
    letter-spacing: -0.045em;
    font-weight: 700;
    color: #000000;
}

.press-list-grid {
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.press-card {
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.press-card-link {
    display: block;
    padding: 40px 0;
    text-decoration: none;
    transition:
        padding-left 0.35s ease,
        opacity 0.35s ease;
}

.press-card-link:hover {
    padding-left: 12px;

    text-decoration: none;
}

.press-card-meta {
    margin-bottom: 18px;

    font-size: 12px;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;

    color: #777777;
}

.press-card h2 {
    margin: 0;
    max-width: 820px;
    font-size: clamp(22px, 2.8vw, 36px);
    line-height: 1.12;
    letter-spacing: -0.035em;
    font-weight: 700;
    color: #000000;
}

.press-card-summary {
    max-width: 620px;
    margin-top: 18px;
    font-size: 16px;
    line-height: 1.72;
    color: #555555;
}

.press-card-action {
    margin-top: 28px;

    display: inline-flex;
    align-items: center;
    gap: 10px;

    font-size: 12px;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;

    color: #000000;
}

.press-card-action::after {
    content: "";

    width: 8px;
    height: 8px;

    border-top: 1.5px solid #000000;
    border-right: 1.5px solid #000000;

    transform: rotate(45deg);
}

.press-pagination {
    margin-top: 72px;
}

.press-pagination .pagination {
    display: flex;
    align-items: center;
    gap: 10px;
}

.press-pagination a,
.press-pagination strong {
    min-width: 42px;
    height: 42px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(0, 0, 0, 0.08);

    font-size: 13px;
    font-weight: 700;

    color: #000000;

    text-decoration: none;
}

.press-pagination strong {
    background: #000000;
    color: #ffffff;
}

.press-pagination a:hover {
    background: #000000;
    color: #ffffff;

    text-decoration: none;
}

@media (max-width: 768px) {

    .press-list-page {
        padding: 72px 0;
    }

    .press-list-shell {
        width: min(100% - 28px, 1180px);
    }

    .press-list-hero {
        margin-bottom: 64px;
    }

    .press-card-link {
        padding: 40px 0;
    }

    .press-card h2 {
		font-size: 25px;
	}

    .press-card-summary {
        margin-top: 20px;
        font-size: 16px;
        line-height: 1.72;
    }

}