/*
 * Баннер для главной страницы raki-moskva.ru.
 * Подключить после /public/shab2/main.css, чтобы правила не зависели
 * от порядка старых адаптивных стилей сайта.
 */

.gastrofest-promo {
  --gastrofest-desktop-image: url("/public/shab2/img/gastrofest-2026-desktop.jpg");
  --gastrofest-mobile-image: url("/public/shab2/img/gastrofest-2026-mobile.jpg");
  box-sizing: border-box;
  width: calc(100% - 32px);
  max-width: 1024px;
  margin: 24px auto 34px;
  font-family: "Trebuchet MS", Arial, sans-serif;
}

.gastrofest-promo *,
.gastrofest-promo *::before,
.gastrofest-promo *::after {
  box-sizing: border-box;
}

.gastrofest-promo__link {
  position: relative;
  display: block;
  min-height: 320px;
  overflow: hidden;
  border-radius: 18px;
  background-color: #3b3029;
  background-image:
    linear-gradient(90deg, rgba(255, 245, 236, .22) 0%, rgba(255, 245, 236, .08) 48%, rgba(255, 255, 255, .02) 100%),
    var(--gastrofest-desktop-image);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 15px 38px rgba(40, 24, 18, .16);
  isolation: isolate;
  transform: translateZ(0);
}

.gastrofest-promo__link::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: inherit;
  content: "";
  pointer-events: none;
}

.gastrofest-promo__content {
  display: flex;
  width: min(48%, 480px);
  min-height: 320px;
  padding: 38px 42px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.gastrofest-promo__eyebrow {
  margin-bottom: 10px;
  color: #ffd5c2;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .13em;
  line-height: 1.3;
  text-transform: uppercase;
}

.gastrofest-promo__title {
  color: #fff;
  font-family: "Trebuchet MS", Arial, sans-serif;
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 700;
  letter-spacing: -.045em;
  line-height: .94;
  text-shadow: 0 2px 20px rgba(0, 0, 0, .28);
}

.gastrofest-promo__title b {
  color: #f05a30;
  font: inherit;
}

.gastrofest-promo__hook {
  margin-top: 15px;
  color: #fff5ed;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.35;
}

.gastrofest-promo__button {
  display: inline-flex;
  min-height: 46px;
  margin-top: 22px;
  padding: 0 20px;
  border-radius: 8px;
  align-items: center;
  gap: 10px;
  background: #d72a20;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  box-shadow: 0 8px 22px rgba(215, 42, 32, .3);
  transition: background-color .2s ease, transform .2s ease;
}

.gastrofest-promo__note {
  position: absolute;
  right: 13px;
  bottom: 11px;
  padding: 5px 8px;
  border-radius: 5px;
  background: rgba(17, 13, 10, .56);
  color: rgba(255, 255, 255, .78);
  font-size: 9px;
  letter-spacing: .04em;
  line-height: 1;
}

.gastrofest-promo__link:hover .gastrofest-promo__button {
  background: #b91f18;
  transform: translateY(-2px);
}

.gastrofest-promo__link:focus-visible {
  outline: 4px solid #63adde;
  outline-offset: 4px;
}

@media only screen and (max-width: 750px) {
  .gastrofest-promo {
    width: calc(100% - 24px);
    margin-top: 18px;
    margin-bottom: 28px;
  }

  .gastrofest-promo__link {
    min-height: 440px;
    border-radius: 15px;
    background-image:
      linear-gradient(180deg, rgba(11, 9, 8, .24) 0%, rgba(11, 9, 8, .02) 52%, rgba(11, 9, 8, .08) 100%),
      var(--gastrofest-mobile-image);
    background-position: center;
  }

  .gastrofest-promo__content {
    width: 100%;
    min-height: 440px;
    padding: 28px 26px 175px;
    justify-content: flex-start;
  }

  .gastrofest-promo__eyebrow {
    margin-bottom: 8px;
    font-size: 10px;
  }

  .gastrofest-promo__title {
    font-size: clamp(36px, 11vw, 48px);
  }

  .gastrofest-promo__hook {
    max-width: 280px;
    margin-top: 12px;
    font-size: 15px;
  }

  .gastrofest-promo__button {
    min-height: 44px;
    margin-top: 18px;
    padding: 0 17px;
    font-size: 13px;
  }
}

@media only screen and (max-width: 380px) {
  .gastrofest-promo__content {
    padding-right: 20px;
    padding-left: 20px;
  }

  .gastrofest-promo__title {
    font-size: 36px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .gastrofest-promo__button {
    transition: none;
  }
}
