#header {
    background-image: url("/images/headers/pricing.jpg");
}

#pricing-header-wrapper {
    color: black;
    background-color: #f8fafb;
}

#pricing-header {
    display: flex;
    justify-content: space-between;

    width: 1024px;
    margin: 0 auto;
    padding: 12px;
}

#pricing-header p {
    margin: 0;
}

#pricing-header p > i {
    color: #ef4023;
}

#pricing {
    display: flex;
    flex-direction: column;
    align-items: center;

    width: 1024px;
    margin: 0 auto;
    padding: 48px 24px;
}

#pricing-plans {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(256px, 1fr));
    gap: 32px;
    justify-items: center;
}

.pricing-plan {
    display: flex;
    flex-direction: column;

    width: 92%;
    padding: 0 28px 24px;

    background-color: white;
    border-radius: 6px;
    box-shadow: rgb(0 0 0 / 35%) 0 5px 15px;
}

.pricing-plan.pricing-plan-hot {
    color: white;
    background-color: var(--primary-accent-color);
}

.pricing-plan-header {
    margin: 0 0 24px;
    padding: 12px;

    font-size: 16px;
    color: white;
    text-align: center !important;

    background-color: var(--primary-accent-color);
    border-bottom-right-radius: 12px;
    border-bottom-left-radius: 12px;
}

.pricing-plan.pricing-plan-hot .pricing-plan-header {
    color: var(--primary-accent-color);
    background-color: white;
}

.pricing-plan-description {

}

.pricing-plan-hot {
    display: inline-flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;

    aspect-ratio: 1;
    width: 52px;
    height: 52px;

    font-size: 10px;
    line-height: 10px;
    color: white;
    text-align: center;

    background-color: #ef4023;
    clip-path: polygon(100% 50%, 78.53% 59.27%, 90.45% 79.39%, 67.63% 74.27%, 65.45% 97.55%, 50% 80%, 34.55% 97.55%, 32.37% 74.27%, 9.55% 79.39%, 21.47% 59.27%, 0% 50%, 21.47% 40.73%, 9.55% 20.61%, 32.37% 25.73%, 34.55% 2.45%, 50% 20%, 65.45% 2.45%, 67.63% 25.73%, 90.45% 20.61%, 78.53% 40.73%);
    border-radius: 50%;
}

.pricing-plan-cta {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
    justify-content: center;

    margin-top: 24px;
}

.button-inline {
    display: inline-flex;
    align-self: center;

    margin-top: 12px;
    margin-bottom: 12px;

    text-align: center;
}

@media only screen and (width <= 1024px) {
    #pricing {
        width: 100%;
    }

    #pricing-header {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    #pricing-plans {
        padding-right: 12px;
        padding-left: 12px;
    }
}
