/**
 * fiche-rando-section-basse.css
 * 
 * Styles pour le shortcode [fiche_rando_section_basse]
 * Inclut : wrapper global, bloc de navigation régionale, espacements.
 * 
 * v1.0 — 19 mars 2026 — Création
 * v1.1 — 19 mars 2026 — Refonte navigation régionale :
 *        card blanche + icône SVG + texte + bouton pill + lien pays
 */

/* ─────────────────────────────────────────────────────────────
   Wrapper global — espacements entre les sections
   ───────────────────────────────────────────────────────────── */
.fiche-section-basse {
    width: 100%;
}

/* — 1. Diaporama — */
.fiche-sb__diaporama-titre {
    margin-bottom: 15px;
}
.fiche-sb__diaporama {
    margin-bottom: 40px;
}

/* — 2. Navigation régionale — */
.fiche-sb__nav-regionale {
    margin-bottom: 40px;
}

/* — 3. Randonnées à proximité — */
.fiche-sb__proximite-titre {
    margin-bottom: 15px;
}
.fiche-sb__proximite {
    margin-bottom: 40px;
}

/* — 4. Carte de proximité — */
.fiche-sb__carte-proximite {
    margin-bottom: 60px;
}

/* — 5. Randonnées à découvrir — */
.fiche-sb__decouvrir-titre {
    margin-bottom: 15px;
}
.fiche-sb__decouvrir-texte {
    margin-bottom: 25px;
}
.fiche-sb__decouvrir {
    margin-bottom: 50px;
}

/* ─────────────────────────────────────────────────────────────
   Bloc de navigation régionale — v1.1
   Design : card blanche sur fond de page gris,
   icône pin + texte d'accroche + bouton pill + lien pays discret
   ───────────────────────────────────────────────────────────── */
.hr-nav-regionale {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background-color: #ffffff;
    border: 1px solid #e2e6ea;
    border-radius: 10px;
    padding: 20px 24px;
    max-width: 800px;
}

/* Pastille icône */
.hr-nav-regionale__icon-wrap {
    flex-shrink: 0;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: #e1f5ee;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}
.hr-nav-regionale__icon {
    width: 20px;
    height: 20px;
    color: #0f6e56;
}

/* Contenu texte */
.hr-nav-regionale__content {
    flex: 1;
    min-width: 0;
}

/* Phrase d'accroche */
.hr-nav-regionale__texte {
    margin: 0 0 0px;
    font-size: 15px;
    line-height: 1.6;
    color: #333333;
}

/* Conteneur du bouton pill */
.hr-nav-regionale__bouton {
    margin-bottom: 16px;
}

/* Lien discret vers la page pays */
.hr-nav-regionale__pays {
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
    color: #333333;
}
.hr-nav-regionale__pays-link {
    color: #05668d;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}
.hr-nav-regionale__pays-link:hover,
.hr-nav-regionale__pays-link:focus {
    color: #044d6a;
    text-decoration: underline;
}

/* ─────────────────────────────────────────────────────────────
   Responsive
   ───────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
    .fiche-sb__diaporama-titre {
        margin-bottom: 8px;
    }
    .fiche-sb__diaporama {
        margin-bottom: 40px;
    }
    .fiche-sb__nav-regionale {
        margin-bottom: 40px;
    }
    .fiche-sb__proximite-titre {
        margin-bottom: 8px;
    }
    .fiche-sb__proximite {
        margin-bottom: 50px;
    }
    .fiche-sb__carte-proximite {
        margin-bottom: 50px;
    }
    .fiche-sb__decouvrir-titre {
        margin-bottom: 8px;
    }
    .fiche-sb__decouvrir-texte {
        margin-bottom: 20px;
    }

    .hr-nav-regionale {
        flex-direction: column;
        padding: 16px 18px;
        gap: 0;
    }
    .hr-nav-regionale__icon-wrap {
        display: none;
    }
    .hr-nav-regionale__texte {
        font-size: 14px;
        margin-bottom: 5px;
    }
    .hr-nav-regionale__pays {
        font-size: 14px;
    }
}

/* ─────────────────────────────────────────────────────────────
   Impression : masquer la navigation régionale
   ───────────────────────────────────────────────────────────── */
@media print {
    .fiche-sb__nav-regionale {
        display: none;
    }
}