/* ─── Catalog section ─────────────────────────────────────────────────────── */

.gastro-section {
  box-sizing: border-box;
  padding: 4px 8px;
}

.gastro-catalog {
  position: relative;
  overflow: clip;
  width: 100%;
  height: 712px;
  border-radius: 20px;
  box-sizing: border-box;
  background: #282834;
}

.gastro-catalog__media {
  position: absolute;
  inset: 0;
}

.gastro-catalog__image {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Mostrar solo la imagen del breakpoint activo */
.gastro-catalog__image--1920 { display: block; }
.gastro-catalog__image--1366,
.gastro-catalog__image--1024,
.gastro-catalog__image--768,
.gastro-catalog__image--mobile { display: none; }

.gastro-catalog__content {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  padding: 40px;
  box-sizing: border-box;
  color: #fff;
}

.gastro-catalog__title {
  margin: 0;
  font-family: 'Proxima Nova Alt', 'Proxima Nova', sans-serif;
  font-size: 72px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -3.52px;
  font-feature-settings: 'salt' on, 'calt' off;
  color: #fff;
  max-width: 1292px;
}

.gastro-catalog__subtitle {
  margin: 0;
  font-family: Inter, 'Proxima Nova', sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 30px;
  color: #fff;
  max-width: 572px;
}

/* ─── < 1920px ────────────────────────────────────────────────────────────── */

@media only screen and (max-width: 1919px) {
  .gastro-catalog__image--1920 { display: none; }
  .gastro-catalog__image--1366 { display: block; }
  .gastro-catalog__title { max-width: 868px; }
}

/* ─── < 1366px ────────────────────────────────────────────────────────────── */

@media only screen and (max-width: 1365px) {
  .gastro-catalog__image--1366 { display: none; }
  .gastro-catalog__image--1024 { display: block; }
  .gastro-catalog__title { font-size: 48px; letter-spacing: -1.92px; max-width: 900px; }
}

/* ─── < 1024px ────────────────────────────────────────────────────────────── */

@media only screen and (max-width: 1023px) {
  .gastro-catalog__image--1024 { display: none; }
  .gastro-catalog__image--768  { display: block; }
  .gastro-catalog__title       { font-size: 48px; letter-spacing: -1.92px; max-width: 680px; }
  .gastro-catalog__subtitle    { font-size: 20px; line-height: 26px; max-width: 460px; }
}

/* ─── Tablet (768px – 1023px) ────────────────────────────────────────────── */

@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .gastro-catalog {
    height: 500px;
  }
}

/* ─── Mobile (≤ 767px) ────────────────────────────────────────────────────── */

@media only screen and (max-width: 767px) {
  .gastro-catalog {
    height: 696px;
  }

  .gastro-catalog__content {
    justify-content: flex-start;
    gap: 16px;
    padding-inline: 24px;
  }

  .gastro-catalog__image--768    { display: none; }
  .gastro-catalog__image--mobile { display: block; }

  .gastro-catalog__title {
    font-size: 40px;
    letter-spacing: -1.6px;
    color: #fff;
  }

  .gastro-catalog__subtitle {
    font-family: Inter, 'Proxima Nova', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: 0;
    color: #fff;
  }
}
