/* Section 06 — Ingredients */
.s-ing__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.s-ing__card {
  border-radius: var(--radius-md);
  overflow: hidden;
  background-color: var(--bg-elevated);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.s-ing__card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-md);
}

.s-ing__art {
  position: relative;
  aspect-ratio: 5 / 3;
  display: grid;
  place-items: center;
  color: rgba(255,255,255,0.85);
  font-weight: 800;
  letter-spacing: 0.2em;
}
.s-ing__art span {
  font-size: 2.4rem;
  font-weight: 900;
  background: rgba(0,0,0,0.18);
  padding: 0.15rem 0.65rem;
  border-radius: 8px;
  backdrop-filter: blur(4px);
}
.s-ing__art--a { background: linear-gradient(135deg, #3e1f1f, #e53935); }
.s-ing__art--b { background: linear-gradient(135deg, #1c3a2d, #4caf50); }
.s-ing__art--c { background: linear-gradient(135deg, #3a2d1c, #c48f2a); }
.s-ing__art--d { background: linear-gradient(135deg, #1e2c44, #3f6bbf); }
/* Image-mode art panel — admin supplied a custom image instead of the
   default gradient + number badge. Image fills the 5:3 panel via cover,
   so a 1:1 source is centre-cropped. No tint applied. */
.s-ing__art--img {
  background: var(--bg-elevated);
  overflow: hidden;
}
.s-ing__art--img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.s-ing__body { padding: 1.2rem; }
.s-ing__body h3 { font-size: 1.1rem; margin-bottom: 0.25rem; }
.s-ing__tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.6rem;
}
.s-ing__body p { margin: 0; font-size: 0.9rem; line-height: 1.55; }

@media (max-width: 960px) {
  .s-ing__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .s-ing__grid { grid-template-columns: 1fr; }
  .s-ing__art { aspect-ratio: 3 / 1; }
}
