/*
Theme Name:  Hello Elementor VAE
Template:    hello-elementor
Version:     1.0
Description: Child theme pour passionvae.fr — Fly 3.0
*/

/* ===== FONT RESET — no Times New Roman ===== */
body, body * {
    font-family: Roboto, 'Helvetica Neue', Arial, sans-serif;
}

/* ===== ARCHIVE / CATEGORY PAGES ===== */
.pv-archive-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: center;
    padding: 48px 24px;
    background: linear-gradient(135deg, #1a4a7a 0%, #0d2d52 100%);
    border-radius: 12px;
    margin-bottom: 40px;
}
.pv-archive-hero__content h1 {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    color: #ffffff;
    margin-bottom: 16px;
    line-height: 1.3;
}
.pv-archive-hero__content .pv-intro {
    color: rgba(255,255,255,0.85);
    font-size: 1rem;
    line-height: 1.6;
}
.pv-archive-hero__img img {
    width: 100%;
    border-radius: 8px;
    object-fit: cover;
    max-height: 280px;
}
@media (max-width: 768px) {
    .pv-archive-hero { grid-template-columns: 1fr; }
    .pv-archive-hero__img { display: none; }
}

/* ===== CARDS GRILLE ===== */
.pv-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
    margin-bottom: 48px;
}
.pv-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,.08);
    transition: transform .2s, box-shadow .2s;
}
.pv-card:hover { transform: translateY(-3px); box-shadow: 0 6px 20px rgba(0,0,0,.12); }
.pv-card__img img { width: 100%; height: 200px; object-fit: cover; }
.pv-card__body { padding: 18px; }
.pv-card__cat {
    display: inline-block;
    background: #1a4a7a;
    color: #fff;
    font-size: .7rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 2px 8px;
    border-radius: 3px;
    margin-bottom: 8px;
}
.pv-card__title { font-size: 1rem; font-weight: 700; color: #1a1a1a; margin-bottom: 8px; line-height: 1.4; }
.pv-card__excerpt { font-size: .85rem; color: #555; line-height: 1.5; margin-bottom: 12px; }
.pv-card__price { font-size: .8rem; font-weight: 700; color: #1a4a7a; }
.pv-card__cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: .8rem;
    font-weight: 700;
    color: #1a4a7a;
    margin-top: 8px;
}

/* ===== SEO DESC (après grille) ===== */
.pv-archive-seo-desc {
    background: #f7f9fc;
    border-left: 4px solid #1a4a7a;
    padding: 24px 28px;
    border-radius: 0 8px 8px 0;
    margin-bottom: 40px;
}
.pv-archive-seo-desc h2 { font-size: 1.3rem; color: #1a1a1a; margin-bottom: 12px; }

/* ===== FAQ ===== */
.pv-faq { margin-bottom: 48px; }
.pv-faq__title { font-size: 1.5rem; font-weight: 800; color: #1a1a1a; margin-bottom: 20px; }
.pv-faq-item { border: 1px solid #e0e6ed; border-radius: 8px; margin-bottom: 10px; overflow: hidden; }
.pv-faq-q {
    width: 100%;
    background: none;
    border: none;
    padding: 16px 20px;
    text-align: left;
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a1a;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.pv-faq-q::after { content: '+'; font-size: 1.4rem; color: #1a4a7a; }
.pv-faq-item.open .pv-faq-q::after { content: '−'; }
.pv-faq-a { display: none; padding: 0 20px 16px; color: #444; font-size: .95rem; line-height: 1.6; }
.pv-faq-item.open .pv-faq-a { display: block; }

/* ===== ARTICLES LIÉS ===== */
.pv-related { margin-top: 48px; padding-top: 32px; border-top: 2px solid #e8edf2; }
.pv-related__title { font-size: 1.3rem; font-weight: 700; color: #1a1a1a; margin-bottom: 20px; }
.pv-related__grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 16px; }
.pv-related__item a { display: block; background: #f7f9fc; border-radius: 8px; padding: 14px; font-size: .9rem; font-weight: 600; color: #1a4a7a; text-decoration: none; transition: background .2s; }
.pv-related__item a:hover { background: #e8edf2; }
