.gwl-page {
    background: var(--gw-white);
}

.gwl-hero__copy {
    margin-bottom: 3px;
}

.gwl-content {
    padding-block: clamp(40px, 5vw, 70px) clamp(72px, 8vw, 110px);
    background: var(--gw-paper);
}

.gwl-groups {
    display: grid;
    gap: clamp(56px, 7vw, 88px);
}

.gwl-group {
    display: grid;
    gap: 26px;
}

.gwl-group__header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, .75fr);
    align-items: end;
    gap: clamp(36px, 6vw, 90px);
    padding-top: 22px;
    border-top: 1px solid var(--gw-line);
}

.gwl-group:first-child .gwl-group__header {
    padding-top: 0;
    border-top: 0;
}

.gwl-group__header h2 {
    margin: 0;
    font-size: clamp(30px, 3.3vw, 44px);
    font-weight: 560;
    letter-spacing: -.045em;
    line-height: 1;
}

.gwl-group__header p {
    width: min(100%, 520px);
    max-width: 520px;
    margin: 0;
    justify-self: end;
    color: var(--gw-muted);
    font-size: 16px;
    text-align: right;
}

.gwl-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    background: transparent;
}

.gwl-card {
    min-height: 180px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 24px;
    color: var(--gw-ink);
    background: var(--gw-white);
    border-top: 1px solid var(--gw-line);
    border-left: 1px solid var(--gw-line);
    border-right: 1px solid var(--gw-line);
    border-bottom: 1px solid var(--gw-line);
    margin-right: -1px;
    margin-bottom: -1px;
    text-decoration: none;
    transition: color .18s ease, background-color .18s ease;
}

.gwl-card:hover,
.gwl-card:focus-visible {
    color: var(--gw-green-900);
    background: var(--gw-green-100);
}

.gwl-card__path {
    color: var(--gw-muted);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .09em;
    text-transform: uppercase;
}

.gwl-card h3 {
    margin: auto 0 16px;
    font-size: clamp(22px, 2vw, 28px);
    font-weight: 560;
    letter-spacing: -.025em;
    line-height: 1.05;
}

.gwl-card__action {
    color: currentColor;
    font-size: 13px;
    font-weight: 700;
    text-decoration-line: underline;
    text-decoration-color: transparent;
    text-underline-offset: 5px;
    transition: text-decoration-color .18s ease;
}

.gwl-card:hover .gwl-card__action,
.gwl-card:focus-visible .gwl-card__action {
    text-decoration-color: currentColor;
}

.gwl-empty {
    padding: clamp(36px, 5vw, 64px);
    background: var(--gw-panel);
    border: 1px solid var(--gw-line);
}

.gwl-empty h2 {
    margin: 0 0 8px;
    font-size: 30px;
}

.gwl-empty p {
    margin: 0;
    color: var(--gw-muted);
}

:root[data-theme="dark"] .gwl-card:hover,
:root[data-theme="dark"] .gwl-card:focus-visible {
    color: var(--gw-green-300);
}

@media (max-width: 900px) {
    .gwl-hero .gw-shell {
        grid-template-columns: 1fr;
        align-items: start;
        gap: 18px;
    }

    .gwl-hero .gw-eyebrow {
        grid-column: auto;
        margin-bottom: 2px;
    }

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

    .gwl-group__header {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .gwl-group__header p {
        width: 100%;
        max-width: none;
        justify-self: stretch;
        text-align: left;
    }
}

@media (max-width: 600px) {
    .gwl-hero {
        padding-block: 38px 44px;
    }

    .gwl-content {
        padding-block: 34px 64px;
    }

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

    .gwl-card {
        min-height: 154px;
        padding: 24px;
    }
}
