/**
 * Second public plan grid (Elementor widget "… 2" / [rp_pricing2]).
 *
 * Duplicate of pricing-widget.css under the rp-pricing2 prefix, so this variant
 * can be restyled without touching the grid already placed on live pages.
 *
 * The cards still carry Listivo's .listivo-panel-package-v2 classes, so they
 * inherit the same look; the rp-plan2__* hooks emitted by the PHP are free for
 * variant-specific overrides.
 */

.rp-pricing2__head {
    margin-bottom: 32px;
}

.rp-pricing2__heading {
    margin: 0 0 8px;
    font-size: 1.75rem;
    line-height: 1.3;
    font-weight: 700;
}

.rp-pricing2__description {
    font-size: 1rem;
    line-height: 1.6;
    opacity: .75;
}

/* Overrides the panel's own grid rules, which assume the panel container. */
.rp-pricing2 .rp-pricing2__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    align-items: start;
}

.rp-pricing2__empty {
    padding: 24px;
    border: 1px dashed #d5e3ee;
    border-radius: 8px;
    color: #5b6b76;
    text-align: center;
}

@media (max-width: 1024px) {
    .rp-pricing2 .rp-pricing2__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .rp-pricing2 .rp-pricing2__grid {
        grid-template-columns: minmax(0, 1fr);
    }
}
