.home-tool-promo {
    margin-top: -1.35rem;
    margin-bottom: 2.1rem;
}

.home-tool-promo__card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 1rem;
    align-items: center;
    padding: 1rem 1.1rem;
    border-radius: 14px;
    border: 1px solid color-mix(in srgb, var(--theme-border) 82%, transparent);
    background:
        radial-gradient(120% 120% at 0% 0%, color-mix(in srgb, var(--theme-accent) 12%, transparent), transparent 64%),
        linear-gradient(
            160deg,
            color-mix(in srgb, var(--theme-surface) 90%, var(--theme-surface-alt) 10%),
            color-mix(in srgb, var(--theme-surface-alt) 86%, var(--theme-surface) 14%)
        );
}

.home-tool-promo__eyebrow {
    margin: 0 0 0.24rem;
    color: color-mix(in srgb, var(--theme-accent) 70%, var(--theme-title) 30%);
    font-size: 0.8rem;
    font-weight: 730;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.home-tool-promo__title {
    margin: 0;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    color: var(--theme-title);
    font-size: clamp(1.05rem, 1.4vw, 1.28rem);
    line-height: 1.25;
}

.home-tool-promo__title-icon {
    display: inline-flex;
    width: 1rem;
    height: 1rem;
    color: color-mix(in srgb, var(--theme-accent) 72%, var(--theme-title) 28%);
    flex: 0 0 auto;
}

.home-tool-promo__title-icon svg {
    width: 100%;
    height: 100%;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.home-tool-promo__text {
    margin: 0.36rem 0 0;
    color: var(--theme-text);
    font-size: 0.96rem;
    line-height: 1.4;
}

.home-tool-promo__cta {
    min-width: 190px;
    justify-self: end;
    border-radius: 12px;
    font-weight: 700;
}

@media (max-width: 820px) {
    .home-tool-promo {
        margin-top: -0.4rem;
        margin-bottom: 1.5rem;
    }

    .home-tool-promo__card {
        grid-template-columns: minmax(0, 1fr);
        gap: 0.82rem;
        padding: 0.9rem;
    }

    .home-tool-promo__cta {
        justify-self: stretch;
        width: 100%;
        min-width: 0;
    }
}
