/* ==========================================================================
   1. Reset & Base Setup
   ========================================================================== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  background-color: #FAF5EF; /* Warm off-white background */
  color: #2D3748;
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  max-width: 1050px;
  margin: 40px auto;
  padding: 0 24px;
  flex: 1;
  width: 100%;
}

/* ==========================================================================
   2. Navigation Header & Sticky Bar Guard (Global Top Stacking)
   ========================================================================== */
header {
  background-color: #FFFFFF !important; /* Forces solid background when scrolling */
  border-bottom: 2px solid #E2E8F0;
  padding: 12px 24px;
  position: sticky;
  top: 0;
  z-index: 99999 !important; /* Stays firmly above ALL scrolling page elements */
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.header-container {
  max-width: 1050px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Brand Logo Link & Guard */
.logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-img {
  height: 42px !important;
  max-height: 42px !important;
  width: auto !important;
  border-radius: 6px;
  display: block;
  object-fit: contain;
}

.logo-text {
  font-size: 1.4rem;
  font-weight: 700;
  color: #9B2C2C; /* Warm deep burgundy red */
  letter-spacing: -0.5px;
}

/* Navigation Menu */
nav ul {
  list-style: none;
  display: flex;
  gap: 28px;
  align-items: center;
}

nav a {
  text-decoration: none;
  color: #4A5568;
  font-weight: 600;
  font-size: 0.95rem;
  position: relative;
  padding-bottom: 4px;
  transition: color 0.2s ease;
}

/* Hover & Active States */
nav a:hover, 
nav a.active {
  color: #9B2C2C;
}

/* Active tab underline indicator */
nav a.active::after,
nav a:hover::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #9B2C2C;
  border-radius: 2px;
}

/* ==========================================================================
   3. Hero Welcome Section (Home Page)
   ========================================================================== */
.hero-welcome {
  text-align: center;
  margin: 10px 0 32px;
}

.hero-welcome h1 {
  font-size: 2.25rem;
  color: #9B2C2C;
  letter-spacing: -0.5px;
  margin-bottom: 6px;
}

.hero-welcome p {
  font-size: 1.1rem;
  color: #718096;
}

/* ==========================================================================
   4. Category Badges & Tags
   ========================================================================== */
.recipe-category-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 8px;
}

.recipe-category-badges-center {
  justify-content: center;
  margin-bottom: 12px;
}

.recipe-category-badge {
  display: inline-block;
  background-color: #FAF5EF;
  color: #9B2C2C;
  border: 1px solid #E2E8F0;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 3px 10px;
  border-radius: 12px;
  white-space: nowrap;
  text-decoration: none;
  transition: all 0.2s ease;
}

a.recipe-category-link:hover {
  background-color: #9B2C2C;
  color: #FFFFFF;
  border-color: #9B2C2C;
}

/* ==========================================================================
   5. Featured Recipe Carousel
   ========================================================================== */
.featured-section {
  margin: 20px 0 60px;
}

.featured-section h2 {
  font-size: 1.8rem;
  color: #9B2C2C;
  margin-bottom: 24px;
  text-align: center;
}

.carousel-container {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
}

.carousel-track-wrapper {
  overflow: hidden;
  width: 100%;
  border-radius: 12px;
}

.carousel-track {
  display: flex;
  gap: 20px;
  transition: transform 0.4s ease-in-out;
}

.carousel-card {
  flex: 0 0 calc((100% - 40px) / 3);
  max-width: calc((100% - 40px) / 3);
  background-color: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.carousel-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}

.carousel-card-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}

