/* === Reset === */
*, *::before, *::after { box-sizing: border-box; }
a, abbr, address, b, blockquote, body, cite, code, dd, del, dfn, div, dl, dt,
em, fieldset, form, h1, h2, h3, h4, h5, h6, html, i, iframe, img, ins, kbd,
label, legend, li, object, ol, p, pre, q, s, samp, small, span, strike,
strong, sub, sup, tt, u, ul, var {
  margin: 0; padding: 0; border: 0; outline: 0;
  font-size: 100%; vertical-align: baseline; background: transparent;
}
body { line-height: 1; }
ol, ul { list-style: none; }
blockquote, q { quotes: none; }
blockquote::before, blockquote::after,
q::before, q::after { content: ""; content: none; }
:focus { outline: 0; }
del { text-decoration: line-through; }
pre { overflow: auto; padding: 10px; }
figure { margin: 0; }
table { border-collapse: collapse; border-spacing: 0; }

/* === Base === */
:root {
  --ga-teal: #4b6768;
  --ga-teal-dark: #3e5859;
  --ga-beige: #efecea;
  --ga-text: #2a2a2a;
  --ga-muted: #666;
}

body {
  font-family: "Open Sans", Arial, sans-serif;
  font-size: 14px;
  color: var(--ga-text);
  background-color: var(--ga-beige);
  line-height: 1.7em;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: var(--ga-text); text-decoration: none; }
a:hover { text-decoration: none; }

p { padding-bottom: 1em; }
p:last-of-type { padding-bottom: 0; }

strong { font-weight: 700; }
em, i, cite { font-style: italic; }
code, pre { font-family: "Courier New", monospace; margin-bottom: 10px; }
sub, sup { height: 0; line-height: 1; position: relative; vertical-align: baseline; }
sup { bottom: 0.8em; }
sub { top: 0.3em; }

blockquote {
  margin: 20px 0 30px;
  border-left: 5px solid var(--ga-teal);
  padding-left: 20px;
}

embed, iframe, object, video { max-width: 100%; }
img { max-width: 100%; height: auto; }

h1, h2, h3, h4, h5, h6 {
  color: #000;
  padding-bottom: 10px;
  line-height: 1em;
  font-weight: 500;
}
h1 a, h2 a, h3 a, h4 a, h5 a, h6 a { color: inherit; }
h1 { font-size: 30px; }
h2 { font-size: 26px; }
h3 { font-size: 22px; }
h4 { font-size: 18px; }
h5 { font-size: 16px; }
h6 { font-size: 14px; }

/* === Layout === */
.container {
  width: 80%;
  max-width: 1080px;
  margin: auto;
  position: relative;
}

.clearfix::after { content: ""; display: table; clear: both; }

/* === Page container === */
#page-container { position: relative; }

/* #main-content has no background — let body's beige show on home + index pages.
   Single-post pages opt into a white reading area via .post-on-white below. */
#main-content { background-color: transparent; }

/* Content area top padding (compensates for header height) */
#left-area { padding-top: 58px; padding-bottom: 40px; }
.main_title { margin-bottom: 20px; }

/* Single post / recipe pages get a white reading area inside the beige page bg */
.post-on-white #left-area {
  background-color: #fff;
  padding: 40px 50px;
  margin-top: 30px;
  margin-bottom: 30px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}

/* === Secondary top bar === */
#top-header {
  background-color: var(--ga-teal);
  padding: 10px 0;
  font-size: 14px;
}

#top-header .container { text-align: right; }

.et-social-icons {
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: flex-end;
  list-style: none;
  padding: 0;
  margin: 0;
}

.et-social-icon a.icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  color: #fff;
  fill: #fff;
  transition: opacity 0.15s;
}

.et-social-icon a.icon:hover { opacity: 0.7; }

.et-social-icon svg {
  width: 16px;
  height: 16px;
  fill: #fff;
}

.et-social-icon span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
}

/* === Main header === */
#main-header {
  background-color: var(--ga-beige);
  position: sticky;
  top: 0;
  z-index: 100;
  transition: height 0.2s, box-shadow 0.2s;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.et_menu_container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 88px;
}

/* Logo */
.logo_container {
  display: flex;
  align-items: center;
  height: 100%;
  flex-shrink: 0;
}

#logo {
  max-height: 64px;
  width: auto;
  display: block;
  transition: max-height 0.2s;
}

