/* ===== WRAPPER SUPPORTS ===== */
.ij-supports-wrapper {
  max-width: 1100px;
  margin: 40px auto;
  padding: 0 20px;
}

/* ===== TITRE ===== */
.ij-supports-wrapper h2 {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #1c1c1c;
}

/* ===== SOUS-TEXTE ===== */
.ij-supports-wrapper p {
  font-size: 15px;
  color: #555;
  margin-bottom: 25px;
}

/* ===== TABLE ===== */
.ij-supports-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.04);
}

/* ===== EN-TÊTE ===== */
.ij-supports-table thead th {
  background: #f7f7f9;
  font-size: 15px;
  font-weight: 600;
  text-align: left;
  padding: 16px 20px;
  border-bottom: 1px solid #e5e7eb;
  color: #333;
}

/* ===== LIGNES ===== */
.ij-supports-table td {
  padding: 18px 20px;
  font-size: 15px;
  color: #444;
  border-bottom: 1px solid #f0f0f0;
}

/* Dernière ligne */
.ij-supports-table tbody tr:last-child td {
  border-bottom: none;
}

/* Hover lignes */
.ij-supports-table tbody tr:hover {
  background: #fafafa;
}

/* ===== BOUTON ===== */
.ij-supports-table a.button {
  background: #073f4f;
  color: #fff !important;
  padding: 8px 14px;
  border-radius: 6px;
  font-size: 14px;
  transition: 0.2s ease;
  display: inline-block;
}

.ij-supports-table a.button:hover {
  background: #0b4f61;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 600px) {
  .ij-supports-table thead {
    display: none;
  }

  .ij-supports-table tr {
    display: block;
    margin-bottom: 15px;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 15px;
  }

  .ij-supports-table td {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border: none;
  }

  .ij-supports-table td::before {
    content: attr(data-label);
    font-weight: 600;
    color: #333;
  }
}
