/*--------------------------------------------------------------
Flexible content -  Featured Products
--------------------------------------------------------------*/
.simptom-products-section {
    margin-bottom: var(--space-24);
}
.simptom-products-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-bottom: var(--space-16);
}
.simptom-products-title h2 {
    font-size: var(--text-3xl);
    line-height: var(--leading-5);
    margin-bottom: var(--space-5);
    text-align: center;
}

.simptom-products-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: var(--space-12);
}
.simptom-products-wrapper a {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.simptom-products-wrapper a:hover img {
    border-color: var(--color-secondary);
    transform: translateY(-8px);
}
.simptom-products-wrapper a:hover .product-title {
    color: var(--color-secondary);
}
.simptom-products-wrapper .product-title {
    min-height: 56px;
    max-width: 240px;
    margin-inline: auto;
    font-family: var(--heading-font);
    color: var(--color-text);
    font-size: var(--text-xl);
    font-weight: 700;
    text-align: center;
    transition: color ease 250ms;
}
.simptom-products-wrapper .product img {
    max-width: 240px;
    height: 240px;
    object-fit: contain;
    border-radius: 5px;
    padding: 10px;
    border: 1px solid var(--color-border);
    transition: all ease 250ms;
}

@media screen and (max-width: 1024px) {
    .simptom-products-wrapper {
        gap: var(--space-6);
    }
}