/* Shrunken state when scrolled */
#main-header.et-fixed-header .et_menu_container { height: 56px; }
#main-header.et-fixed-header #logo { max-height: 40px; }

/* Nav */
#et-top-navigation {
  display: flex;
  align-items: center;
}

#top-menu {
  display: flex;
  gap: 0;
  list-style: none;
  padding: 0;
  margin: 0;
}

#top-menu li a {
  display: block;
  font-family: "Times New Roman", Georgia, serif;
  font-size: 19px;
  font-weight: 700;
  color: var(--ga-text);
  padding: 0 18px;
  line-height: 88px;
  transition: color 0.15s;
}

#main-header.et-fixed-header #top-menu li a { line-height: 56px; }

#top-menu li a:hover,
#top-menu li.current-menu-item > a { color: var(--ga-teal); }

/* Mobile menu bar (hamburger) */
#et_mobile_nav_menu { display: none; }

.mobile_menu_bar {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.mobile_menu_bar span {
  display: block;
  width: 22px;
  height: 2px;
  background: #000;
  border-radius: 2px;
}

/* Mobile dropdown menu */
#et_mobile_menu {
  display: none;
  background-color: var(--ga-beige);
  border-top: 1px solid rgba(0,0,0,0.1);
  padding: 10px 0;
}
#et_mobile_menu.is-open { display: block; }

#et_mobile_menu ul { list-style: none; padding: 0; margin: 0; }

#et_mobile_menu li a {
  display: block;
  font-family: "Times New Roman", Georgia, serif;
  font-weight: 700;
  padding: 10px 20px;
  font-size: 18px;
  color: var(--ga-text);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

#et_mobile_menu li a:hover { color: var(--ga-teal); }

/* === Hero (fullwidth header) === */
.et_pb_fullwidth_header {
  position: relative;
  background-image: url("../images/hero-bg.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-align: left;
  min-height: 86vh;
}

.et_pb_fullscreen { min-height: 86vh; }

/* Live screenshot shows almost no overlay — the photo is bright.
   A faint darken keeps title legibility on lighter parts of any photo. */
.et_pb_fullwidth_header_overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.12);
  z-index: 1;
  pointer-events: none;
}

.et_pb_fullwidth_header_container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 10%;
}

.header-content-container { max-width: 700px; }

.header-content h1,
.et_pb_module_header {
  font-family: "Open Sans", Arial, sans-serif;
  font-size: 46px;
  font-weight: 500;
  color: #fff;
  text-shadow: 0 0.04em 0.18em rgba(0,0,0,0.85);
  line-height: 1.2em;
  padding-bottom: 6px;
}

.et_pb_fullwidth_header_subhead {
  display: block;
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  text-shadow: 0 0.05em 0.18em rgba(0,0,0,0.85);
  line-height: 1.4em;
  padding-bottom: 28px;
}

/* Newsletter / hero CTA — outline button, transparent fill */
.et_pb_button {
  display: inline-block;
  padding: 14px 38px;
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  background: transparent;
  border: 2px solid #fff;
  text-shadow: 0 0.05em 0.18em rgba(0,0,0,0.65);
  letter-spacing: 0.02em;
  transition: background-color 0.2s, color 0.2s, padding 0.2s;
}

.et_pb_button:hover {
  background-color: #fff;
  color: var(--ga-text);
  text-shadow: none;
}

/* Scroll-down indicator — circle ring + chevron */
.et_pb_fullwidth_header_scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.scroll-down-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 2px solid var(--ga-teal);
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  color: var(--ga-teal);
  cursor: pointer;
  transition: background-color 0.2s, transform 0.2s;
}

.scroll-down-container:hover {
  background: rgba(255,255,255,0.4);
  transform: translateY(2px);
}

.scroll-down-container svg {
  width: 18px;
  height: 18px;
  fill: var(--ga-teal);
}

/* === Section (general) — no background; sits on body's beige === */
.et_pb_section { background-color: transparent; }
.et_pb_section .container { padding: 60px 0; }

/* === Blog grid (post card grid) === */
.et_pb_blog_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}

.et_pb_post {
  background: #fff;
  border: 12px solid #fff;
  box-shadow: 6px 6px 18px 0 rgba(0, 0, 0, 0.18);
}

.et_pb_image_container { overflow: hidden; }

