/* ===============================
   BASE TYPO / UTILITAIRES
================================ */
.nowrap {
  white-space: nowrap !important;
}
.clamp-title {
  font-size: clamp(12px, 3vw, 20px);
}
.clamp-breed {
  font-size: clamp(11px, 2.8vw, 18px);
}
.clamp-content {
  font-size: clamp(11px, 2.5vw, 17px);
}

/* ===============================
   GRID TARIFS (SANS TABLE)
================================ */
.tarifs-grid {
  display: grid;
  grid-template-columns:
    minmax(180px, 1fr)
    minmax(80px, 110px)
    minmax(80px, 110px);
  row-gap: 0;
  column-gap: 0;
  width: 100%;
  max-width: 100%;
  align-items: start;
}

@media (max-width: 480px) {
  .tarifs-grid {
    grid-template-columns:
      minmax(140px, 1fr)
      minmax(70px, 90px)
      minmax(70px, 90px);
  }
}

/* ===============================
   EN-TÊTES
================================ */
.tarifs-grid .head {
  font-weight: bold;
  border-bottom: 2px solid #444;
  padding: 8px 6px;
  text-align: center;
  white-space: nowrap;
  font-size: clamp(12px, 3vw, 19px);
}

.head.race {
  text-align: left;
  padding-left: 0.5em;
}

/* ===============================
   WRAPPER SETTER - SANS SUBGRID
================================ */
.bg-gray-wrapper {
  grid-column: 1 / -1;
  display: grid;
  
  /* On répète EXACTEMENT les mêmes colonnes que le parent */
  grid-template-columns:
    minmax(180px, 1fr)
    minmax(80px, 110px)
    minmax(80px, 110px);
  
  background-color: #f0f0f0;
  row-gap: 0;
  column-gap: 0;
}

@media (max-width: 480px) {
  .bg-gray-wrapper {
    grid-template-columns:
      minmax(140px, 1fr)
      minmax(70px, 90px)
      minmax(70px, 90px);
  }
}

/* ===============================
   GROUPES (RACES)
================================ */
.tarifs-grid .group {
  grid-column: 1 / -1;
	padding: 0.5rem 0 0 1rem;
  font-weight: bold;
  font-size: clamp(11px, 2.8vw, 18px);
}

.tarifs-grid .group span {
  font-weight: normal;
  font-style: italic;
  font-size: clamp(11px, 2.5vw, 16px);
}

#gdoodle{
	padding-top: 0.7rem;
	padding-bottom: 0;
}

/* ===============================
   LIGNES DE PORTÉES
================================ */
.tarifs-grid .portee {
  color: #308239;
  font-style: italic;
  font-weight: bold;
  line-height: 1.4;
  font-size: clamp(11px, 2.5vw, 17px);
	padding: 0.2rem 0 0.2rem 0.5rem;
}
p.reservation{
	font-style: italic;
	font-weight: normal;
	color: black;
}

/* ===============================
   PRIX
================================ */
.tarifs-grid .price {
  text-align: center;
  font-weight: bold;
  color: #308239;
  white-space: nowrap;
  font-size: clamp(12px, 3vw, 16px);
}

.tarifs-grid .price.old {
  color: #cf2e2e;
  text-decoration: line-through;
}

.price#black-cross{
	text-decoration: line-through;
	text-decoration-color: black;
}
/* ===============================
   CELLULES VIDES
================================ */
.tarifs-grid > div:empty,
.bg-gray-wrapper > div:empty {
  min-height: 1px;
}

/* ===============================
   NOTES / INFOS
================================ */
.tarifs-grid .note {
  grid-column: 1 / -1;
  padding: 6px 8px 16px;
  font-style: italic;
  font-size: clamp(10px, 2.3vw, 13px);
}