/* ============================================================
   CHECK ITEMS — icon marker + content flowing layout
   ============================================================ */

.check-item {
  display: flex;
  gap: 20px;
  padding: 28px 0;
}

.check-item + .check-item {
  border-top: 1px solid var(--grey-100);
}

.check-marker {
  width: 44px;
  height: 44px;
  background: var(--navy);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.check-marker i {
  color: var(--gold);
  font-size: 1.125rem;
}

.check-content h3,
.check-content h4 {
  margin: 0 0 12px;
  padding: 0;
  border: none;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  font-size: 1.0625rem;
}

.check-content h4 {
  font-size: 1rem;
}

.check-content p {
  margin-bottom: 14px;
  color: var(--grey-600);
  font-size: 0.9375rem;
  line-height: 1.75;
}

.check-content p:last-child {
  margin-bottom: 0;
}

/* Warning & Danger marker variants */
.check-marker--warning {
  background: linear-gradient(135deg, #92400e 0%, #d97706 100%);
}

.check-marker--warning i {
  color: #ffffff;
}

.check-marker--danger {
  background: linear-gradient(135deg, #991b1b 0%, #dc2626 100%);
}

.check-marker--danger i {
  color: #ffffff;
}

/* ============================================================
   REASON ITEMS — numbered list with prominent circles
   ============================================================ */

.reason-item {
  display: flex;
  gap: 22px;
  padding: 32px 0;
}

.reason-item + .reason-item {
  border-top: 1px solid var(--grey-100);
}

.reason-number {
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, #0B1226 0%, #1A2744 100%);
  color: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.reason-content h3 {
  margin: 0 0 14px;
  padding: 0;
  border: none;
  font-size: 1.0625rem;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.reason-content p {
  margin-bottom: 14px;
  color: var(--grey-600);
  font-size: 0.9375rem;
  line-height: 1.75;
}

.reason-content p:last-child {
  margin-bottom: 0;
}

/* Warning variant — amber numbers for trade-offs */
.reason-item--warning .reason-number {
  background: linear-gradient(135deg, #92400e 0%, #d97706 100%);
  color: #ffffff;
}