.et_pb_image_container img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.et_pb_image_container:hover img { transform: scale(1.04); }

.et_pb_post .entry-title {
  font-family: "Times New Roman", Georgia, serif;
  font-weight: 700;
  text-align: center;
  font-size: 20px;
  padding: 22px 15px 6px;
  line-height: 1.3em;
  color: #000;
}

.et_pb_post .entry-title a { color: inherit; }
.et_pb_post .entry-title a:hover { color: var(--ga-teal); }

.post-meta {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 13px;
  line-height: 1em;
  text-align: center;
  color: var(--ga-muted);
  padding: 6px 15px 22px;
}

.post-meta a { color: var(--ga-teal); }
.post-meta a:hover { color: var(--ga-teal-dark); text-decoration: underline; }

.et_pb_post .post-content {
  font-size: 13px;
  color: var(--ga-muted);
  padding: 0 15px 15px;
  line-height: 1.6em;
  text-align: center;
}

.et_pb_post .post-content p { padding-bottom: 0; }

/* === Single post === */
.et_post_meta_wrapper { margin-bottom: 20px; text-align: center; }

.et_post_meta_wrapper .entry-title {
  font-size: 30px;
  font-weight: 500;
  color: #000;
  padding-bottom: 8px;
  line-height: 1.2em;
}

.et_pb_title_meta_container {
  font-size: 14px;
  color: var(--ga-muted);
  padding-bottom: 15px;
  font-family: "Open Sans", Arial, sans-serif;
}

.et_pb_title_meta_container a { color: var(--ga-teal); }
.et_pb_title_meta_container a:hover { color: var(--ga-teal-dark); }

.entry-content {
  font-size: 14px;
  color: var(--ga-text);
  line-height: 1.7em;
}

.entry-content p { padding-bottom: 1em; }
.entry-content p:last-child { padding-bottom: 0; }
.entry-content a { color: #2ea3f2; }
.entry-content a:hover { color: var(--ga-teal); }

.entry-content h2, .entry-content h3,
.entry-content h4, .entry-content h5 { margin-top: 1em; }

.entry-content ul, .entry-content ol {
  padding-left: 1.5em;
  margin-bottom: 1em;
}

.entry-content li { list-style: disc; margin-bottom: 0.3em; }
.entry-content ol li { list-style: decimal; }

.entry-content img {
  max-width: 100%;
  height: auto;
  margin: 1em 0;
}

/* Section index page title */
.page-title { margin-bottom: 30px; padding-top: 20px; }
.page-title .entry-title { font-size: 30px; }
.section-description {
  font-size: 14px;
  color: var(--ga-muted);
  padding-top: 5px;
}
.empty-state { color: #999; font-style: italic; padding: 2em 0; }

/* === Recipe card (edited-chic style) === */
.wprm-recipe-template-edited-chic {
  margin: 30px auto;
  background-color: #fff;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-size: 1em;
  line-height: 1.5em;
  color: #333;
  max-width: 950px;
  border: 2px solid var(--ga-teal);
  padding: 20px 25px;
}

.wprm-recipe-template-edited-chic a:not(.wprm-recipe-print-btn) { color: var(--ga-teal); }

.wprm-recipe-name {
  font-size: 1.4em;
  font-weight: bold;
  color: #212121;
  margin-bottom: 15px;
  line-height: 1.3em;
}

.wprm-recipe-meta-container {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid #e0e0e0;
}

.wprm-recipe-block-container {
  display: flex;
  flex-direction: column;
}

.wprm-recipe-label {
  font-size: 0.75em;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #888;
  margin-bottom: 2px;
}

.wprm-recipe-value { font-weight: 600; }

.wprm-recipe-header {
  font-size: 1.1em;
  font-weight: 700;
  color: #212121;
  margin: 1.2em 0 0.5em;
  line-height: 1.3em;
}

.wprm-recipe-ingredients { list-style: none; padding: 0; margin: 0 0 10px; }

.wprm-recipe-ingredients li {
  margin: 0 0 4px 32px;
  padding: 0;
  position: relative;
  list-style: disc;
}

.wprm-recipe-instructions {
  padding-left: 32px;
  margin: 0 0 10px;
}

.wprm-recipe-instructions li {
  margin-bottom: 8px;
  line-height: 1.6em;
}

.wprm-recipe-notes {
  background: #f8f8f8;
  padding: 12px 15px;
  border-radius: 3px;
  font-size: 0.95em;
  color: #555;
  margin-top: 8px;
}

.wprm-recipe-card-header {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  margin-bottom: 16px;
}

.wprm-recipe-card-header-text { flex: 1; min-width: 0; }

.wprm-recipe-card-header-image {
  width: 38%;
  flex-shrink: 0;
}

.wprm-recipe-card-header-image img {
  width: 100%;
  display: block;
  border-radius: 3px;
}

@media (max-width: 540px) {
  .wprm-recipe-card-header { flex-direction: column; }
  .wprm-recipe-card-header-image { width: 100%; }
}

.wprm-recipe-summary {
  font-size: 0.95em;
  color: #555;
  font-style: italic;
  margin: 8px 0 0;
  line-height: 1.6em;
}

.wprm-recipe-keywords {
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px solid #e0e0e0;
  font-size: 0.9em;
  color: #666;
}

.wprm-recipe-keywords .wprm-recipe-label { margin-bottom: 4px; }

.jump-to-recipe {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.jump-to-recipe-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--ga-teal);
  color: #fff;
  padding: 8px 18px;
  text-decoration: none;
  font-size: 0.85em;
  font-weight: 600;
  letter-spacing: 0.03em;
  border-radius: 3px;
  transition: background 0.15s;
}

.jump-to-recipe-btn:hover { background: var(--ga-teal-dark); color: #fff; }

.jump-to-recipe-btn svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
  flex-shrink: 0;
}

.wprm-recipe-print-row {
  margin-top: 20px;
  padding-top: 15px;
  border-top: 1px solid #e0e0e0;
}

.wprm-recipe-print-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: var(--ga-teal);
  color: #fff;
  text-decoration: none;
  font-size: 0.85em;
  font-weight: 600;
  border-radius: 3px;
  letter-spacing: 0.03em;
  transition: background 0.15s;
}

