.vps-channel-group .vps-channel-togglers {
    width: 100%;
}

.vps-channel-group .c-toggler label.vps-channel-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    line-height: 1.25;
    white-space: normal;
}

.vps-channel-option__title {
    display: block;
    width: 100%;
    font-weight: 600;
    font-size: 16px;
    color: var(--dark);
}

.vps-channel-option__sub {
    display: block;
    width: 100%;
    font-size: 12px;
    font-weight: 400;
    color: var(--mute);
}

.vps-channel-hint {
    margin: 12px 0 0;
    font-size: 14px;
    line-height: 1.45;
    color: var(--mute);
}

/* Mobile / tablet: stacked selectable cards (desktop pill toggle unchanged) */
@media (max-width: 992px) {
    .vps-channel-group .vps-channel-togglers {
        display: flex;
        flex-direction: column;
        gap: 8px;
        padding: 0;
        border: none;
        background: transparent !important;
        overflow: visible;
    }

    .vps-channel-group .service-calc-discs-bg,
    .vps-channel-group .c-togglers-bg {
        display: none !important;
    }

    .vps-channel-group .vps-channel-togglers .c-toggler {
        flex: none;
        width: 100%;
        border-radius: 12px;
        background: var(--bg-color);
        border: 1px solid var(--bg-color-hover);
        transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
    }

    .vps-channel-group .vps-channel-togglers .c-toggler:has(> input[type="radio"]:checked) {
        border-color: var(--blue);
        background: var(--white);
        box-shadow: 0 0 0 1px var(--blue);
    }

    .vps-channel-group .c-toggler label.vps-channel-option {
        align-items: flex-start;
        text-align: left;
        padding: 16px 48px 16px 16px;
        position: relative;
        border-radius: 12px;
        min-height: 56px;
    }

    .vps-channel-group .c-toggler label.vps-channel-option::after {
        content: '';
        position: absolute;
        right: 16px;
        top: 50%;
        transform: translateY(-50%);
        width: 20px;
        height: 20px;
        border-radius: 50%;
        border: 2px solid var(--bg-color-hover);
        background: var(--white);
        box-sizing: border-box;
        transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
    }

    .vps-channel-group .c-toggler > input[type="radio"]:checked + label {
        color: var(--dark);
    }

    .vps-channel-group .c-toggler > input[type="radio"]:checked + label::after {
        border-color: var(--blue);
        background: var(--blue);
        box-shadow: inset 0 0 0 4px var(--white);
    }

    .vps-channel-option__title {
        font-size: 16px;
    }

    .vps-channel-option__sub {
        font-size: 13px;
        margin-top: 2px;
    }

    .vps-channel-hint {
        font-size: 13px;
        margin-top: 10px;
    }
}

@media (min-width: 993px) and (max-width: 1100px) {
    .vps-channel-group .vps-channel-togglers .c-toggler label.fsize {
        padding-inline: 10px;
    }

    .vps-channel-option__title {
        font-size: 14px;
    }

    .vps-channel-option__sub {
        font-size: 11px;
    }
}
