/* ============================================================
   commandes.css — Styles exclusifs à commandes.html
   Requiert bekef.css chargé avant ce fichier.
   ============================================================ */

/* ── Route cards ── */
.route-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 26px;
  }
  .route {
    position: relative;
    display: flex;
    flex-direction: column;
    background: var(--bg-3);
    border: 1px solid var(--line);
    border-radius: 7px;
    overflow: hidden;
    transition: .25s;
    min-height: 420px;
    text-decoration: none;
    color: inherit;
  }
  .route:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
    box-shadow: 0 30px 64px rgba(0,0,0,.45);
  }
  .route .rimg {
    position: relative;
    height: 190px;
  }
  .route .rimg .ph {
    position: absolute;
    inset: 0;
    border: 0;
    border-bottom: 1px solid var(--line-soft);
  }
  .route .rimg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  .route .rbody {
    padding: 32px 34px 34px;
    display: flex;
    flex-direction: column;
    flex: 1;
  }
  .route .rk {
    font-size: 11px;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 600;
  }
  .route h2 {
    font-size: 32px;
    margin: 10px 0 12px;
  }
  .route p {
    font-size: 15px;
    color: var(--text-dim);
    font-weight: 300;
    flex: 1;
  }
  .route .rlist {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 9px;
    margin: 18px 0 24px;
  }
  .route .rlist li {
    display: flex;
    align-items: center;
    gap: 11px;
    font-size: 14px;
    color: var(--text);
  }
  .route .rlist .b {
    width: 6px;
    height: 6px;
    flex: none;
    border: 1px solid var(--gold);
    transform: rotate(45deg);
  }
  
  /* ── Info band (3 colonnes) ── */
  .info-band {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  
  /* ============================================================
     RESPONSIVE 940px
     ============================================================ */
  @media (max-width: 940px) {
    .info-band { grid-template-columns: 1fr; }
  }
  
  /* ============================================================
     RESPONSIVE 820px
     ============================================================ */
  @media (max-width: 820px) {
    .route-grid { grid-template-columns: 1fr; }
  }