.wprm-recipe-print-btn:hover { background: var(--ga-teal-dark); color: #fff; }

.wprm-recipe-print-btn svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
  flex-shrink: 0;
}

/* === Recipe Print Page === */
.recipe-print-page {
  background: #fff;
  color: #222;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

.rp-toolbar {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  padding: 12px 20px;
  background: var(--ga-teal);
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 10;
}

.rp-back {
  color: #fff;
  text-decoration: none;
  font-size: 0.9em;
  font-weight: 600;
  margin-right: auto;
}
.rp-back:hover { text-decoration: underline; }

.rp-font-label { font-size: 0.8em; opacity: 0.85; }

.rp-font-btn {
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.35);
  color: #fff;
  padding: 3px 10px;
  font-size: 0.8em;
  border-radius: 3px;
  cursor: pointer;
}

.rp-font-btn--active {
  background: rgba(255,255,255,0.35);
  font-weight: 700;
}

.rp-font-controls {
  display: flex;
  align-items: center;
  gap: 6px;
}

.rp-print-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: #fff;
  color: var(--ga-teal);
  border: none;
  border-radius: 3px;
  font-size: 0.85em;
  font-weight: 700;
  cursor: pointer;
  letter-spacing: 0.03em;
}

.rp-print-btn svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
  flex-shrink: 0;
}

.rp-content {
  max-width: 720px;
  margin: 30px auto;
  padding: 0 24px 40px;
  font-size: 14px;
  line-height: 1.6em;
}

.rp-image {
  width: 100%;
  max-height: 380px;
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: 20px;
}

.rp-title {
  font-size: 1.8em;
  font-weight: 700;
  color: #111;
  margin: 0 0 10px;
  line-height: 1.3em;
}

.rp-summary {
  font-style: italic;
  color: #555;
  margin: 0 0 16px;
}

.rp-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding: 14px 0;
  border-top: 2px solid var(--ga-teal);
  border-bottom: 2px solid var(--ga-teal);
  margin-bottom: 24px;
}

.rp-meta-item {
  display: flex;
  flex-direction: column;
}

.rp-meta-label {
  font-size: 0.72em;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #888;
  margin-bottom: 2px;
}

.rp-meta-value { font-weight: 700; font-size: 0.95em; }

.rp-section-header {
  font-size: 1.05em;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #333;
  margin: 1.4em 0 0.6em;
  padding-bottom: 4px;
  border-bottom: 1px solid #ddd;
}

