.ht-intake-variant {
    width: 100%;
}

.ht-intake__section--focus {
    border-color: rgba(214, 170, 109, .45);
    background: rgba(214, 170, 109, .06);
}

.ht-intake-router {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 40px 0;
}

.ht-intake-router__heading {
    max-width: 760px;
    margin-bottom: 24px;
}

.ht-intake-router__heading h2,
.ht-intake-router__heading p {
    margin-top: 0;
}

.ht-intake-router__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.ht-intake-router__card {
    display: flex;
    min-height: 220px;
    flex-direction: column;
    gap: 12px;
    padding: 22px;
    border: 1px solid rgba(214, 170, 109, .35);
    border-radius: 14px;
    background: #0b161c;
    color: #fff;
    text-decoration: none;
    transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.ht-intake-router__card:hover,
.ht-intake-router__card:focus-visible {
    transform: translateY(-3px);
    border-color: #d6aa6d;
    box-shadow: 0 16px 32px rgba(0, 0, 0, .18);
    color: #fff;
}

.ht-intake-router__code {
    color: #d6aa6d;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.ht-intake-router__card strong {
    display: block;
    font-size: 1.15rem;
    line-height: 1.35;
}

.ht-intake-router__card > span:not(.ht-intake-router__code) {
    color: rgba(255, 255, 255, .78);
    line-height: 1.55;
}

.ht-intake-router__card em {
    margin-top: auto;
    color: #d6aa6d;
    font-style: normal;
}

.ht-intake-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 11px 20px;
    border: 1px solid #d6aa6d;
    border-radius: 8px;
    background: #d6aa6d;
    color: #0b161c;
    text-decoration: none;
}

.ht-intake-cta:hover,
.ht-intake-cta:focus-visible {
    background: transparent;
    color: #d6aa6d;
}

@media (max-width: 1024px) {
    .ht-intake-router__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .ht-intake-router {
        width: min(100% - 24px, 1180px);
        padding: 28px 0;
    }

    .ht-intake-router__grid {
        grid-template-columns: 1fr;
    }

    .ht-intake-router__card {
        min-height: 0;
    }
}
