/* === Subpage shared styles (recipes, planner, shopping, etc.) === */
body.page-subpage {
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* === Hero === */
.subpage-hero {
  width: 100%;
  padding: 0 24px;
  display: flex;
  justify-content: center;
}

.subpage-hero-inner {
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 1200px;
  width: 100%;
  padding: 60px 0;
}

.subpage-hero-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.subpage-hero-title {
  font-family: 'Inter', sans-serif;
  font-size: 60px;
  font-weight: 600;
  color: #000;
  letter-spacing: -0.04em;
  line-height: 1;
  margin: 0;
}

.subpage-hero-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #000;
  letter-spacing: -0.04em;
  margin: 0;
  line-height: 1.4;
}

/* === App nav image (decorative) === */
.subpage-hero-nav {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.subpage-hero-nav-img {
  width: 349px;
  height: auto;
  display: block;
}

/* === Responsive === */
@media (max-width: 768px) {
  .subpage-hero-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
    padding: 40px 0;
  }
  .subpage-hero-title { font-size: 44px; }
  .subpage-hero-subtitle { font-size: 18px; }
  .subpage-hero-nav-img { width: 280px; }
}

@media (max-width: 480px) {
  .subpage-hero-title { font-size: 36px; }
  .subpage-hero-subtitle { font-size: 16px; }
  .subpage-hero-nav-img { width: 240px; }
}
