/* ============================================================
   SUPPLIERS PAGES — Brenom Systems
   ============================================================ */


/* ============================================================
   WHAT WE DON'T DO — checklist
   ============================================================ */

.sn-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  max-width: 640px;
  border: 1px solid var(--dark);
  margin-bottom: 32px;
}

.sn-checklist__item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 28px;
  font-size: 18px;
  font-weight: 500;
  color: var(--dark);
  line-height: 1.4;
  border-bottom: 1px solid var(--dark);
}

.sn-checklist__item:last-child {
  border-bottom: none;
}

.sn-checklist__item::before {
  content: '';
  width: 16px;
  height: 16px;
  border: 1.5px solid var(--gray-mid);
  flex-shrink: 0;
}

.sn-note {
  font-size: 18px;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.5;
  max-width: 640px;
}


/* ============================================================
   VERIFY GRID — 2x2 capability cards
   ============================================================ */

.sn-verify-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border: 1px solid var(--dark);
}

.sn-verify-card {
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  border-right: 1px solid var(--dark);
  border-bottom: 1px solid var(--dark);
}

.sn-verify-card:nth-child(2n) {
  border-right: none;
}

.sn-verify-card:nth-child(3),
.sn-verify-card:nth-child(4) {
  border-bottom: none;
}

.sn-verify-card__title {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--orange);
}

.sn-verify-card__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.sn-verify-card__list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  font-size: 18px;
  font-weight: 500;
  color: var(--dark);
  line-height: 1.5;
  border-bottom: 1px solid var(--gray-light);
}

.sn-verify-card__list li:last-child {
  border-bottom: none;
}

.sn-verify-card__list li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--orange);
  border-radius: 50%;
  flex-shrink: 0;
}


/* ============================================================
   VERIFY GRID — 3-col variant
   ============================================================ */

.sn-verify-grid--3col {
  grid-template-columns: repeat(3, 1fr);
}

.sn-verify-grid--3col .sn-verify-card {
  border-bottom: none;
  border-right: 1px solid var(--dark);
}

.sn-verify-grid--3col .sn-verify-card:nth-child(3n) {
  border-right: none;
}


/* ============================================================
   PROCESS GRID — 2x2 numbered steps
   ============================================================ */

.sn-process-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border: 1px solid var(--dark);
}

.sn-process-step {
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-right: 1px solid var(--dark);
  border-bottom: 1px solid var(--dark);
}

.sn-process-step:nth-child(2n) {
  border-right: none;
}

.sn-process-step:nth-child(3),
.sn-process-step:nth-child(4) {
  border-bottom: none;
}

.sn-process-step__num {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--orange);
}

.sn-process-step__title {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--dark);
  line-height: 1.3;
}

.sn-process-step__body {
  font-size: 18px;
  font-weight: 500;
  color: var(--gray-mid);
  line-height: 1.65;
}


