/* food_tube — 오늘 저녁 (idea002 mockup/styles.css 위) */

#main-shell {
  --shell: 440px;
}

.feed-hero {
  margin-bottom: 8px;
}

.feed-hero .slot-chips {
  margin-bottom: 10px;
}

.slot-chip {
  display: inline-block;
  padding: 6px 14px;
  border: 2px solid var(--brutal);
  border-radius: 2px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  box-shadow: 2px 2px 0 var(--brutal);
}

.slot-chip--quick {
  background: var(--yellow);
  color: var(--ink);
}

.slot-chip--hearty {
  background: var(--sky-soft);
  color: var(--ink);
}

.slot-chip--light {
  background: color-mix(in srgb, var(--teal) 35%, white);
  color: var(--ink);
}

.feed-hero .lead {
  margin-bottom: 0;
}

.day-section {
  margin-bottom: 8px;
}

.day-section .day-label {
  margin: 20px 0 10px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.04em;
}

.day-section:first-of-type .day-label {
  margin-top: 0;
}

/* 레시피 카드 = .paper (design.html #paper) */
.recipe-thumb {
  display: block;
  margin: 0 0 14px;
  border: 2px solid var(--brutal);
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 3px 3px 0 var(--brutal);
  line-height: 0;
  transition: transform 0.12s, box-shadow 0.12s;
}

.recipe-thumb:hover {
  transform: translate(-2px, -2px);
  box-shadow: 5px 5px 0 var(--brutal);
}

.recipe-thumb img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: var(--surface-dim);
}

.recipe-paper h2 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.recipe-paper h2 a {
  color: inherit;
  text-decoration: none;
}

.recipe-paper h2 a:hover {
  color: var(--link);
}

.slot-badge {
  display: inline-block;
  margin-right: 6px;
  padding: 3px 8px;
  border: 2px solid var(--brutal);
  border-radius: 2px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  vertical-align: middle;
}

.slot-badge--quick {
  background: var(--yellow);
  color: var(--ink);
}

.slot-badge--hearty {
  background: var(--sky-soft);
  color: var(--ink);
}

.slot-badge--light {
  background: color-mix(in srgb, var(--teal) 35%, white);
  color: var(--ink);
}

.recipe-meta {
  margin: 0 0 14px;
  font-size: 13px;
  color: var(--muted);
}

.recipe-meta strong {
  color: var(--text-strong);
  font-weight: 600;
}

.ingredient-list {
  margin: 0 0 16px;
  padding-left: 1.15rem;
  font-size: 14px;
  line-height: 1.65;
  color: var(--text);
}

.ingredient-list li + li {
  margin-top: 4px;
}

.gear-note {
  margin: -8px 0 14px;
  font-size: 12px;
  color: var(--muted-soft);
}

.summary-lines {
  margin: 0 0 14px;
  padding-left: 1.15rem;
  font-size: 14px;
  line-height: 1.6;
  color: var(--text);
}

.summary-lines li + li {
  margin-top: 6px;
}

.recipe-paper .quote {
  margin: 0 0 14px;
}

.prep-hint {
  margin: 0 0 16px;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}

.recipe-paper .btn-row {
  margin-top: 4px;
}

.recipe-paper .btn-primary {
  text-decoration: none;
}

.recipe-paper .btn-secondary {
  text-decoration: none;
}

.top-bar .share-badge {
  font: inherit;
  cursor: pointer;
}

.top-bar .share-badge:hover {
  background: var(--surface);
  border-color: var(--brutal);
}

.empty-state {
  padding: 24px 0;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

.recipe-paper.is-hidden {
  display: none;
}

.day-section.is-collapsed {
  display: none;
}

.day-section.is-empty {
  display: none;
}

.load-more-wrap {
  text-align: center;
  margin: 20px 0 4px;
  padding: 0;
}

.load-more-wrap .btn-md {
  font: inherit;
  cursor: pointer;
}

.site-foot {
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px dashed rgba(0, 0, 0, 0.15);
}

.card-page-back {
  margin: 0;
}

.card-page-back a {
  font-weight: 600;
  text-decoration: none;
}

.card-page-back a:hover {
  color: var(--link);
}

@media (min-width: 720px) {
  #main-shell {
    --shell: 520px;
  }
}
