.plans_section{
    width: 100%;
    height: fit-content;
    display: flex;
    gap: 20px;
}

/* --- Plan card --- */

.plan_card{
    width: 100%;
    height: fit-content;
    box-sizing: border-box;
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    border-radius: 14px;
    background: var(--component);
}

/* plan text */

.plan_text{
    width: 100%;
    height: 70px;
    font-size: 12px;
    line-height: 1.8;
    text-align: left;
    color: var(--text2);
}

/* label */

.plan_card label{
    font-size: 12px;
    color: var(--text1);
}

/* --- Plan mark --- */

.plan_mark{
    width: 100%;
    height: fit-content;
    display: flex;
    align-items: center;
    gap: 14px;
}

/* image */

.plan_mark img{
    width: 22px;
    height: 22px;
    opacity: 0.7;
}

/* text */

.plan_mark h2{
    font-size: 14px;
    font-weight: 500;
    color: var(--text1);
}

/* --- Plan cost --- */

.plan_cost{
    font-size: 30px;
    color: var(--text1);
}

/* span */

.plan_cost span{
    font-size: 12px;
    color: var(--text2);
}

/* --- Get started --- */

.get_started{
    width: 100%;
    height: 45px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: var(--blue);
    font-size: 13px;
    text-decoration: none;
    color: white;
    transition: 0.3s;
}

.get_started:hover{
    cursor: pointer;
    opacity: 0.7;
}

/* --- Limits list --- */

.plan_card ul{
    width: 100%;
    height: fit-content;
    box-sizing: border-box;
    padding-left: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.plan_card ul:last-of-type{
    margin-bottom: 10px;
}

/* limit */

.plan_card ul li{
    font-size: 12px;
    color: var(--text2);
}

/* --- Media --- */

@media screen and (max-width: 1000px) {
    
    .plans_section{
        gap: 10px;
    }

    /* --- Plan card --- */

    .plan_card{
        padding: 20px;
    }

    /* plan text */

    .plan_text{
        height: 90px;
    }

    /* limit */

    .plan_card ul li{
        font-size: 11px;
    }
}

@media screen and (max-width: 680px) {

    .plans_section{
        flex-direction: column;
        gap: 20px;
    }

    /* plan text */

    .plan_text{
        width: 300px;
        height: fit-content;
    }

    /* get started */

    .get_started{
        width: 300px;
    }
}

@media screen and (max-width: 460px) {

    /* plan text */

    .plan_text{
        width: 240px;
    }

    /* get started */

    .get_started{
        width: 100%;
    }
}