.support-legal-links {
    --sl-ink: #181818;
    --sl-muted: #646464;
    --sl-border: #d9d7d0;
    --sl-paper: #f4f1ea;
    color: var(--sl-ink);
}

.support-legal-links--home {
    margin: 72px 0 88px;
    padding: 48px;
    background: var(--sl-paper);
}

.support-legal-links__heading {
    display: grid;
    grid-template-columns: minmax(160px, .45fr) minmax(0, 1.55fr);
    gap: 32px;
    align-items: end;
    margin-bottom: 34px;
}

.support-legal-links__heading p,
.support-legal-links__card span,
.support-legal-links--article > span {
    margin: 0;
    color: var(--sl-muted);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.support-legal-links__heading h2 {
    max-width: 800px;
    margin: 0;
    font-size: clamp(30px, 4vw, 54px);
    line-height: 1.04;
}

.support-legal-links__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border: 1px solid var(--sl-border);
}

.support-legal-links__card {
    display: flex;
    min-height: 250px;
    padding: 32px;
    color: inherit;
    flex-direction: column;
    text-decoration: none;
    transition: background-color .2s ease, color .2s ease;
}

.support-legal-links__card + .support-legal-links__card {
    border-left: 1px solid var(--sl-border);
}

.support-legal-links__card strong {
    margin-top: 36px;
    font-size: clamp(25px, 3vw, 38px);
    line-height: 1.08;
}

.support-legal-links__card small {
    max-width: 520px;
    margin-top: 14px;
    color: var(--sl-muted);
    font-size: 16px;
    line-height: 1.5;
}

.support-legal-links__card b {
    margin-top: auto;
    padding-top: 28px;
    font-size: 14px;
}

.support-legal-links__card:hover,
.support-legal-links__card:focus-visible {
    background: var(--sl-ink);
    color: #fff;
}

.support-legal-links__card:hover span,
.support-legal-links__card:hover small,
.support-legal-links__card:focus-visible span,
.support-legal-links__card:focus-visible small {
    color: #d9d7d0;
}

.support-legal-links--article {
    margin: 48px 0 0;
    padding: 32px;
    border-left: 4px solid var(--sl-ink);
    background: var(--sl-paper);
}

.post-content > .support-legal-links--article:last-child {
    margin-bottom: 64px;
}

.support-legal-links--article h2 {
    margin: 12px 0 10px;
    font-size: clamp(26px, 3vw, 38px);
    line-height: 1.12;
}

.support-legal-links--article p {
    margin: 0 0 22px;
    color: var(--sl-muted);
}

.support-legal-links--article a {
    color: var(--sl-ink);
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 4px;
}

@media (max-width: 767px) {
    .support-legal-links--home {
        margin: 44px 0 56px;
        padding: 28px 20px;
    }

    .support-legal-links__heading,
    .support-legal-links__grid {
        grid-template-columns: 1fr;
    }

    .support-legal-links__heading {
        gap: 12px;
    }

    .support-legal-links__card {
        min-height: 220px;
        padding: 26px 22px;
    }

    .support-legal-links__card + .support-legal-links__card {
        border-top: 1px solid var(--sl-border);
        border-left: 0;
    }

    .support-legal-links--article {
        margin-top: 34px;
        padding: 26px 22px;
    }

    .post-content > .support-legal-links--article:last-child {
        margin-bottom: 40px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .support-legal-links__card {
        transition: none;
    }
}
