/*
 * Maillage interne ("Explorer notre sélection") pour les pages
 * appellation/région générées par DV SEO Appellations.
 * Scope strict : uniquement les classes dv-maillage-cat et enfants,
 * pour ne rien affecter du reste du thème.
 */

.dv-maillage-cat {
  margin-bottom: 48px;
}

.dv-maillage-cat > h2 {
  font-size: 22px;
  font-weight: 600;
  border-bottom: 1px solid #e8e0d5;
  padding-bottom: 10px;
  margin-bottom: 20px;
}

.dv-pills-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.dv-pill {
  border: 1.5px solid #7a1a1a;
  border-radius: 20px;
  padding: 6px 16px;
  font-size: 13px;
  color: #7a1a1a;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.15s;
}

.dv-pill:hover {
  background: #7a1a1a;
  color: #fff;
}

.dv-domaines-cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 16px;
}

.dv-domaine-card {
  border: 1px solid #e8dcc8;
  border-radius: 6px;
  padding: 14px 16px;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.dv-domaine-card:hover {
  border-color: #7a1a1a;
  box-shadow: 0 4px 12px rgba(122, 26, 26, 0.08);
}

.dv-domaine-name {
  font-size: 14px;
  font-weight: 600;
  color: #1a1a1a;
}

.dv-domaine-cta {
  font-size: 12px;
  color: #7a1a1a;
  font-weight: 500;
}

@media (max-width: 768px) {
  .dv-domaines-cat-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
