/* Base Card Styles */
.membership-card {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    box-shadow: 0px 6px 8px 0px rgba(0, 0, 0, 0.05);
}

/* Basic Variant */
.membership-card-basic {
    width: 350px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: var(--m);
}

.membership-header {
    display: flex;
    flex-direction: column;
    gap: 4px;
    white-space: pre-wrap;
}

.membership-title {
    font-family: 'Blinker', sans-serif;
    font-weight: 600;
    font-size: 36px;
    line-height: 1.3;
    color: var(--gunmetal);
    margin: 0;
}

.membership-description {
    font-family: 'Blinker', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.5;
    color: var(--iron);
    margin: 0;
}

.membership-body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 1;
}

.membership-price {
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: flex-start;
    justify-content: center;
}
span.from-label{
    color: var(--blue);
    font-family: Blinker;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%; /* 19.2px */
    text-transform: lowercase;
}
.saving-memo{
    color: var(--blue);
    font-family: Blinker;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 24px */
}

.price-details {
    font-family: 'Blinker', sans-serif;
    font-weight: 400;
    font-size: 22px;
    line-height: 1.3;
    color: var(--blue);
    white-space: pre-wrap;
    display: flex;
    flex-direction: column;
}

.price-details p {
    margin: 0;
}

.price-plus {
    color: var(--blue);
}

.membership-footer {
    margin-top: auto;
}

.membership-footer p {
    font-family: 'Blinker', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.5;
    color: var(--steel);
    margin: 0;
    white-space: pre-wrap;
}

/* Basic v2 Variant */
.membership-card-basic-v2 {
    width: 320px;
    height: 350px;
    box-shadow: 0px 1px 3px 0px rgba(16, 24, 40, 0.1), 0px 1px 2px 0px rgba(16, 24, 40, 0.06);
}

.membership-header-dark {
    background-color: var(--gunmetal);
    height: 100px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: var(--s) var(--m);
}

.membership-title-dark {
    font-family: 'Blinker', sans-serif;
    font-weight: 600;
    font-size: 32px;
    line-height: 1;
    color: var(--white);
    margin: 0;
    white-space: pre-wrap;
}
.membership-header-dark .membership_type{
    position: absolute;
    right: 24px;
    color: var(--silver);
    font-family: 'Blinker', sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    letter-spacing: 0.7px;
    text-transform: uppercase;
}

.membership-body-v2 {
    display: flex;
    flex-direction: column;
    gap: var(--xs);
    padding: var(--s) var(--m);
    flex: 1;
}

.membership-description-v2 {
    font-family: 'Blinker', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    color: var(--iron);
    margin: 0;
    white-space: pre-wrap;
}

.membership-price-v2 {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.price-details-v2 {
    font-family: 'Blinker', sans-serif;
    font-weight: 400;
    color: var(--blue);
    line-height: 0;
}

.price-details-v2 p {
    margin: 0;
    line-height: 1.2;
}

.price-large {
    font-size: 26px;
}

.price-small {
    font-size: 22px;
}

.price-plus-v2 {
    font-size: 22px;
    line-height: 1.2;
}

.membership-footer-v2 {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    flex: 1;
    margin-top: auto;
}

.membership-footer-v2 p {
    font-family: 'Blinker', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.5;
    color: var(--steel);
    margin: 0;
    white-space: pre-wrap;
}

/* Pro Package Variants */
.membership-card-pro {
    width: 300px;
    height: 300px;
    box-shadow: 0px 1px 3px 0px rgba(16, 24, 40, 0.1), 0px 1px 2px 0px rgba(16, 24, 40, 0.06);
}

.membership-pro-header {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: var(--xs) var(--s);
}

.membership-pro-header-blue {
    background-color: var(--blue);
}

.membership-pro-header-orange {
    background-color: var(--dark-orange);
}

.pro-tag {
    font-family: 'Blinker', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.5;
    letter-spacing: 0.7px;
    color: var(--white);
    margin: 0;
    flex: 1;
    white-space: pre-wrap;
}

.pro-type {
    font-family: 'Blinker', sans-serif;
    font-weight: 600;
    font-size: 14px;
    line-height: 1.5;
    letter-spacing: 0.7px;
    text-transform: uppercase;
    color: var(--white);
    margin: 0;
}

.membership-pro-header i {
    font-size: 16px;
    color: var(--white);
    line-height: 0;
}

.membership-pro-content {
    display: flex;
    flex-direction: column;
    gap: var(--xxs);
    padding: var(--m) var(--m) var(--s);
    flex: 1;
}

.pro-hours {
    display: flex;
    flex-direction: column;
    white-space: pre-wrap;
}

.pro-hours-title {
    font-family: 'Blinker', sans-serif;
    font-weight: 600;
    font-size: 42px;
    line-height: 1;
    color: var(--gunmetal);
    margin: 0;
}

.pro-hours-subtitle {
    font-family: 'Blinker', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.2;
    color: var(--iron);
    margin: 0;
}

.pro-pricing {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.pro-price-main {
    display: flex;
    flex-direction: column;
    gap: var(--micro);
    flex: 1;
}

.pro-monthly {
    font-family: 'Blinker', sans-serif;
    font-weight: 400;
    line-height: normal;
    color: var(--blue);
    margin: 0;
}

.pro-monthly-alt {
    font-family: 'Blinker', sans-serif;
    font-weight: 400;
    line-height: normal;
    color: var(--iron);
    margin: 0;
}
.membership-footer-pro{
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    flex: 1;
    margin-top: auto;
}

.pro-monthly p,
.pro-monthly-alt p {
    margin: 0;
    line-height: 1.3;
}

.price-medium {
    font-size: 20px;
}

.pro-hourly {
    display: flex;
    align-items: center;
    gap: var(--xxs);
}

.pro-hourly-rate {
    font-family: 'Blinker', sans-serif;
    font-weight: 400;
    line-height: 0;
    color: var(--blue);
    margin: 0;
}

.pro-hourly-rate-alt {
    font-family: 'Blinker', sans-serif;
    font-weight: 400;
    line-height: 0;
    color: var(--iron);
    margin: 0;
}

.pro-hourly-rate p,
.pro-hourly-rate-alt p {
    margin: 0;
    line-height: 1.3;
}

.savings-badge {
    background-color: var(--iron);
    padding: 2px 8px 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.savings-badge p {
    font-family: 'Blinker', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: normal;
    color: var(--white);
    margin: 0;
}

.membership-footer-pro p {
    font-family: 'Blinker', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.5;
    color: var(--steel);
    margin: 0;
    white-space: pre-wrap;
}

.membership-card-basic-v2 {
    display: flex;
    flex-direction: column;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .membership-card-basic,
    .membership-card-basic-v2,
    .membership-card-pro {
        width: 100%;
        max-width: 350px;
    }
}
