.fp-trainer-help {
    --fp-trainer-accent: #087cf0;
    box-sizing: border-box;
    width: min(100%, 1136px);
    min-height: 156px;
    margin: 36px auto;
    padding: 24px 26px;
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr) auto;
    align-items: center;
    gap: 22px;
    color: #10233f;
    background: #fff;
    border: 1px solid #dce8f5;
    border-radius: 24px;
    box-shadow: 0 16px 42px rgba(25, 66, 112, .08);
    font-family: "Manrope", Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    text-align: left;
}

.fp-trainer-help *,
.fp-trainer-help *::before,
.fp-trainer-help *::after {
    box-sizing: border-box;
}

.fp-trainer-help__icon {
    width: 72px;
    height: 72px;
    display: grid;
    place-items: center;
    overflow: hidden;
    border-radius: 20px;
    background: #f1f7fd;
}

.fp-trainer-help__icon img {
    width: 68px;
    height: 68px;
    display: block;
    object-fit: contain;
    filter: drop-shadow(0 9px 12px rgba(15, 35, 63, .12));
}

.fp-trainer-help__copy {
    min-width: 0;
}

.fp-trainer-help__copy > span {
    display: block;
    margin: 0 0 6px;
    color: var(--fp-trainer-accent);
    font-size: 11px;
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: .09em;
    text-transform: uppercase;
}

.fp-trainer-help__copy h2 {
    margin: 0;
    color: #10233f;
    font: 750 clamp(1.18rem, 2vw, 1.55rem)/1.2 "Manrope", Inter, system-ui, sans-serif;
    letter-spacing: -.025em;
}

.fp-trainer-help__copy p {
    max-width: 720px;
    margin: 7px 0 0;
    color: #5b6b80;
    font-size: .96rem;
    line-height: 1.52;
}

.fp-trainer-help__link {
    min-height: 46px;
    padding: 0 19px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #c9dff4;
    border-radius: 999px;
    color: #0d63b8;
    background: #f7fbff;
    font-size: .9rem;
    font-weight: 800;
    line-height: 1.2;
    text-decoration: none;
    white-space: nowrap;
    transition: color .16s ease, background-color .16s ease, border-color .16s ease, transform .16s ease;
}

.fp-trainer-help__link:hover,
.fp-trainer-help__link:focus-visible {
    color: #fff;
    background: var(--fp-trainer-accent);
    border-color: var(--fp-trainer-accent);
    transform: translateY(-1px);
    outline: none;
}

.fp-trainer-help__link:focus-visible {
    box-shadow: 0 0 0 4px rgba(8, 124, 240, .18);
}

@media (max-width: 760px) {
    .fp-trainer-help {
        width: min(100%, calc(100vw - 28px));
        min-height: 0;
        margin: 28px auto;
        padding: 18px;
        grid-template-columns: 52px minmax(0, 1fr);
        gap: 12px 14px;
        border-radius: 19px;
    }

    .fp-trainer-help__icon {
        width: 52px;
        height: 52px;
        border-radius: 15px;
        align-self: start;
    }

    .fp-trainer-help__icon img {
        width: 50px;
        height: 50px;
    }

    .fp-trainer-help__copy > span {
        margin-bottom: 4px;
        font-size: 9px;
    }

    .fp-trainer-help__copy h2 {
        font-size: 1.05rem;
        line-height: 1.24;
    }

    .fp-trainer-help__copy p {
        grid-column: 1 / -1;
        margin-top: 7px;
        font-size: .88rem;
        line-height: 1.45;
    }

    .fp-trainer-help__link {
        grid-column: 1 / -1;
        width: 100%;
        min-height: 42px;
        margin-top: 2px;
        padding: 0 15px;
        font-size: .84rem;
        white-space: normal;
        text-align: center;
    }
}

@media (prefers-reduced-motion: reduce) {
    .fp-trainer-help__link {
        transition: none;
    }
}