.carousel-card-placeholder {
  width: 100%;
  aspect-ratio: 1 / 1;
  background-color: #EDF2F7;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-card-content {
  padding: 16px 20px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.carousel-card-content h3 {
  font-size: 1.1rem;
  color: #2D3748;
  margin-bottom: 6px;
  transition: color 0.2s ease;
}

.carousel-card:hover .carousel-card-content h3 {
  color: #9B2C2C;
}

.carousel-card-content p {
  color: #718096;
  font-size: 0.875rem;
  line-height: 1.5;
}

.carousel-btn {
  background-color: #FFFFFF;
  border: 1px solid #E2E8F0;
  color: #9B2C2C;
  font-size: 1.25rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  transition: background-color 0.2s ease, transform 0.2s ease;
  z-index: 10;
  flex-shrink: 0;
}

.carousel-btn:hover {
  background-color: #9B2C2C;
  color: #FFFFFF;
}

/* ==========================================================================
   6. Recipe Index Page & Grid Controls (Lower Stacking Context)
   ========================================================================== */
.recipes-archive-container {
  max-width: 1050px;
  margin: 20px auto 60px;
  position: relative;
  z-index: 1 !important;
}

.archive-header {
  text-align: center;
  margin-bottom: 32px;
  position: relative;
  z-index: 1 !important;
}

.archive-header h1 {
  font-size: 2.25rem;
  color: #9B2C2C;
  margin-bottom: 8px;
}

.archive-header p {
  color: #718096;
  margin-bottom: 24px;
}

.search-box-wrapper {
  max-width: 480px;
  margin: 0 auto;
  position: relative;
  z-index: 1 !important;
}

#recipeSearchInput {
  width: 100%;
  padding: 12px 20px;
  border: 1px solid #E2E8F0;
  border-radius: 25px;
  font-size: 0.95rem;
  background-color: #FFFFFF;
  color: #2D3748;
  outline: none;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

#recipeSearchInput:focus {
  border-color: #9B2C2C;
  box-shadow: 0 4px 12px rgba(155, 44, 44, 0.1);
}

.category-filter-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 36px;
  position: relative;
  z-index: 1 !important;
}

.filter-btn {
  background-color: #FFFFFF;
  border: 1px solid #E2E8F0;
  color: #4A5568;
  padding: 8px 18px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.filter-btn:hover,
.filter-btn.active {
  background-color: #9B2C2C;
  color: #FFFFFF;
  border-color: #9B2C2C;
}

.recipes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  position: relative;
  z-index: 1 !important;
}

.recipe-grid-card {
  background-color: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 10px;
  overflow: hidden;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.recipe-grid-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}

.grid-card-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}