.rp-ingredients {
  list-style: disc;
  padding-left: 24px;
  margin: 0 0 8px;
}

.rp-ingredients li { margin-bottom: 4px; }

.rp-instructions {
  padding-left: 24px;
  margin: 0 0 8px;
}

.rp-instructions li { margin-bottom: 8px; }

.rp-notes {
  background: #f8f8f8;
  border-left: 3px solid var(--ga-teal);
  padding: 12px 15px;
  font-size: 0.9em;
  color: #555;
  border-radius: 0 3px 3px 0;
}

@media print {
  .no-print { display: none !important; }
  .rp-toolbar { display: none !important; }
  .rp-content { margin: 0; padding: 0; max-width: 100%; }
  .rp-image { max-height: 260px; }
}

/* === About page === */
.about-bio {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  margin: 10px 0 40px;
}

.about-bio-photo {
  width: 200px;
  flex-shrink: 0;
}

.about-bio-photo img {
  width: 100%;
  border-radius: 50%;
  display: block;
}

.about-bio-name {
  font-family: "Times New Roman", Georgia, serif;
  font-size: 1.8em;
  font-weight: 700;
  margin: 0 0 12px;
  color: #212121;
}

.about-bio-text p {
  font-size: 1em;
  line-height: 1.7em;
  color: #444;
}

.about-recent-section { margin-top: 10px; }

.about-recent-header {
  font-family: "Times New Roman", Georgia, serif;
  font-size: 1.5em;
  font-weight: 700;
  margin-bottom: 24px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--ga-teal);
  color: #212121;
}

@media (max-width: 767px) {
  .about-bio {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .about-bio-photo { width: 150px; }
}

/* === Footer === */
#main-footer {
  background-color: var(--ga-beige);
  padding-top: 50px;
  border-top: 1px solid rgba(0,0,0,0.06);
}

#footer-widgets {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  padding-bottom: 40px;
}

.footer-widget h4 {
  color: var(--ga-teal);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 15px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--ga-teal);
}

.footer-widget ul { list-style: none; padding: 0; margin: 0; }

.footer-widget li {
  position: relative;
  padding: 4px 0 4px 14px;
  font-size: 13px;
  color: var(--ga-muted);
}

.footer-widget li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 5px;
  border: 1px solid var(--ga-teal);
  border-radius: 50%;
}

.footer-widget li a { color: var(--ga-muted); }
.footer-widget li a:hover { color: var(--ga-teal); }

#footer-bottom {
  background-color: var(--ga-teal);
  padding: 14px 0;
}

#footer-bottom .et-social-icons { justify-content: center; }

/* === Pagination === */
.pagination-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding: 2rem 0 1rem;
  margin-top: 1rem;
}

.pagination-link {
  display: inline-block;
  padding: 0.45rem 1.1rem;
  border: 1px solid var(--ga-teal);
  border-radius: 3px;
  color: var(--ga-teal);
  font-weight: 600;
  font-size: 0.9em;
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
}

.pagination-link:hover {
  background: var(--ga-teal);
  color: #fff;
}

.pagination-link--disabled {
  border-color: #ccc;
  color: #ccc;
  cursor: default;
}

.pagination-info {
  color: var(--ga-muted);
  font-size: 0.9em;
}

/* === Responsive === */
@media only screen and (max-width: 980px) {
  .container { width: 90%; }
  .et_pb_blog_grid { grid-template-columns: repeat(2, 1fr); }
  #footer-widgets { grid-template-columns: repeat(2, 1fr); }
}

@media only screen and (max-width: 767px) {
  .container { width: 95%; }
  #et_mobile_nav_menu { display: block; }
  #top-menu-nav { display: none; }
  .et_pb_blog_grid { grid-template-columns: 1fr; }
  .et_pb_fullwidth_header_container { padding: 0 5%; }
  .et_pb_module_header { font-size: 32px; }
  .et_pb_fullwidth_header_subhead { font-size: 17px; }
  #footer-widgets { grid-template-columns: 1fr 1fr; }
  .wprm-recipe-template-edited-chic { padding: 15px; }
  .wprm-recipe-meta-container { gap: 15px; }
  .post-on-white #left-area { padding: 20px; }
}

@media only screen and (max-width: 480px) {
  #footer-widgets { grid-template-columns: 1fr; }
}
