/*
 * "Conseils d'expert" — affichage front sur la fiche produit.
 * Classes BEM préfixe yat-expert-advice__.
 */

.yat-expert-advice {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin: 2rem 0;
}

.yat-expert-advice__title {
    margin: 0 0 .5rem;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--color-text, #1c1c1c);
}

.yat-expert-advice__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.yat-expert-advice__card {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1.5rem;
    padding: 1.5rem;
    background: #f7f5f1;
    border-radius: 12px;
    align-items: start;
}

.yat-expert-advice__photo-wrap {
    flex-shrink: 0;
}

.yat-expert-advice__photo {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    object-fit: cover;
    background: #e8e4dd;
    display: block;
}

.yat-expert-advice__body {
    display: flex;
    flex-direction: column;
    gap: .6rem;
    min-width: 0;
}

.yat-expert-advice__name {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 600;
    color: #1c1c1c;
    line-height: 1.3;
}

.yat-expert-advice__role {
    margin: 0;
    font-size: .9rem;
    color: #6f6f6f;
    font-style: italic;
}

.yat-expert-advice__quote {
    margin: .35rem 0;
    padding: 0 0 0 1rem;
    border-left: 3px solid #c9a86b;
    font-size: 1rem;
    line-height: 1.5;
    color: #2c2c2c;
    font-style: italic;
}

.yat-expert-advice__recommendation {
    margin: 0;
    font-size: .95rem;
    line-height: 1.6;
    color: #3a3a3a;
}

@media (max-width: 600px) {
    .yat-expert-advice__card {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 1.25rem;
    }

    .yat-expert-advice__photo-wrap {
        margin: 0 auto;
    }

    .yat-expert-advice__quote {
        text-align: left;
    }

    .yat-expert-advice__recommendation {
        text-align: left;
    }
}
