/*
Theme Name: Eliaut
Author: RICHARD Nicolas
Author URI: https://eliaut.com/
Description: Theme principal fait main de Eliaut (Page SAV)
Version: 1.0.0
*/

/* ==========================================================================
1. SECTION SAV
========================================================================== */
.section-sav {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
}
.sav-cards {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}
.sav-card {
    display: flex;
    flex-direction: row;
    gap: 2.5rem;
}
.sav-card img {
    width: 50%;
    flex-shrink: 0;
    aspect-ratio: 16/10;
    object-fit: cover;
    height: auto;
}
.sav-card-content {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin: 2.5rem 0;
}
.sav-card-content p {
    text-wrap: balance;
}
.sav-card-content p a {
    color: var(--color-text);
}
.sav-card-content p a:hover {
    transition: color 0.3s ease-in-out;
    text-decoration-color: transparent;
}
@media screen and (max-width: 1130px) {
    .sav-card {
        flex-direction: column;
        gap: 0;
    }
    .sav-card img {
        width: 100%;
    }
    .sav-card-content {
        gap: 1.25rem;
        margin: 1.25rem 0;
    }
}