.recalls-page {
  display: grid;
  gap: 24px;
  padding-top: 32px;
  padding-bottom: 64px;
}

.recalls-hero,
.recalls-help,
.recall-card,
.recalls-state {
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.06);
}

.recalls-hero {
  padding: clamp(24px, 5vw, 48px);
  background:
    radial-gradient(circle at top right, rgba(220, 38, 38, 0.12), transparent 36%),
    #fff;
}

.recalls-back {
  color: var(--muted);
  font-weight: 700;
}

.recalls-kicker {
  margin: 24px 0 8px;
  color: #b91c1c;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.recalls-hero h1 {
  max-width: 840px;
  font-size: clamp(34px, 6vw, 64px);
  line-height: 1.03;
  letter-spacing: -0.05em;
}

.recalls-hero > p:last-child {
  max-width: 760px;
  margin-top: 16px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.recalls-list {
  display: grid;
  gap: 18px;
}

.recalls-state,
.recalls-help,
.recall-card {
  padding: clamp(20px, 4vw, 34px);
}

.recall-card {
  display: grid;
  grid-template-columns: minmax(0, 180px) minmax(0, 1fr);
  gap: 26px;
}

.recall-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 18px;
  background: #f1f5f9;
}

.recall-card-copy {
  display: grid;
  align-content: start;
  gap: 14px;
}

.recall-reference {
  color: #b91c1c;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.recall-card h2 {
  font-size: clamp(24px, 4vw, 38px);
  letter-spacing: -0.035em;
}

.recall-detail {
  display: grid;
  gap: 5px;
  padding: 14px 16px;
  border-radius: 16px;
  background: #f8fafc;
  line-height: 1.6;
}

.recall-detail strong {
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.recall-identifiers {
  color: var(--muted);
  font-size: 14px;
}

.recalls-help {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.recalls-help p {
  flex: 1 1 420px;
  color: var(--muted);
}

@media (max-width: 640px) {
  .recall-card {
    grid-template-columns: 1fr;
  }

  .recall-card img {
    max-height: 260px;
  }
}
