.hp-article-index {
    display: grid;
    grid-template-columns: minmax(160px, .55fr) minmax(0, 2fr);
    gap: clamp(28px, 5vw, 64px);
    padding-top: 30px;
    padding-bottom: 36px;
    border-bottom: 1px solid var(--hp-line);
}

.hp-article-index__heading {
    padding-top: 5px;
}

.hp-article-index__heading span {
    display: block;
    margin-bottom: 8px;
    color: var(--hp-copper);
    font-family: var(--hp-sans);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.hp-article-index__heading strong {
    display: block;
    font-family: var(--hp-serif);
    font-size: clamp(27px, 3vw, 38px);
    font-weight: 300;
    font-style: italic;
    line-height: 1.1;
}

.hp-article-index ol {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: clamp(28px, 5vw, 58px);
    margin: 0;
    padding: 0;
    list-style: none;
}

.hp-article-index li {
    margin: 0;
    border-top: 1px solid var(--hp-line);
}

.hp-article-index a {
    display: grid;
    grid-template-columns: 32px 1fr auto;
    gap: 9px;
    align-items: center;
    padding: 13px 0;
    color: var(--hp-ink);
    font-size: 14px;
    line-height: 1.35;
    text-decoration: none;
}

.hp-article-index a > span:last-child,
.hp-article-index__number {
    color: var(--hp-copper);
    font-family: var(--hp-sans);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .12em;
}

.hp-article-index a:hover,
.hp-article-index a:focus-visible {
    color: var(--hp-copper);
}

.hp-article__content blockquote,
.hp-article__content .wp-block-quote {
    position: relative;
    isolation: isolate;
    margin: clamp(58px, 9vw, 96px) 0;
    padding: clamp(48px, 7vw, 74px) clamp(34px, 8vw, 88px);
    border: 0;
    color: var(--hp-ink);
    font-family: var(--hp-serif);
    font-size: clamp(30px, 4.3vw, 49px);
    font-weight: 300;
    font-style: italic;
    line-height: 1.18;
    text-align: center;
}

.hp-article__content blockquote::before,
.hp-article__content blockquote::after {
    position: absolute;
    z-index: -1;
    font-family: var(--hp-serif);
    font-size: clamp(120px, 20vw, 220px);
    font-weight: 300;
    line-height: .75;
}

.hp-article__content blockquote::before {
    top: 9px;
    left: -2px;
    content: '“';
    color: var(--hp-copper);
}

.hp-article__content blockquote::after {
    right: 8px;
    bottom: -28px;
    content: '”';
    color: color-mix(in srgb, var(--hp-copper) 17%, transparent);
}

.hp-article__content blockquote > p {
    margin: 0;
    font: inherit;
}

.hp-article__content blockquote > p:first-child::before,
.hp-article__content blockquote > p:last-of-type::after {
    content: none;
}

.hp-article__content blockquote cite {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    margin-top: 28px;
    color: var(--hp-copper);
    font-family: var(--hp-sans);
    font-size: 10px;
    font-style: normal;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.hp-article__content blockquote cite::before {
    width: 28px;
    height: 1px;
    content: '';
    background: var(--hp-copper);
}

.hp-article__content blockquote {
    background:
        linear-gradient(var(--hp-copper), var(--hp-copper)) top left / 100% 1px no-repeat,
        linear-gradient(color-mix(in srgb, var(--hp-copper) 35%, transparent), color-mix(in srgb, var(--hp-copper) 35%, transparent)) bottom left / 100% 1px no-repeat;
}

.hp-article__content blockquote > :first-child::after {
    position: absolute;
    top: -5px;
    right: 0;
    width: 9px;
    height: 9px;
    content: '';
    background: var(--hp-copper);
}

@media (max-width: 680px) {
    .hp-article-index {
        grid-template-columns: 1fr;
        width: min(calc(100% - 28px), var(--hp-max));
    }

    .hp-article-index ol {
        grid-template-columns: 1fr;
    }

    .hp-article__content blockquote,
    .hp-article__content .wp-block-quote {
        margin-inline: -4px;
        padding-inline: 28px;
    }

    .hp-article__content blockquote::before {
        left: -8px;
    }
}

@supports not (color: color-mix(in srgb, black 50%, transparent)) {
    .hp-article__content blockquote::after {
        color: rgba(174, 93, 44, .17);
    }
}
