@import url('fonts.css');
@import url('colors.css');
@import url('buttons.css');


.offer-card {
    display: flex;
    
    min-width: 15rem;
    padding: 3rem;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    flex: 1 0 0;
    font-family: Inter;
    color: var(--text-color);
    width: fit-content;


    border-radius: 0.35rem;
    border: 0.1rem solid #D9D9D9;
    background: var(--background, #FFFBFA);

    height: auto;
}


.offer-card h2 {
    margin: 0;
}



.price {

}



.price h1 {
    font-size: 3rem;
    font-style: normal;
    font-weight: 700;
    line-height: 100%; /* 3rem */
    letter-spacing: -0.06rem;
    display: inline;
    margin: 0;
}


.price h3 {
    font-size: 1.5rem;
font-style: normal;
font-weight: 700;
line-height: 100%; /* 1.5rem */
letter-spacing: -0.03rem;
display: inline;
margin: 0;
}

.price p {
    display: inline;
    margin: 0;

    color: #757575;

    /* Body Base */
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    line-height: 140%; /* 1.4rem */
}


.offer-card ul {
    color: #757575;
    font-size: 1rem;
    width: 100%;
    gap: 0.5rem;

    display: flex;
    flex-direction: column;
    align-items: flex-start;

    align-self: stretch;
}


.offer-cards-container {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem 5%;
    width: 90%;
}


.offer-card.dark {
    color: var(--background-color);
    background-color: var(--text-color);
    padding: 3.3rem 3rem;
}

.offer-card.dark ul, .offer-card.dark p {
    color: var(--background-color);
}

@media (max-width:550px) {
    .offer-card {

        padding: 1.5rem 0.5rem;
    }

    .offer-card.dark {
        padding: 1.8rem 0.5rem;
    }

    .offer-card .button {

        width: 80%;
    }
    
}
