/* about_membership.css */

/* ===== Layout ===== */
.membershipWrap{
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 16px;
}

.membershipGrid{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    align-items: stretch;
}

@media (max-width: 1100px){
    .membershipGrid{
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 620px){
    .membershipGrid{
        grid-template-columns: 1fr;
    }
}

/* ===== Card ===== */
.planCard{
    border-radius: 14px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 10px 18px rgba(0, 0, 0, 0.14);
    border: 1px solid rgba(0, 0, 0, 0.10);
    display: flex;
    flex-direction: column;
    min-height: 520px;
}

/* ===== Header ===== */
.planHead{
    color: #ffffff;
    text-align: center;
    padding: 18px 18px 12px 18px;
    position: relative;
}

.planLabel{
    font-size: 44px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: 0.01em;
    text-shadow: 0 2px 0 rgba(0, 0, 0, 0.18);
}

.planSub{
    margin-top: 10px;
    padding: 8px 10px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.20);
    font-weight: 800;
    font-size: 14px;
}

/* ===== Body ===== */
.planBody{
    padding: 14px 18px 0 18px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}

.planSection{
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    padding-top: 12px;
}

.planSection:first-child{
    border-top: none;
    padding-top: 0;
}

.planSectionTitle{
    margin: 0 0 8px 0;
    font-size: 12px;
    font-weight: 900;
    color: rgba(0, 0, 0, 0.55);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.planList{
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 8px;
}

.planItem{
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    line-height: 1.35;
    color: rgba(0, 0, 0, 0.80);
}

.planItem::before{
    content: "✓";
    font-weight: 900;
    margin-top: 1px;
    opacity: 0.95;
}

.planItem.isSub{
    padding-left: 18px;
    opacity: 0.78;
    font-size: 13px;
}

.planItem.isSub::before{
    content: "–";
    font-weight: 900;
    margin-top: 1px;
}

/* ===== Footer ===== */
.planFoot{
    padding: 14px 18px 18px 18px;
    margin-top: 8px;
    background: rgba(0, 0, 0, 0.02);
    border-top: 1px solid rgba(0, 0, 0, 0.08);
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	box-sizing: border-box;
}


.planFee{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    font-weight: 900;
    margin-bottom: 12px;
    text-align: center;
}


.feeMonth{
    font-size: 26px;
	line-height: 1.1;
    color: rgba(0, 0, 0, 0.82);
}

.feeYear{
    font-size: 18px;
	line-height: 1.1;
    opacity: 0.78;
}

@media (max-width: 900px){

    .feeMonth{
        font-size: 24px;
    }

    .feeYear{
        font-size: 16px;
        opacity: 0.75;
    }
}

@media (max-width: 620px){
    .planFee{
        gap: 2px;
    }

    .feeMonth{
        font-size: 22px;
    }

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

/* ===== Button ===== */
.planButton{
    display: block;
    width: 100%;
    text-align: center;
    border: none;
    border-radius: 12px;
    padding: 12px 12px;
    font-weight: 900;
    color: #ffffff;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 8px 14px rgba(0, 0, 0, 0.18);
    user-select: none;
    transition: transform 0.08s ease, filter 0.12s ease, box-shadow 0.12s ease;
}

.planButton:hover{
    filter: brightness(1.03);
    box-shadow: 0 10px 16px rgba(0, 0, 0, 0.22);
}

.planButton:active{
    transform: translateY(1px);
}

/* ===== Themes ===== */
/* Free */
.theme-free .planHead{
    background: linear-gradient(135deg, #8ad3ff, #1e7fd6);
}
.theme-free .planButton{
    background: linear-gradient(180deg, #2a88df, #0a5db4);
}

/* Basic */
.theme-basic .planHead{
    background: linear-gradient(135deg, #77d35a, #1f8a19);
}
.theme-basic .planButton{
    background: linear-gradient(180deg, #2b9c21, #167212);
}

/* Plus */
.theme-plus .planHead{
    background: linear-gradient(135deg, #4aa0ff, #0a55c9);
}
.theme-plus .planButton{
    background: linear-gradient(180deg, #0f63d6, #083e9a);
}

/* Premium */
.theme-premium .planHead{
    background: linear-gradient(135deg, #ffd26a, #c88c0b);
}
.theme-premium .planButton{
    background: linear-gradient(180deg, #c7890c, #946507);
}
