/* ── Max site width ──────────────────────────────────────────────────── */

body {
  max-width: 1220px;
  margin: 0 auto;
}

.content-wrapper {
  padding: 0 12px;
}


/* ── Footer ──────────────────────────────────────────────────────────── */

.site-footer {
  margin-top: 12px;
  padding: 12px 12px 24px;
  border-top: 1px solid #ceb16d;
  text-align: center;
  box-sizing: border-box;
}


/* ── Hamburger button (hidden on desktop) ────────────────────────────── */

.site-header__burger {
  display: none;
}


/* ── Site header (flexbox, all screen sizes) ─────────────────────────── */

.site-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  width: 100%;
  border-bottom: 1px solid #ceb16d;
  margin-bottom: 10px;
  padding: 0 12px;
  box-sizing: border-box;
}

.site-header__logo {
  display: block;
  padding: 10px 0;
}

.site-header__logo img {
  display: block;
  width: 360px;
  height: 97px;
}

.site-header__help {
  margin-left: auto;
  text-decoration: none;
  color: #949494;
  font-size: 12px;
  padding: 0 8px;
  white-space: nowrap;
}

.site-header__help img {
  vertical-align: middle;
}

.site-header__sub {
  width: 100%;
  text-align: center;
  font-size: 11px;
  color: #666;
  padding: 4px 0 8px;
}


/* ── Comments ────────────────────────────────────────────────────────── */

div.comment {
  border-radius: 4px;
  border-bottom: 1px solid #e8e0d0;
  padding: 6px 0px;
  margin-bottom: 6px;
  font-size: 13px;
  line-height: 1.5;
}

.recipe-res-list li:last-child {
  border-bottom: none;
}

.comments-list div.comment:last-child {
  border-bottom: none;
}

.comment__header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
  flex-wrap: wrap;
}

.comment__author {
  font-weight: bold;
}

.comment__date {
  margin-left: auto;
  font-size: 11px;
  white-space: nowrap;
}

.comment__body {
  color: #333;
  padding-bottom: 6px;
}


/* ── Mobile overrides (≤ 640px) ──────────────────────────────────────── */

@media (max-width: 640px) {

  /* Shrink logo on mobile */
  .site-header__logo img {
    height: 50px;
    width: auto;
  }

  /* Show hamburger button */
  .site-header__burger {
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    font-size: 22px;
    cursor: pointer;
    color: #333;
    padding: 0 8px 0 0;
  }

  /* Hide menu by default, show when toggled */
  #mainMenu { display: none; }
  body.menu-open #mainMenu { display: block; }

  /* Stack main layout: content first, menu below */
  table.layout,
  table.layout tbody,
  table.layout tr,
  table.layout td {
    display: block;
    width: 100% !important;
  }

  #mainMenu {
    width: 100% !important;
    padding-right: 0;
    margin-top: 16px;
  }

  #mainContent {
    width: 100% !important;
  }

}
