.mvfc-box {
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 24px 0;
    padding: 18px;
    border: 1px solid rgba(26, 115, 232, .14);
    border-radius: 16px;
    background: var(--mvfc-box, #f5f8ff);
    box-shadow: 0 7px 24px rgba(24, 55, 95, .08);
}
.mvfc-box__icon {
    display: grid;
    flex: 0 0 46px;
    width: 46px;
    height: 46px;
    place-items: center;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 4px 14px rgba(24, 55, 95, .1);
}
.mvfc-box__icon svg {
    width: 25px;
    fill: #fbbc04;
}
.mvfc-box__content {
    flex: 1 1 auto;
    min-width: 0;
}
.mvfc-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    max-width: 100%;
    padding: 12px 18px;
    border-radius: 999px;
    background: var(--mvfc-button, #1a73e8);
    color: var(--mvfc-text, #fff) !important;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.25;
    text-decoration: none !important;
    box-shadow: 0 5px 14px rgba(26, 115, 232, .22);
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.mvfc-button:hover,
.mvfc-button:focus {
    background: var(--mvfc-button-hover, #1557b0);
    color: var(--mvfc-text, #fff) !important;
    transform: translateY(-1px);
    box-shadow: 0 8px 18px rgba(26, 115, 232, .28);
}
.mvfc-button:focus-visible {
    outline: 3px solid rgba(26, 115, 232, .28);
    outline-offset: 3px;
}
.mvfc-button svg {
    width: 19px;
    min-width: 19px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.4;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.mvfc-box p {
    margin: 9px 2px 0;
    color: #4f5b6b;
    font-size: 13px;
    line-height: 1.45;
}
@media (max-width: 600px) {
    .mvfc-box {
        align-items: flex-start;
        padding: 15px;
    }
    .mvfc-box__icon {
        flex-basis: 40px;
        width: 40px;
        height: 40px;
    }
    .mvfc-button {
        width: 100%;
        padding: 12px 14px;
        font-size: 15px;
        text-align: center;
    }
}