.grid-card-content {
  padding: 16px 20px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.grid-card-content h3 {
  font-size: 1.15rem;
  color: #2D3748;
  margin-bottom: 8px;
  transition: color 0.2s ease;
}

.recipe-grid-card:hover .grid-card-content h3 {
  color: #9B2C2C;
}

.grid-card-content p {
  color: #718096;
  font-size: 0.875rem;
  line-height: 1.5;
}

.no-results-message {
  text-align: center;
  padding: 60px 20px;
  color: #A0AEC0;
  font-size: 1.1rem;
}

/* ==========================================================================
   7. About & Contact Page Styles (Including Large Social Cards)
   ========================================================================== */
.about-container {
  max-width: 900px;
  margin: 20px auto 60px;
}

.about-hero {
  text-align: center;
  margin-bottom: 36px;
}

.about-hero h1 {
  font-size: 2.25rem;
  color: #9B2C2C;
  letter-spacing: -0.5px;
  margin-bottom: 8px;
}

.about-subtitle {
  font-size: 1.1rem;
  color: #718096;
}

.about-card {
  background-color: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 12px;
  padding: 32px;
  margin-bottom: 24px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.about-card h2 {
  color: #2D3748;
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.about-card p {
  color: #4A5568;
  font-size: 1rem;
  line-height: 1.7;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.about-box {
  background-color: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 10px;
  padding: 24px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.about-box h3 {
  color: #9B2C2C;
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.about-box p {
  color: #4A5568;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Contact Page Social Grid */
.contact-social-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 24px;
}

.contact-social-card {
  background-color: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 12px;
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-social-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}

.social-icon-brand {
  font-size: 2.25rem;
}

.pinterest-color { color: #E60023; }
.instagram-color { color: #E4405F; }
.tiktok-color    { color: #000000; }
.youtube-color   { color: #FF0000; }

.contact-social-card h3 {
  color: #2D3748;
  font-size: 1.1rem;
  margin-bottom: 2px;
}

.contact-social-card p {
  color: #718096;
  font-size: 0.85rem;
}

/* ==========================================================================
   8. Individual Recipe Layout & Related Recipes Section
   ========================================================================== */
.recipe-detail-container {
  max-width: 800px;
  margin: 20px auto 60px;
  position: relative;
  z-index: 1 !important;
}

.recipe-article {
  background-color: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
  position: relative;
  z-index: 1 !important;
}

.recipe-header {
  text-align: center;
  margin-bottom: 24px;
  position: relative;
  z-index: 1 !important;
  display: flex;
  flex-direction: column;
}

.recipe-header-text {
  order: 1;
}

.recipe-header h1 {
  font-size: 2.25rem;
  color: #9B2C2C;
  letter-spacing: -0.5px;
  margin-bottom: 12px;
}

.recipe-description {
  font-size: 1.1rem;
  color: #718096;
  max-width: 600px;
  margin: 0 auto 24px;
}

.recipe-meta {
  display: flex;
  justify-content: center;
  gap: 32px;
  padding: 16px 20px;
  background-color: #FAF5EF;
  border-radius: 8px;
  border: 1px solid #E2E8F0;
}

.meta-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.meta-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #718096;
  font-weight: 700;
}

.meta-value {
  font-size: 0.95rem;
  color: #2D3748;
  font-weight: 600;
}

.recipe-image-container {
  order: 3;
  width: 100%;
  max-height: 400px;
  border-radius: 12px;
  overflow: hidden;
  margin: 28px 0 36px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  background-color: #EDF2F7;
  position: relative;
  z-index: 1 !important;
}

.recipe-image-container img {
  width: 100%;
  height: 100%;
  max-height: 400px;
  object-fit: cover;
  display: block;
}

.recipe-body h3 {
  font-size: 1.3rem;
  color: #9B2C2C;
  margin: 28px 0 12px;
  padding-bottom: 6px;
  border-bottom: 1px solid #EDF2F7;
}

/* Remove bullets & padding for ingredient lists */
.recipe-body ul {
  list-style: none !important;
  padding-left: 0 !important;
  margin-bottom: 20px;
}

.recipe-body ol {
  padding-left: 20px;
  margin-bottom: 20px;
  color: #4A5568;
}

.recipe-body li {
  margin-bottom: 8px;
  line-height: 1.6;
}

.recipe-body p {
  color: #4A5568;
  margin-bottom: 16px;
  line-height: 1.7;
}

/* Related Recipes Section */
.related-recipes-section {
  margin-top: 48px;
}

.related-recipes-section h2 {
  font-size: 1.5rem;
  color: #9B2C2C;
  margin-bottom: 20px;
  text-align: center;
}

/* ==========================================================================
   9. Recipe Detail Actions, Interactive Ingredients & Cook Mode
   ========================================================================== */
/* 2x2 Grid Layout on Mobile (Saves vertical space & improves tap targets) */
.recipe-actions {
  order: 2;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin: 20px 0 0;
  position: relative;
  z-index: 1 !important;
}

.action-btn {
  background-color: #FFFFFF;
  border: 1px solid #E2E8F0;
  font-size: 0.875rem;
  font-weight: 700;
  padding: 8px 14px;
  border-radius: 20px;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
  transition: all 0.2s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%; /* Fills grid column on mobile */
  text-align: center;
}

.print-btn {
  color: #9B2C2C;
}

.print-btn:hover {
  background-color: #9B2C2C;
  color: #FFFFFF;
  border-color: #9B2C2C;
}

.pinterest-btn {
  color: #E60023;
  border-color: #FED7D7;
}

.pinterest-btn:hover {
  background-color: #E60023;
  color: #FFFFFF;
  border-color: #E60023;
}

/* Native Web Share Button */
.share-btn {
  color: #4A5568;
  border-color: #CBD5E0;
}

.share-btn:hover {
  background-color: #9B2C2C;
  color: #FFFFFF;
  border-color: #9B2C2C;
}

.share-btn.copied {
  background-color: #2F855A !important;
  color: #FFFFFF !important;
  border-color: #2F855A !important;
}

/* Cook Mode Button - Hidden by Default on Desktop */
.cook-mode-btn {
  display: none;
  color: #4A5568;
  border-color: #CBD5E0;
}

.cook-mode-btn .cook-mode-status {
  font-size: 0.75rem;
  padding: 2px 6px;
  border-radius: 10px;
  background-color: #EDF2F7;
  color: #718096;
  margin-left: 4px;
}

.cook-mode-btn.active {
  background-color: #2B6CB0;
  color: #FFFFFF;
  border-color: #2B6CB0;
}

.cook-mode-btn.active .cook-mode-status {
  background-color: #FFFFFF;
  color: #2B6CB0;
  font-weight: 800;
}

/* Desktop Overrides: Switch from 2x2 Grid to Centered Flex Row */
@media (min-width: 601px) {
  .recipe-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
  }

  .action-btn {
    width: auto; /* Shrinks back to natural button width on desktop */
    padding: 8px 18px;
  }
}

/* Interactive Ingredient Checkboxes (Dimmed, No Strikethrough) */
.ingredient-checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  user-select: none;
}

.ingredient-checkbox {
  margin-top: 4px;
  accent-color: #9B2C2C;
  width: 16px;
  height: 16px;
  cursor: pointer;
}

.ingredient-checkbox-label.checked .ingredient-text {
  text-decoration: none !important; /* Removes strikethrough */
  opacity: 0.4;
  color: #A0AEC0;
  transition: opacity 0.2s ease;
}

/* Copy Ingredients Button Below List */
.copy-ingredients-wrapper {
  margin: 12px 0 28px;
}

.copy-btn {
  color: #4A5568;
  border-color: #CBD5E0;
}

.copy-btn:hover {
  background-color: #9B2C2C;
  color: #FFFFFF;
  border-color: #9B2C2C;
}

.copy-btn.copied {
  background-color: #2F855A !important;
  color: #FFFFFF !important;
  border-color: #2F855A !important;
}

/* Instruction Step Progress (Click-to-Dim) */
.recipe-body ol li {
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 6px;
  transition: opacity 0.2s ease, background-color 0.2s ease;
}

.recipe-body ol li:hover {
  background-color: rgba(0, 0, 0, 0.03);
}

.recipe-body ol li.completed-step {
  opacity: 0.4;
}

/* ==========================================================================
   10. Footer Layout & Small Social Links Styling
   ========================================================================== */
footer {
  background-color: #FFFFFF;
  border-top: 2px solid #E2E8F0;
  padding: 40px 24px 20px;
  margin-top: auto;
}

.footer-container {
  max-width: 1050px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
  padding-bottom: 28px;
  border-bottom: 1px solid #EDF2F7;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.footer-logo-img {
  height: 32px !important;
  max-height: 32px !important;
  width: auto !important;
  border-radius: 4px;
  display: block;
}

.footer-logo-text {
  font-size: 1.25rem;
  font-weight: 700;
  color: #9B2C2C;
  letter-spacing: -0.5px;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.footer-logo:hover .footer-logo-text {
  opacity: 0.85;
}

.footer-tagline {
  color: #718096;
  font-size: 0.9rem;
  margin-top: 10px;
  max-width: 320px;
  line-height: 1.5;
}

.footer-links ul {
  list-style: none;
  display: flex;
  gap: 24px;
}

.footer-links a {
  text-decoration: none;
  color: #4A5568;
  font-size: 0.9rem;
  font-weight: 600;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #9B2C2C;
}

.footer-social-links {
  display: flex;
  gap: 14px;
  margin-top: 14px;
  flex-wrap: wrap;
}

.social-icon-sm {
  font-size: 1.15rem;
  color: #718096;
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease;
  display: inline-flex;
}

.social-icon-sm:hover {
  color: #9B2C2C;
  transform: translateY(-2px);
}

.footer-bottom {
  max-width: 1050px;
  margin: 20px auto 0;
  text-align: center;
  color: #A0AEC0;
  font-size: 0.825rem;
}

/* ==========================================================================
   11. Print Stylesheet Overrides (Compact Side-by-Side Header)
   ========================================================================== */
@media print {
  body > header,
  body > footer,
  .recipe-actions,
  .carousel-btn,
  .ingredient-checkbox,
  .related-recipes-section {
    display: none !important;
  }

  body {
    background-color: #FFFFFF !important;
    color: #000000 !important;
    font-size: 13px !important;
  }

  main {
    margin: 0 !important;
    padding: 0 !important;
    max-width: 100% !important;
  }

  .recipe-article {
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
  }

  .recipe-header {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    justify-content: space-between !important;
    align-items: flex-start !important;
    text-align: left !important;
    margin-bottom: 16px !important;
    padding-bottom: 12px !important;
    border-bottom: 2px solid #E2E8F0 !important;
  }

  .recipe-header-text {
    flex: 1 !important;
    padding-right: 20px !important;
  }

  .recipe-header h1 {
    font-size: 1.6rem !important;
    margin-bottom: 4px !important;
    color: #9B2C2C !important;
  }

  .recipe-description {
    font-size: 0.9rem !important;
    margin: 0 0 10px 0 !important;
    color: #4A5568 !important;
  }

  .recipe-meta {
    display: flex !important;
    gap: 16px !important;
    background-color: transparent !important;
    border: none !important;
    padding: 0 !important;
    margin: 0 !important;
    justify-content: flex-start !important;
  }

  .meta-item {
    align-items: flex-start !important;
  }

  .meta-label {
    font-size: 0.65rem !important;
  }

  .meta-value {
    font-size: 0.85rem !important;
  }

  .recipe-image-container {
    width: 120px !important;
    height: 120px !important;
    max-height: 120px !important;
    margin: 0 !important;
    border-radius: 8px !important;
    flex-shrink: 0 !important;
  }

  .recipe-image-container img {
    width: 120px !important;
    height: 120px !important;
    max-height: 120px !important;
    object-fit: cover !important;
    border-radius: 8px !important;
  }

  .recipe-body h3 {
    font-size: 1.1rem !important;
    margin: 16px 0 8px !important;
  }

  .recipe-body li {
    margin-bottom: 4px !important;
  }
}

/* ==========================================================================
   12. Mobile Responsive & Touch Device Adjustments
   ========================================================================== */
/* Display Cook Mode button strictly on mobile/tablet viewports or touch screens */
@media (max-width: 1024px), (hover: none) and (pointer: coarse) {
  .cook-mode-btn {
    display: inline-flex !important;
  }
}

@media (max-width: 850px) {
  .recipes-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .header-container {
    flex-direction: column;
    gap: 14px;
  }

  nav ul {
    gap: 18px;
  }

  nav a {
    font-size: 0.9rem;
  }

  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
  }

  .footer-logo {
    justify-content: center;
  }

  .footer-links ul {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
  }

  .carousel-card {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .recipes-grid {
    grid-template-columns: 1fr;
  }

  .recipe-article {
    padding: 24px 18px;
  }

  .recipe-header h1 {
    font-size: 1.75rem;
  }

  .recipe-meta {
    gap: 16px;
  }

  .recipe-image-container,
  .recipe-image-container img {
    max-height: 260px;
  }
}
