/* Keeps the pricing cards independent from similarly named landing-page components. */
.price-page-hero + .plan-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    align-items: stretch;
}

.price-page-hero + .plan-grid .plan-card {
    position: relative;
    display: flex;
    min-width: 0;
    min-height: 300px;
    padding: 27px 25px;
    flex-direction: column;
    background: #fff;
    border: 1px solid #cfd9e5;
    border-radius: 17px;
    box-shadow: 0 9px 28px rgba(20, 35, 59, .05);
}

.price-page-hero + .plan-grid .plan-card.featured {
    border: 2px solid #155bd7;
    box-shadow: 0 14px 35px rgba(21, 91, 215, .14);
}

.price-page-hero + .plan-grid .plan-card > .plan-name {
    display: block;
    width: auto;
    height: auto;
    color: #1551b9;
    background: transparent;
    border-radius: 0;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 1.2px;
    line-height: 1.4;
}

.price-page-hero + .plan-grid .plan-card > .best-value {
    position: absolute;
    top: -13px;
    right: 17px;
    display: inline-block;
    width: auto;
    height: auto;
    padding: 6px 11px;
    color: #fff;
    background: #155bd7;
    border-radius: 99px;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .8px;
    line-height: 1.3;
}

.price-page-hero + .plan-grid .plan-price {
    display: flex;
    align-items: baseline;
    gap: 7px;
    margin: 13px 0 4px;
    white-space: nowrap;
}

.price-page-hero + .plan-grid .plan-price strong {
    font-size: clamp(32px, 3vw, 40px);
}

.price-page-hero + .plan-grid .plan-card > p {
    margin: 5px 0 16px;
    color: #536176;
}

.price-page-hero + .plan-grid .effective {
    min-height: 48px;
    padding-top: 13px;
    border-top: 1px solid #e0e6ed;
    color: #087a4b;
    font-size: 13px;
    font-weight: 800;
    line-height: 1.45;
}

.price-page-hero + .plan-grid .plan-button {
    box-sizing: border-box;
    display: block;
    width: 100%;
    margin-top: auto !important;
    padding: 12px 14px !important;
    text-align: center;
    white-space: normal;
}

.paypal-payment-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 18px;
    color: #536176;
    font-size: 13px;
    text-align: center;
}

.paypal-payment-note strong {
    color: #183f7a;
}

@media (max-width: 1050px) {
    .price-page-hero + .plan-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 620px) {
    .price-page-hero + .plan-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .price-page-hero + .plan-grid .plan-card {
        min-height: 285px;
    }

    .paypal-payment-note {
        flex-direction: column;
        gap: 3px;
    }
}
