/* --- PRICING --- */
@media screen and (min-width: 64rem) {
    .pricing-header {
        text-align: start;
    }

    .pricing-header div {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-header .title {
        margin-right: 60px;
        white-space: nowrap;
    }

    .pricing-header .description {
        margin-top: 24px;
    }
}

/* --- PRICING TABLE --- */
@media screen and (min-width: 0rem) {
    .pricing-table-container {
        display: flex;
        flex-direction: column;
        gap: 32px;
        margin-top: 16px;
    }

    .pricing-table-feature-container {
        display: none;
    }

    .pricing-table-item-container {
        background-color: var(--secondary-background-color);
    }

    .pricing-table-item-header {
        text-align: center;
        padding-block: 32px;
        color: white;
        height: 170px;
    }

    .pricing-table-header-one {
        background-color: #2D2D2D;
    }

    .pricing-table-header-two {
        background-color: #232323;
        padding-bottom: 48px;
    }

    .pricing-table-header-three {
        background-color: #000000;
        padding-bottom: 48px;
    }

    .pricing-table-item-header-title {
        font-size: 24px;
    }

    .pricing-table-item-header-pricing {
        font-size: 36px;
        line-height: 40%;
        margin-top: 32px;
    }

    .pricing-table-item-header-pricing span {
        font-size: 16px;
    }


    .pricing-table-item-section {
        display: flex;
        justify-content: space-between;
        padding-inline: 24px;
        padding-block: 24px;
        gap: 32px;
    }

    .pricing-table-item-section:nth-child(odd) {
        background-color: #E8E8E8;
    }

    .pricing-table-item-section-title {
        font-weight: 500;

    }

    .pricing-table-item-section-value {
        color: var(--text-color);
        text-align: end;
    }
}
@media screen and (min-width: 64rem) {
    .pricing-table-header {
        text-align: center;
    }

    .pricing-table-header .eyebrow-text {
        display: inline-block;
    }
    .pricing-table-container {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 0px;
        margin-top: 48px;
    }
    
    .pricing-table-feature-container {
        display: block;
        border-radius: 20px 0px 0px 20px;
    }

    .pricing-table-feature-header {
        color: black;
        background-color: #E8E8E8;
        display: flex;
        align-items: end;
        justify-content: center;
        border-top-left-radius: 20px;
    }

    .pricing-table-features-title {
        font-size: 24px;
        font-weight: 500;
    }

    .pricing-table-item-section-feature {
        width: 100%;
        text-align: center;
        font-weight: 500;
    }

    .pricing-table-item-container:nth-child(4) {
        border-radius: 0px 20px 20px 0px;
    }

    .pricing-table-header-three {
        border-top-right-radius: 20px;
    }

    .pricing-table-item-section-title {
        display: none;
    }

    .pricing-table-item-section-value {
        text-align: center;
        width: 100%;
    }
}