/*
 * RPM FAQ — WPBakery Toggle Card Styling
 * ============================================================
 * Network-wide card-style override for vc_toggle elements.
 * Loaded by mu-plugins/bigdawggi/plugins/RPMFAQSchema.php.
 *
 * Color/spacing values mirror the theme's Bootstrap v3 variables
 * ($brand-primary, $panel-default-border, $border-radius-base,
 * $line-height-computed) so the look stays consistent with the rest
 * of the site. Update both files if these change.
 *
 * Note: selectors use doubled class names (e.g. ".vc_toggle.vc_toggle")
 * to bump specificity above WPBakery's own ".vc_toggle" rules in
 * js_composer.min.css, which would otherwise win by source order.
 */

.vc_toggle.vc_toggle {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 22px;
    margin-bottom: 20px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    transition: border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.vc_toggle.vc_toggle:hover {
    border-color: #049ad9;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.10);
}

.vc_toggle.vc_toggle:last-of-type {
    margin-bottom: 20px;
}

.vc_toggle_title.vc_toggle_title {
    font-size: 18px;
    font-weight: 600;
    color: #222;
}

.vc_toggle_title.vc_toggle_title > h4 {
    font-size: inherit;
    font-weight: inherit;
    color: inherit;
    margin: 0;
}

.vc_toggle_content.vc_toggle_content {
    font-size: 14px;
    line-height: 1.428571429;
    color: #333;
    margin-top: 12px;
}

.vc_toggle_content.vc_toggle_content > p:last-child {
    margin-bottom: 0;
}

@media (max-width: 767px) {
    .vc_toggle.vc_toggle {
        padding: 18px;
    }

    .vc_toggle_title.vc_toggle_title {
        font-size: 15px;
    }
}
