.highlights{
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem 5%;
}

.section-title{
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.section-title h2{
    font-family: 'Della Respira', 'sans-serif';
    font-size: 3rem;
    color: #CD8195;
    font-weight: 600;
}

.section-divider{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 0;
}

.section-divider::before, .section-divider::after{
    content: "";
    width: 80px;
    height: 2.5px;
    background-color: #98C5AE;
    border-radius: 999px;
}

.section-divider span{
    color: #98C5AE;
    font-size: 1.3rem;
}

.section-title p{
    color: #98C5A5;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.highlights-grid{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.highlight-card{
    background-color: #FBF7EE;
    border-radius: 24px;
    overflow: hidden;
    transition: .4s;
}

.highlight-card:hover{
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,.08);
}

.highlight-card img{
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.highlight-info{
    padding: 1.5rem;
}

.highlight-info h3{
    color: #CD8195;
    font-family: 'Della Respira', 'sans-serif';
    font-weight: 600;
    font-size: 1.3rem;
    margin-bottom: .8rem;
}

.highlight-info p{
    color: #98C5AE;
    line-height: 1.4;
    margin-bottom: 1.5rem;
}

.highlight-info a{
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    color: #98C5AE;
    border: 1px solid #98C5AE;
    border-radius: 999px;
    padding: .5rem 2rem;
    font-weight: 600;
    transition: .3s;
}

.highlight-info a:hover{
    gap: 1rem;
    background-color: #98C5AE;
    color: #FBF7EE;
}

.highlights .all-products{
    margin-top: 1.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    text-align: center;
    color: #CD8195;
    border: 1px solid #CD8195;
    border-radius: 999px;
    padding: .5rem 2rem;
    font-weight: 600;
    transition: .3s;
}

.highlights .all-products:hover{
    gap: 1rem;
    background-color: #CD8195;
    color: #FBF7EE;
}

@media (max-width: 992px){
    .highlights{
        padding: 4rem 2rem;
    }

    .section-title h2{
        font-size: 2.5rem;
    }

    .highlights-grid{
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .highlight-card img{
        height: 220px;
    }
}

@media (max-width: 768px){
    .highlights{
        padding: 3rem 1.25rem;
    }

    .section-title h2{
        font-size: 2rem;
        line-height: 1.2;
    }

    .section-title p{
        font-size: .95rem;
        max-width: 320px;
    }

    .highlights-grid{
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 1rem;
    }

    .highlight-card{
        border-radius: 20px;
    }

    .highlight-card img{
        height: 240px;
    }

    .highlight-info{
        padding: 1.25rem;
    }

    .highlight-info h3{
        font-size: 1.2rem;
    }

    .highlight-info p{
        font-size: .95rem;
        margin-bottom: 1rem;
    }

    .highlight-info a{
        width: 100%;
        justify-content: center;
        padding: .85rem 1rem;
    }

    .all-products{
        width: 100%;
        max-width: 350px;
        padding: .9rem;
    }
}