/* === Ramen Life — post-Webflow polish ===
   Loaded AFTER css/ramenlife.webflow.css, so these rules win.
   One small, intentional override file — easy to tweak or delete. */

/* --- Feature / selling-point icon tiles ---
   Webflow caps the tile at 48px (max-width), so instead of fighting the tile size
   we just reduce its padding — that reliably gives a ~32px icon that fills the tile
   cleanly and consistently at every breakpoint, with no overflow. */
.selling-point-icon-div {
  padding: 8px !important;            /* less padding = the icon fills more of the tile */
}
.selling-point-icon {
  width: 100% !important;
  height: 100% !important;
  max-width: 34px;
  max-height: 34px;
  object-fit: contain;               /* contain = never overflows the tile */
}

/* --- Footer: generous, consistent breathing room on every screen size --- */
.footer-2 {
  padding-top: 64px;
  padding-bottom: 48px;
  padding-left: 40px;
  padding-right: 40px;
}
/* Keep footer content comfortably inset from the edges on wide screens too:
   the inner w-container maxes at 1140px with no padding of its own. */
.footer-2 .container-33 {
  padding-left: 24px;
  padding-right: 24px;
  box-sizing: border-box;
}

/* --- Tablet + mobile (Webflow "medium" breakpoint = ≤991px) ---
   The feature list stacks into a single column here, so give it a calm, even
   rhythm instead of the loose space-between default. */
@media screen and (max-width: 991px) {
  .feature-row-list {
    gap: 24px !important;
    justify-content: flex-start !important;
  }
  .feature-selling-point-div {
    padding-bottom: 6px !important;
    gap: 12px !important;
  }
}

/* --- Mobile only (≤767px) ---
   Footer columns stack here → even them out (were uneven space-between, no gap). */
@media screen and (max-width: 767px) {
  .footer-2 {
    padding-left: 22px;
    padding-right: 22px;
  }
  .footer-2 .container-33 {
    padding-left: 0;
    padding-right: 0;
  }
  .footer-2 .footer-flex-container {
    justify-content: flex-start;
    gap: 30px;
  }
}
