.st-practice-promo {
    margin: clamp(1.5rem, 3vw, 2.25rem) 0 clamp(2rem, 4vw, 3rem);
}

.st-practice-promo__link {
    position: relative;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: clamp(1rem, 2vw, 1.5rem);
    overflow: hidden;
    padding: clamp(1.15rem, 2.2vw, 1.65rem);
    color: #0b3440;
    text-decoration: none;
    background:
        radial-gradient(circle at 92% -15%, rgba(249, 77, 43, .18), transparent 36%),
        linear-gradient(110deg, #edfafa 0%, #f9f7ed 58%, #fff7ef 100%);
    border: 1px solid rgba(12, 125, 132, .25);
    border-inline-start: .4rem solid #0d858a;
    border-radius: 1.15rem;
    box-shadow: 0 16px 38px rgba(4, 46, 54, .1);
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.st-practice-promo__link:hover,
.st-practice-promo__link:focus-visible {
    color: #082f39;
    text-decoration: none;
    border-color: rgba(12, 125, 132, .52);
    box-shadow: 0 20px 44px rgba(4, 46, 54, .16);
    transform: translateY(-2px);
}

.st-practice-promo__link:focus-visible {
    outline: 3px solid #f4512c;
    outline-offset: 3px;
}

.st-practice-promo__icon {
    display: grid;
    width: clamp(3.25rem, 6vw, 4.5rem);
    height: clamp(3.25rem, 6vw, 4.5rem);
    place-items: center;
    color: #fff;
    background: linear-gradient(145deg, #0d858a, #075b67);
    border-radius: 1rem;
    box-shadow: 0 10px 24px rgba(7, 91, 103, .22);
}

.st-practice-promo__icon svg {
    width: 64%;
    height: 64%;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2.8;
}

.st-practice-promo__content {
    display: grid;
    gap: .38rem;
    min-width: 0;
}

.st-practice-promo__eyebrow {
    color: #087a83;
    font-size: .74rem;
    font-weight: 800;
    letter-spacing: .12em;
    line-height: 1.3;
    text-transform: uppercase;
}

.st-practice-promo__title {
    color: #082f39;
    font-family: Manrope, Inter, sans-serif;
    font-size: clamp(1.18rem, 2vw, 1.58rem);
    font-weight: 800;
    line-height: 1.22;
}

.st-practice-promo__body {
    max-width: 76rem;
    color: #345860;
    font-size: clamp(.92rem, 1.25vw, 1.02rem);
    line-height: 1.58;
}

.st-practice-promo__proof {
    display: flex;
    flex-wrap: wrap;
    gap: .45rem;
    margin-top: .25rem;
    max-width: 72rem;
}

.st-practice-promo__proof span {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    padding: .3rem .62rem;
    color: #12555c;
    font-size: .78rem;
    font-weight: 750;
    line-height: 1.2;
    background: rgba(255, 255, 255, .74);
    border: 1px solid rgba(13, 133, 138, .2);
    border-radius: 999px;
}

.st-practice-promo__proof span::before {
    content: '✓';
    color: #0d858a;
    font-weight: 900;
}

.st-practice-promo__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 3rem;
    padding: .78rem 1rem;
    color: #fff;
    font-size: .9rem;
    font-weight: 800;
    line-height: 1.25;
    text-align: center;
    white-space: nowrap;
    background: #f4512c;
    border-radius: .8rem;
    box-shadow: 0 9px 20px rgba(244, 81, 44, .22);
}

[dir="rtl"] .st-practice-promo__cta span {
    display: inline-block;
    transform: rotate(180deg);
}

@media (max-width: 899.98px) {
    .st-practice-promo__link {
        grid-template-columns: auto minmax(0, 1fr);
    }

    .st-practice-promo__cta {
        grid-column: 2;
        justify-self: start;
        white-space: normal;
    }
}

@media (max-width: 575.98px) {
    .st-practice-promo__link {
        grid-template-columns: 1fr;
        border-inline-start-width: 1px;
        border-top: .35rem solid #0d858a;
    }

    .st-practice-promo__icon {
        width: 3.25rem;
        height: 3.25rem;
    }

    .st-practice-promo__cta {
        grid-column: 1;
        justify-self: stretch;
    }
}

@media (prefers-reduced-motion: reduce) {
    .st-practice-promo__link {
        transition: none;
    }
}
