/* Encart d'introduction avec bordure orange à gauche et fond crème.
   Utilisé pour expliquer que les stands sont à l'intérieur des magasins. */
.pos-intro {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: #fff8ee;
  border-left: 3px solid var(--orange);
  padding: 16px 20px;
  margin-bottom: 28px;
  font-size: 14px;
  line-height: 1.65;
  color: #444;
  border-radius: 0 4px 4px 0;
}
.pos-intro i {
  color: var(--orange);
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 2px;
}
.pos-intro strong { color: #1d1d1d; }

/* Liste des stands : chaque .pos-item est séparé par une bordure basse,
   sauf le dernier élément. */
.pos-list {
  background: var(--section-bg);
  padding: 30px 36px 36px;
}
.pos-item {
  padding: 22px 0;
  border-bottom: 1px solid #ddd;
}
.pos-item:last-child { border-bottom: none; }
.pos-test { padding: 22px 0; }

/* Placeholder visuel pour les emplacements à venir (fond rayé + texte centré) */
.test-block {
  aspect-ratio: 16 / 5;
  width: 100%;
  border: 2px dashed #c9a06a;
  background:
    repeating-linear-gradient(45deg, rgba(201,160,106,0.10) 0 10px, rgba(201,160,106,0.18) 10px 20px);
  color: #8a6a3d;
  font-family: "Cormorant Garamond", serif;
  font-size: 30px;
  font-style: italic;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
}

/* En-tête d'un stand : bloc de date (optionnel) + nom et période */
.pos-head {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 14px;
}
/* Bloc de date stylisé : jour en gras en haut, mois en fond gris en bas */
.pos-date {
  background: #fff;
  border: 1px solid #d6d6d6;
  width: 46px;
  text-align: center;
  flex-shrink: 0;
  margin-top: 4px;
}
.pos-date .day {
  display: block;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.1;
  padding: 4px 0 2px;
  color: #1d1d1d;
}
.pos-date .mo {
  display: block;
  font-size: 10px;
  color: #555;
  text-transform: uppercase;
  background: #ececec;
  padding: 3px 0;
  letter-spacing: 1px;
}
.pos-headings { line-height: 1.2; }
.pos-period {
  color: var(--orange);
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 2px;
}
.pos-period .small {
  color: #888;
  font-size: 14px;
  margin-right: 4px;
}
.pos-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 28px;
  font-weight: 500;
  color: #1d1d1d;
}

/* Corps d'un stand : photo à gauche, infos à droite.
   "reverse" inverse les colonnes via order CSS (photo à droite, infos à gauche). */
.pos-body {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 28px;
  align-items: start;
}
.pos-body.reverse { grid-template-columns: 1fr 280px; }
.pos-body.reverse .pos-img { order: 2; }
.pos-body.reverse .pos-info { order: 1; }

.pos-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border: 1px solid #d8d8d8;
  overflow: hidden;
}
.pos-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.pos-info p {
  margin: 0 0 14px;
  font-size: 14px;
  line-height: 1.6;
}
.pos-info .accent { color: #1d1d1d; font-weight: 600; }

.pos-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 10px 0;
  font-size: 14px;
}
.pos-row .lbl {
  text-decoration: underline;
  color: #444;
}
.pos-row .btn {
  padding: 6px 14px;
  text-transform: none;
  letter-spacing: 0.3px;
  font-weight: 600;
  font-size: 12px;
}

/* Tablette : les deux colonnes passent en une seule,
   la classe reverse n'a plus d'effet (ordre DOM naturel rétabli). */
@media (max-width: 720px) {
  .pos-body, .pos-body.reverse { grid-template-columns: 1fr; }
  .pos-body.reverse .pos-img { order: 1; }
  .pos-body.reverse .pos-info { order: 2; }
}

@media (max-width: 480px) {
  .pos-list { padding: 16px 12px 20px; }
  .pos-intro { padding: 12px 14px; font-size: 13px; }
  .pos-name { font-size: 22px; }
  .pos-period { font-size: 18px; }
}
