/* ===========================================================
   KLN CONTENT — Réassurances fiche produit (PergolaSwiss)
   DA native : vert marque #506e50 / panneau doux #f4f8f4
   Calqué sur .product-reassurances (ClassicBlocks)
   =========================================================== */
.pgs-reassure {
  margin: 24px 0 32px;
  padding: 24px 28px;
  background-color: #f4f8f4;
  border-radius: 8px;
  font-family: inherit;
}

.pgs-reassure__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(225px, 1fr));
  gap: 20px 28px;
}

/* Fusion : masque l'ancien bloc réassurance ClassicBlocks (page produit only) */
.product-reassurances-container {
  display: none !important;
}

.pgs-reassure__item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.pgs-reassure__icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #e7efe7;
  color: #506e50;
  transition: background-color .2s ease;
}

.pgs-reassure__icon svg {
  width: 22px;
  height: 22px;
  stroke-width: 1.5;
}

.pgs-reassure__item:hover .pgs-reassure__icon {
  background: #dde8dd;
}

.pgs-reassure__txt {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.pgs-reassure__title {
  font-size: 13px;
  font-weight: 500;
  color: #2b2b2b;
  line-height: 1.25;
}

.pgs-reassure__sub {
  font-size: 12px;
  font-weight: 500;
  color: #506e50;
  line-height: 1.25;
  margin-top: 3px;
}

/* Tablette */
@media (max-width: 1199px) and (min-width: 768px) {
  .pgs-reassure__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* Mobile */
@media (max-width: 767px) {
  .pgs-reassure { padding: 20px 18px; }
  .pgs-reassure__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px 14px; }
  .pgs-reassure__icon { width: 38px; height: 38px; }
  .pgs-reassure__icon svg { width: 20px; height: 20px; }
}

@media (max-width: 460px) {
  .pgs-reassure__grid { grid-template-columns: 1fr; }
}
