/* <<< --- Summary --- >>> */


#summary {
    background-color: var(--black);
    padding: 100px 0;
}

#summary .section-content {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    padding-top: 20px;
    padding-bottom: 20px;
}

#summary .card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 380px;
    height: 160px;
    background-image: url(../imgs/bg-summary.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    padding-bottom: 10px;
}

#summary .card .card-title {
    font-family: 'rift';
    font-size: 68px;
    font-weight: 900;
    line-height: 80px;
    text-align: center;
    font-style: italic;
    text-transform: uppercase;
    color: var(--color);
}

#summary .card .card-subtitle {
    font-size: 16px;
    font-weight: 600;
    line-height: 20px;
    text-align: center;
    text-transform: uppercase;
    color: var(--white);
}

@media screen and (max-width: 1260px) {
    #summary .section-content {
        gap: var(--padding);
        padding-top: 0;
        padding-bottom: 0;
    }
}

@media screen and (max-width: 900px) {
    #summary {
        padding: var(--padding-section) 0;
    }
}

@media screen and (max-width: 600px) {
    #summary .card {
        width: 300px;
        height: 130px;
    }
    #summary .card .card-title {
        font-size: 48px;
        line-height: 60px;
    }
    #summary .card .card-subtitle {
        font-size: 14px;
        font-weight: 500;
    }
}