/* --------- HERO (SECTION 1) --------- */
.fl-hero {
  padding-top: 90px;
  padding-bottom: 80px;
  background:
    radial-gradient(circle at 0% 10%, #ffffff 0, transparent 55%),
    radial-gradient(circle at 100% 0%, #c9e9ff 0, transparent 60%),
    linear-gradient(145deg, #e6f3ff 0%, #f7fbff 60%, #d9eeff 100%);
}

.fl-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  gap: 40px;
  align-items: center;
}

.fl-hero-text {
  position: relative;
  z-index: 2;
}

.fl-hero-title {
  font-size: 34px;
  line-height: 1.25;
}

.fl-hero-lead {
  margin: 12px 0 10px;
  font-size: 16px;
  color: var(--fl-text-main);
}

.fl-hero-text-body {
  margin: 0;
  font-size: 14px;
  color: var(--fl-text-soft);
}

.fl-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

/* Орбиты и фото */
.fl-hero-media {
  position: relative;
  min-height: 260px;
  display: grid;
  place-items: center;
}

.fl-hero-orbit {
  position: absolute;
  border-radius: 999px;
  border: 1px dashed rgba(54, 184, 230, 0.28);
  animation: fl-orbit-spin 18s linear infinite;
}

.fl-hero-orbit--outer {
  width: 320px;
  height: 320px;
  box-shadow: 0 0 50px rgba(99, 213, 255, 0.3);
}

.fl-hero-orbit--inner {
  width: 210px;
  height: 210px;
  animation-duration: 26s;
}

.fl-hero-photo {
  position: absolute;
  max-width: 190px;
}

.fl-hero-photo--main {
  position: relative;
  max-width: 220px;
  transform: translateY(0);
  animation: fl-photo-float 7s ease-in-out infinite;
  z-index: 2;
}

.fl-hero-photo--side {
  right: -18px;
  bottom: 0;
  animation: fl-photo-float-side 8s ease-in-out infinite;
}

.fl-hero-photo--top {
  left: -12px;
  top: 12px;
  animation: fl-photo-float-top 9s ease-in-out infinite;
}

.fl-photo-label {
  margin-top: 6px;
  font-size: 11px;
  color: var(--fl-text-soft);
}

/* keyframes */
@keyframes fl-orbit-spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes fl-photo-float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0px);
  }
}

@keyframes fl-photo-float-side {
  0% {
    transform: translateY(4px);
  }
  50% {
    transform: translateY(-6px);
  }
  100% {
    transform: translateY(4px);
  }
}

@keyframes fl-photo-float-top {
  0% {
    transform: translateY(-6px);
  }
  50% {
    transform: translateY(2px);
  }
  100% {
    transform: translateY(-6px);
  }
}

/* Hover эффект для картинок */
.fl-hero-photo .fl-image {
  box-shadow: var(--fl-shadow-soft);
  transition:
    transform var(--fl-transition-fast),
    box-shadow var(--fl-transition-fast);
}

.fl-hero-photo:hover .fl-image {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 26px 60px rgba(1, 30, 48, 0.36);
}

/* --------- STORIES RIBBON (SECTION 2) --------- */
.fl-stories {
  background: radial-gradient(circle at 15% 0%, #ffffff 0, transparent 60%),
    radial-gradient(circle at 100% 40%, #e1f2ff 0, transparent 55%),
    linear-gradient(180deg, #f7fbff 0, #eaf5ff 100%);
  border-top: 1px solid var(--fl-border-soft);
}

.fl-stories-inner {
  position: relative;
}

.fl-stories-inner::before {
  content: "";
  position: absolute;
  inset-inline-start: -80px;
  inset-block: 40px 40px;
  width: 130px;
  background: radial-gradient(circle at 10% 0%, #ffffff, transparent 55%);
  opacity: 0.5;
  pointer-events: none;
}

.fl-stories-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  gap: 40px;
}

/* Левая колонка — таймлайн */
.fl-stories-timeline {
  position: relative;
  padding-left: 18px;
}

.fl-stories-timeline::before {
  content: "";
  position: absolute;
  left: 5px;
  top: 4px;
  bottom: 6px;
  width: 2px;
  border-radius: 999px;
  background: linear-gradient(
    180deg,
    rgba(54, 184, 230, 0.4),
    rgba(248, 179, 108, 0.5)
  );
}

.fl-story-step {
  position: relative;
  padding-left: 16px;
  margin-bottom: 26px;
}

.fl-story-marker {
  position: absolute;
  left: -3px;
  top: 4px;
  width: 11px;
  height: 11px;
  border-radius: 999px;
  background: #ffffff;
  border: 2px solid var(--fl-accent);
  box-shadow: 0 0 0 6px rgba(54, 184, 230, 0.18);
}

.fl-story-title {
  margin: 0 0 6px;
  font-size: 16px;
}

.fl-story-text {
  margin: 0;
  font-size: 14px;
  color: var(--fl-text-soft);
}

/* Правая колонка — галерея */
.fl-stories-gallery {
  display: grid;
  grid-template-areas:
    "tall wide"
    "tall small";
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  grid-template-rows: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 16px;
  align-items: center;
}

.fl-stories-photo {
  border-radius: var(--fl-radius-md);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.9);
  padding: 8px;
  box-shadow: var(--fl-shadow-soft);
  transition:
    transform var(--fl-transition-fast),
    box-shadow var(--fl-transition-fast);
}

.fl-stories-photo--tall {
  grid-area: tall;
}

.fl-stories-photo--wide {
  grid-area: wide;
}

.fl-stories-photo--small {
  grid-area: small;
}

.fl-stories-photo:hover {
  transform: translateY(-6px) rotate(-0.4deg);
  box-shadow: 0 28px 60px rgba(1, 30, 48, 0.32);
}

/* --------- TOURS OVERVIEW (SECTION 3) --------- */
.fl-tours-overview {
  background: linear-gradient(180deg, #edf6ff 0, #d6ebff 100%);
}

.fl-tours-inner {
  position: relative;
}

.fl-tours-inner::before {
  content: "";
  position: absolute;
  right: -60px;
  top: 50px;
  width: 180px;
  height: 180px;
  border-radius: 40% 80% 60% 100%;
  background: radial-gradient(circle at 10% 0%, #ffffff, #a8dcff);
  opacity: 0.4;
  filter: blur(2px);
  pointer-events: none;
}

.fl-tour-lines {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.fl-tour-line {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.9fr);
  gap: 24px;
  padding: 20px 22px;
  border-radius: 28px;
  background: rgba(244, 250, 255, 0.92);
  border: 1px solid rgba(168, 220, 255, 0.6);
  box-shadow: 0 16px 40px rgba(1, 30, 48, 0.18);
  backdrop-filter: blur(14px);
  position: relative;
  overflow: hidden;
}

.fl-tour-line::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(99, 213, 255, 0.09),
    rgba(248, 179, 108, 0.08)
  );
  mix-blend-mode: soft-light;
  opacity: 0;
  transition: opacity var(--fl-transition-fast);
}

.fl-tour-line:hover::before {
  opacity: 1;
}

.fl-tour-line--reverse {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.2fr);
}

.fl-tour-info {
  position: relative;
  z-index: 1;
}

.fl-tour-title {
  margin: 0 0 4px;
  font-size: 18px;
}

.fl-tour-tagline {
  margin: 0 0 10px;
  font-size: 14px;
  color: var(--fl-text-soft);
}

.fl-tour-text {
  margin: 0 0 10px;
  font-size: 14px;
  color: var(--fl-text-soft);
}

.fl-tour-list {
  margin: 0 0 8px 16px;
  padding: 0;
  font-size: 14px;
  color: var(--fl-text-soft);
}

.fl-tour-list li {
  margin-bottom: 3px;
}

.fl-tour-media {
  display: flex;
  align-items: center;
  justify-content: center;
}

.fl-tour-photo {
  padding: 10px;
  border-radius: 22px;
  background: #ffffff;
  box-shadow: var(--fl-shadow-soft);
  max-width: 260px;
  transition:
    transform var(--fl-transition-fast),
    box-shadow var(--fl-transition-fast);
}

.fl-tour-line:hover .fl-tour-photo {
  transform: translateY(-4px);
  box-shadow: 0 28px 60px rgba(1, 30, 48, 0.32);
}

/* Заглушка контактов */
.fl-contacts-placeholder {
  padding-block: 40px 60px;
  background: var(--fl-bg-alt);
}

/* --------- ADAPTIVE FOR HOME --------- */
@media (max-width: 1024px) {
  .fl-hero-inner {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  }

  .fl-stories-layout {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  }

  .fl-tour-line,
  .fl-tour-line--reverse {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  }
}

@media (max-width: 840px) {
  .fl-hero-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .fl-hero-media {
    order: -1;
  }

  .fl-stories-layout {
    grid-template-columns: 1fr;
  }

  .fl-stories-gallery {
    grid-template-areas:
      "tall wide"
      "small small";
  }

  .fl-tours-inner::before {
    display: none;
  }

  .fl-tour-line,
  .fl-tour-line--reverse {
    grid-template-columns: 1fr;
  }

  .fl-tour-media {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .fl-hero {
    padding-top: 70px;
  }

  .fl-hero-title {
    font-size: 28px;
  }

  .fl-hero-orbit--outer {
    width: 260px;
    height: 260px;
  }

  .fl-hero-orbit--inner {
    width: 180px;
    height: 180px;
  }

  .fl-hero-photo--side {
    right: 0;
  }

  .fl-hero-photo--top {
    left: 0;
  }

  .fl-stories-gallery {
    grid-template-areas:
      "tall"
      "wide"
      "small";
    grid-template-columns: 1fr;
  }

  .fl-tour-line {
    padding: 16px 14px;
  }
}

@media (max-width: 480px) {
  .fl-hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .fl-hero-badges {
    gap: 8px;
  }

  .fl-hero-media {
    min-height: 230px;
  }
}
@media (max-width: 640px) {
  .fl-hero {
    padding-top: 70px;
  }

  .fl-hero-title {
    font-size: 28px;
  }

  /* Перестраиваем медиа-блок героя */
  .fl-hero-media {
    order: -1; /* картинки сверху, текст ниже */
    min-height: auto;
    padding: 16px 16px 12px;
    margin-bottom: 12px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 24px;
    box-shadow: var(--fl-shadow-soft);
    display: grid;
    gap: 10px;
    justify-items: center;
  }

  /* Орбиты на мобилке скрываем, чтобы не мешались */
  .fl-hero-orbit {
    display: none;
  }

  /* Фото делаем обычными, без absolute и анимаций */
  .fl-hero-photo,
  .fl-hero-photo--main,
  .fl-hero-photo--side,
  .fl-hero-photo--top {
    position: static;
    max-width: 100%;
    animation: none;
    transform: none;
  }

  .fl-hero-photo .fl-image {
    max-width: 260px; /* всё равно <= 350px */
  }

  .fl-stories-gallery {
    grid-template-areas:
      "tall"
      "wide"
      "small";
    grid-template-columns: 1fr;
  }

  .fl-tour-line {
    padding: 16px 14px;
  }
}
/* --------- SECTION 4: ICE SAFETY --------- */
.fl-ice-safety {
  background: linear-gradient(180deg, #f7fbff 0, #e4f2ff 100%);
  border-top: 1px solid var(--fl-border-soft);
}

.fl-ice-safety-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.9fr);
  gap: 28px;
  align-items: center;
}

.fl-ice-safety-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--fl-text-soft);
  margin: 0 0 6px;
}

.fl-ice-safety-title {
  margin: 0 0 10px;
  font-size: 22px;
}

.fl-ice-safety-intro {
  margin: 0 0 10px;
  font-size: 14px;
  color: var(--fl-text-soft);
}

.fl-ice-safety-list {
  margin: 0 0 8px 16px;
  padding: 0;
  font-size: 14px;
  color: var(--fl-text-soft);
}

.fl-ice-safety-list li {
  margin-bottom: 4px;
}

.fl-ice-safety-note {
  margin: 0;
  font-size: 13px;
  color: var(--fl-text-main);
}

.fl-ice-safety-images {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
}

.fl-ice-safety-photo {
  padding: 8px;
  border-radius: 22px;
  background: #ffffff;
  box-shadow: var(--fl-shadow-soft);
  max-width: 260px;
  transition:
    transform var(--fl-transition-fast),
    box-shadow var(--fl-transition-fast);
}

.fl-ice-safety-photo--secondary {
  margin-left: 32px;
  opacity: 0.96;
}

.fl-ice-safety-photo:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 60px rgba(1, 30, 48, 0.32);
}

/* --------- SECTION 5: MICRO STORIES STRIP --------- */
.fl-micro-stories {
  background: var(--fl-bg-alt);
  border-top: 1px solid var(--fl-border-soft);
}

.fl-micro-stories-head {
  max-width: 620px;
  margin-bottom: 18px;
}

.fl-micro-stories-strip {
  position: relative;
  margin-inline: -16px;
  padding-inline: 16px;
  padding-bottom: 8px;
  overflow-x: auto;
  overflow-y: visible;
  scrollbar-width: thin;
}

.fl-micro-stories-strip::-webkit-scrollbar {
  height: 4px;
}

.fl-micro-stories-strip::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.6);
}

.fl-micro-stories-strip::-webkit-scrollbar-thumb {
  background: rgba(99, 213, 255, 0.7);
  border-radius: 999px;
}

.fl-micro-stories-list {
  display: inline-flex;
  gap: 12px;
  padding-bottom: 4px;
}

.fl-micro-story-card {
  min-width: 260px;
  max-width: 280px;
  border-radius: 24px;
  background: rgba(244, 250, 255, 0.98);
  border: 1px solid rgba(168, 220, 255, 0.7);
  box-shadow: 0 14px 32px rgba(1, 30, 48, 0.22);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition:
    transform var(--fl-transition-fast),
    box-shadow var(--fl-transition-fast);
}

.fl-micro-story-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 52px rgba(1, 30, 48, 0.3);
}

.fl-micro-story-media {
  padding: 8px 8px 0;
}

.fl-micro-story-body {
  padding: 10px 12px 12px;
}

.fl-micro-story-title {
  margin: 0 0 6px;
  font-size: 15px;
}

.fl-micro-story-text {
  margin: 0;
  font-size: 13px;
  color: var(--fl-text-soft);
}

/* --------- SECTION 6: CAMP ATMOSPHERE --------- */
.fl-camp-atmosphere {
  background: linear-gradient(180deg, #d6ebff 0, #f5fbff 100%);
  border-top: 1px solid var(--fl-border-soft);
}

.fl-camp-atmosphere-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 32px;
  align-items: center;
}

.fl-camp-atmosphere-list {
  margin: 10px 0 0 16px;
  padding: 0;
  font-size: 14px;
  color: var(--fl-text-soft);
}

.fl-camp-atmosphere-list li {
  margin-bottom: 4px;
}

.fl-camp-images {
  position: relative;
  min-height: 230px;
}

.fl-camp-photo {
  position: absolute;
  max-width: 230px;
  padding: 8px;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: var(--fl-shadow-soft);
  transition:
    transform var(--fl-transition-fast),
    box-shadow var(--fl-transition-fast);
}

.fl-camp-photo--front {
  left: 0;
  bottom: 0;
  z-index: 2;
}

.fl-camp-photo--back {
  right: 6px;
  top: 0;
  opacity: 0.98;
}

.fl-camp-photo:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 60px rgba(1, 30, 48, 0.32);
}
/* ================================
   SECTION 4: ICE SAFETY
   ================================ */

.fl-ice-safety {
  background: linear-gradient(180deg, #f7fbff 0, #e4f2ff 100%);
  border-top: 1px solid var(--fl-border-soft);
}

.fl-ice-safety-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.9fr);
  gap: 28px;
  align-items: center;
}

.fl-ice-safety-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--fl-text-soft);
  margin: 0 0 6px;
}

.fl-ice-safety-title {
  margin: 0 0 10px;
  font-size: 22px;
}

.fl-ice-safety-intro {
  margin: 0 0 10px;
  font-size: 14px;
  color: var(--fl-text-soft);
}

.fl-ice-safety-list {
  margin: 0 0 8px 16px;
  padding: 0;
  font-size: 14px;
  color: var(--fl-text-soft);
}

.fl-ice-safety-list li {
  margin-bottom: 4px;
}

.fl-ice-safety-note {
  margin: 0;
  font-size: 13px;
  color: var(--fl-text-main);
}

.fl-ice-safety-images {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
}

.fl-ice-safety-photo {
  padding: 8px;
  border-radius: 22px;
  background: #ffffff;
  box-shadow: var(--fl-shadow-soft);
  max-width: 260px;
  transition:
    transform var(--fl-transition-fast),
    box-shadow var(--fl-transition-fast);
}

.fl-ice-safety-photo--secondary {
  margin-left: 32px;
  opacity: 0.96;
}

.fl-ice-safety-photo:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 60px rgba(1, 30, 48, 0.32);
}

/* ================================
   SECTION 5: MICRO STORIES STRIP
   ================================ */

.fl-micro-stories {
  background: var(--fl-bg-alt);
  border-top: 1px solid var(--fl-border-soft);
}

.fl-micro-stories-head {
  max-width: 620px;
  margin-bottom: 18px;
}

.fl-micro-stories-strip {
  position: relative;
  margin-inline: -16px;
  padding-inline: 16px;
  padding-bottom: 8px;
  overflow-x: auto;
  overflow-y: visible;
  scrollbar-width: thin;
}

.fl-micro-stories-strip::-webkit-scrollbar {
  height: 4px;
}

.fl-micro-stories-strip::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.6);
}

.fl-micro-stories-strip::-webkit-scrollbar-thumb {
  background: rgba(99, 213, 255, 0.7);
  border-radius: 999px;
}

.fl-micro-stories-list {
  display: inline-flex;
  gap: 12px;
  padding-bottom: 4px;
}

.fl-micro-story-card {
  min-width: 260px;
  max-width: 280px;
  border-radius: 24px;
  background: rgba(244, 250, 255, 0.98);
  border: 1px solid rgba(168, 220, 255, 0.7);
  box-shadow: 0 14px 32px rgba(1, 30, 48, 0.22);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition:
    transform var(--fl-transition-fast),
    box-shadow var(--fl-transition-fast);
}

.fl-micro-story-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 52px rgba(1, 30, 48, 0.3);
}

.fl-micro-story-media {
  padding: 8px 8px 0;
}

.fl-micro-story-body {
  padding: 10px 12px 12px;
}

.fl-micro-story-title {
  margin: 0 0 6px;
  font-size: 15px;
}

.fl-micro-story-text {
  margin: 0;
  font-size: 13px;
  color: var(--fl-text-soft);
}

/* ================================
   SECTION 6: CAMP ATMOSPHERE
   ================================ */

.fl-camp-atmosphere {
  background: linear-gradient(180deg, #d6ebff 0, #f5fbff 100%);
  border-top: 1px solid var(--fl-border-soft);
}

.fl-camp-atmosphere-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 32px;
  align-items: center;
}

.fl-camp-atmosphere-list {
  margin: 10px 0 0 16px;
  padding: 0;
  font-size: 14px;
  color: var(--fl-text-soft);
}

.fl-camp-atmosphere-list li {
  margin-bottom: 4px;
}

.fl-camp-images {
  position: relative;
  min-height: 230px;
}

.fl-camp-photo {
  position: absolute;
  max-width: 230px;
  padding: 8px;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: var(--fl-shadow-soft);
  transition:
    transform var(--fl-transition-fast),
    box-shadow var(--fl-transition-fast);
}

.fl-camp-photo--front {
  left: 0;
  bottom: 0;
  z-index: 2;
}

.fl-camp-photo--back {
  right: 6px;
  top: 0;
  opacity: 0.98;
}

.fl-camp-photo:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 60px rgba(1, 30, 48, 0.32);
}

/* =================================
   ADAPTIVE 4–6 SECTIONS
   ================================= */

/* планшеты / небольшие ноуты */
@media (max-width: 1024px) {
  .fl-ice-safety-inner {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  }

  .fl-camp-atmosphere-inner {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  }
}

/* планшеты вертикально / крупные телефоны */
@media (max-width: 840px) {
  .fl-ice-safety-inner {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .fl-ice-safety-images {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
  }

  .fl-ice-safety-photo--secondary {
    margin-left: 0;
  }

  .fl-camp-atmosphere-inner {
    grid-template-columns: 1fr;
  }

  .fl-camp-images {
    margin-top: 8px;
  }
}

/* телефоны */
@media (max-width: 640px) {
  /* ice safety */
  .fl-ice-safety-inner {
    gap: 18px;
  }

  .fl-ice-safety-photo {
    max-width: 220px;
  }

  /* micro stories: убираем отрицательные отступы,
     чтобы не было горизонтального скролла у страницы */
  .fl-micro-stories-head {
    margin-bottom: 12px;
  }

  .fl-micro-stories-strip {
    margin-inline: 0;
    padding-inline: 0;
  }

  .fl-micro-story-card {
    min-width: 230px;
    max-width: 260px;
  }

  /* camp atmosphere: картинки одна под другой */
  .fl-camp-images {
    position: static;
    min-height: auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .fl-camp-photo {
    position: static;
    max-width: 240px;
  }
}

/* самые маленькие экраны */
@media (max-width: 480px) {
  .fl-micro-story-body {
    padding: 8px 10px 10px;
  }

  .fl-micro-story-title {
    font-size: 14px;
  }

  .fl-micro-story-text {
    font-size: 12px;
  }

  .fl-camp-atmosphere-list {
    margin-left: 14px;
    font-size: 13px;
  }
}
/* =========================================
   SECTION 7: GUIDES
   ========================================= */

.fl-guides {
  background: linear-gradient(180deg, #f5fbff 0, #d8ebff 100%);
  border-top: 1px solid var(--fl-border-soft);
}

.fl-guides-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 32px;
  align-items: center;
}

.fl-guides-text .fl-section-text + .fl-section-text {
  margin-top: 8px;
}

/* карточки гидов */

.fl-guides-portraits {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  align-items: flex-start;
}

.fl-guide-bubble {
  border-radius: 24px;
  background: rgba(244, 250, 255, 0.96);
  border: 1px solid rgba(168, 220, 255, 0.7);
  box-shadow: 0 16px 40px rgba(1, 30, 48, 0.2);
  padding: 10px 10px 12px;
  overflow: hidden;
  position: relative;
  transition:
    transform var(--fl-transition-fast),
    box-shadow var(--fl-transition-fast);
}

.fl-guide-bubble::before {
  content: "";
  position: absolute;
  inset-inline-start: -30px;
  inset-block-start: -40px;
  width: 90px;
  height: 90px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 30%, #ffffff, #a8dcff);
  opacity: 0.38;
  pointer-events: none;
}

.fl-guide-bubble--two {
  transform: translateY(12px);
}

.fl-guide-bubble--three {
  grid-column: 1 / -1;
}

.fl-guide-bubble:hover {
  transform: translateY(-6px) rotate(-0.4deg);
  box-shadow: 0 26px 60px rgba(1, 30, 48, 0.28);
}

.fl-guide-figure {
  margin: 0;
  text-align: center;
}

.fl-image-circle {
  border-radius: 999px;
  max-width: 150px;
  margin-inline: auto;
  box-shadow: var(--fl-shadow-soft);
}

.fl-guide-name {
  margin-top: 8px;
  font-size: 13px;
  color: var(--fl-text-soft);
}

/* групповой снимок */

.fl-guides-group {
  grid-column: 1 / -1;
  margin: 4px 0 0;
  padding: 8px;
  border-radius: 26px;
  background: #ffffff;
  box-shadow: var(--fl-shadow-soft);
  transition:
    transform var(--fl-transition-fast),
    box-shadow var(--fl-transition-fast);
}

.fl-guides-group:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 60px rgba(1, 30, 48, 0.32);
}

/* =========================================
   SECTION 8: BOOKING FLOW
   ========================================= */

.fl-booking {
  background: radial-gradient(circle at 0% 0%, #ffffff 0, transparent 55%),
    linear-gradient(180deg, #edf6ff 0, #e0f0ff 100%);
  border-top: 1px solid var(--fl-border-soft);
}

.fl-booking-inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.fl-booking-head {
  max-width: 640px;
}

.fl-booking-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.9fr);
  gap: 26px;
  align-items: stretch;
}

/* шаги */

.fl-booking-steps {
  margin: 0;
  padding: 12px 16px;
  list-style: none;
  border-radius: 26px;
  background: rgba(244, 250, 255, 0.98);
  border: 1px solid rgba(168, 220, 255, 0.8);
  box-shadow: 0 16px 40px rgba(1, 30, 48, 0.2);
  counter-reset: bookingStep;
}

.fl-booking-step {
  position: relative;
  padding-left: 32px;
  margin-bottom: 14px;
}

.fl-booking-step:last-child {
  margin-bottom: 0;
}

.fl-booking-step::before {
  counter-increment: bookingStep;
  content: counter(bookingStep);
  position: absolute;
  left: 0;
  top: 2px;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--fl-accent), #63d5ff);
  color: #ffffff;
  font-size: 12px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(1, 30, 48, 0.35);
}

.fl-booking-step-title {
  margin: 0 0 4px;
  font-size: 15px;
}

.fl-booking-step-text {
  margin: 0;
  font-size: 13px;
  color: var(--fl-text-soft);
}

/* боковые иллюстрации */

.fl-booking-side {
  display: grid;
  grid-template-rows: minmax(0, 1fr) minmax(0, 1fr);
  gap: 12px;
  align-items: center;
}

.fl-booking-photo {
  padding: 8px;
  border-radius: 22px;
  background: #ffffff;
  box-shadow: var(--fl-shadow-soft);
  transition:
    transform var(--fl-transition-fast),
    box-shadow var(--fl-transition-fast);
}

.fl-booking-photo--chat {
  transform-origin: left bottom;
}

.fl-booking-photo--calendar {
  transform-origin: right top;
}

.fl-booking-photo:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 60px rgba(1, 30, 48, 0.32);
}

/* =========================================
   SECTION 9: GLOBAL ICE HORIZON
   ========================================= */

.fl-global-ice {
  background: linear-gradient(180deg, #d9ecff 0, #f6fbff 100%);
  border-top: 1px solid var(--fl-border-soft);
}

.fl-global-ice-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1.1fr);
  gap: 30px;
  align-items: center;
}

.fl-global-ice-map {
  position: relative;
  padding: 16px;
  border-radius: 30px;
  background: radial-gradient(circle at 20% 0%, #ffffff 0, #c9e6ff 65%);
  box-shadow: 0 18px 46px rgba(1, 30, 48, 0.26);
  overflow: hidden;
}

.fl-global-ice-map::before {
  content: "";
  position: absolute;
  inset: 12px 40%;
  border-radius: 999px;
  border: 1px dashed rgba(4, 27, 38, 0.12);
  opacity: 0.7;
}

.fl-global-ice-photo {
  position: relative;
  margin: 0;
}

.fl-global-ice-text .fl-section-text + .fl-section-text {
  margin-top: 8px;
}

/* =========================================
   ADAPTIVE FOR SECTIONS 7–9
   ========================================= */

/* планшеты / небольшие ноутбуки */
@media (max-width: 1024px) {
  .fl-guides-inner {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  }

  .fl-booking-layout {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  }

  .fl-global-ice-inner {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  }
}

/* планшеты вертикально / крупные телефоны */
@media (max-width: 840px) {
  .fl-guides-inner {
    grid-template-columns: 1fr;
  }

  .fl-guides-portraits {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .fl-guide-bubble--three {
    grid-column: 1 / -1;
  }

  .fl-booking-layout {
    grid-template-columns: 1fr;
  }

  .fl-booking-side {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: auto;
  }

  .fl-global-ice-inner {
    grid-template-columns: 1fr;
  }

  .fl-global-ice-map {
    order: 2;
  }

  .fl-global-ice-text {
    order: 1;
  }
}

/* телефоны */
@media (max-width: 640px) {
  .fl-guides-inner {
    gap: 24px;
  }

  .fl-guides-portraits {
    grid-template-columns: 1fr;
  }

  .fl-guide-bubble--two {
    transform: none;
  }

  .fl-booking-steps {
    padding: 10px 12px;
  }

  .fl-booking-step {
    padding-left: 30px;
  }

  .fl-booking-side {
    grid-template-columns: 1fr;
  }

  .fl-booking-photo {
    max-width: 240px;
    margin-inline: auto;
  }

  .fl-global-ice-map {
    padding: 12px;
  }
}

/* самые маленькие экраны */
@media (max-width: 480px) {
  .fl-guide-name {
    font-size: 12px;
  }

  .fl-booking-step-text {
    font-size: 12px;
  }

  .fl-global-ice-text .fl-section-text {
    font-size: 13px;
  }
}
/* =========================================
   SECTION 10: GEAR LINE
   ========================================= */

.fl-gear {
  background: radial-gradient(circle at 0% 0%, #ffffff 0, transparent 55%),
    linear-gradient(180deg, #f7fbff 0, #e4f3ff 100%);
  border-top: 1px solid var(--fl-border-soft);
}

.fl-gear-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
  gap: 28px;
  align-items: center;
}

.fl-gear-strip {
  display: flex;
  gap: 14px;
}

.fl-gear-item {
  flex: 1 1 0;
  border-radius: 24px;
  background: rgba(244, 250, 255, 0.96);
  border: 1px solid rgba(168, 220, 255, 0.7);
  box-shadow: 0 14px 36px rgba(1, 30, 48, 0.22);
  padding: 8px 8px 12px;
  display: flex;
  flex-direction: column;
  transition:
    transform var(--fl-transition-fast),
    box-shadow var(--fl-transition-fast);
  position: relative;
  overflow: hidden;
}

.fl-gear-item::before {
  content: "";
  position: absolute;
  inset-inline-start: -40px;
  inset-block-start: -40px;
  width: 90px;
  height: 90px;
  border-radius: 60% 40% 70% 30%;
  background: radial-gradient(circle at 30% 30%, #ffffff, #a8dcff);
  opacity: 0.32;
  pointer-events: none;
}

.fl-gear-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 56px rgba(1, 30, 48, 0.3);
}

.fl-gear-media {
  margin: 0 0 6px;
}

.fl-gear-body {
  position: relative;
  z-index: 1;
}

.fl-gear-label {
  margin: 0 0 4px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  color: var(--fl-text-main);
}

.fl-gear-text-small {
  margin: 0;
  font-size: 12px;
  color: var(--fl-text-soft);
}

/* =========================================
   SECTION 11: COMFORT & TEMPERATURE
   ========================================= */

.fl-comfort {
  background: linear-gradient(180deg, #e7f3ff 0, #d5ebff 100%);
  border-top: 1px solid var(--fl-border-soft);
}

.fl-comfort-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.2fr);
  gap: 28px;
  align-items: center;
}

/* шкала комфорта */

.fl-comfort-scale {
  position: relative;
  height: 260px;
  width: 70px;
  border-radius: 999px;
  border: 1px solid rgba(4, 27, 38, 0.16);
  background: radial-gradient(circle at 30% 0%, #ffffff 0, #cbe7ff 55%);
  box-shadow: 0 18px 46px rgba(1, 30, 48, 0.28);
  overflow: hidden;
}

.fl-comfort-scale-fill {
  position: absolute;
  inset-inline: 10px;
  bottom: 10px;
  top: 80px;
  border-radius: 999px;
  background: linear-gradient(
    180deg,
    #f8b36c 0%,
    #ffdf9c 35%,
    #63d5ff 75%,
    #36b8e6 100%
  );
  animation: fl-comfort-pulse 6s ease-in-out infinite;
}

@keyframes fl-comfort-pulse {
  0% {
    transform: translateY(3px);
  }
  50% {
    transform: translateY(-4px);
  }
  100% {
    transform: translateY(3px);
  }
}

.fl-comfort-scale-label {
  position: absolute;
  left: 80px;
  font-size: 11px;
  color: var(--fl-text-soft);
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(244, 250, 255, 0.96);
  box-shadow: 0 10px 28px rgba(1, 30, 48, 0.22);
  white-space: nowrap;
}

.fl-comfort-scale-label--mild {
  top: 28px;
}

.fl-comfort-scale-label--easy {
  top: 110px;
}

.fl-comfort-scale-label--deep {
  bottom: 32px;
}

/* текст и бейджи */

.fl-comfort-text .fl-section-text {
  max-width: 440px;
}

.fl-comfort-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.fl-comfort-chip {
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(168, 220, 255, 0.8);
  font-size: 12px;
  color: var(--fl-text-soft);
}

/* фото справа */

.fl-comfort-photos {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 14px;
}

.fl-comfort-photo {
  padding: 8px;
  border-radius: 20px;
  background: #ffffff;
  box-shadow: var(--fl-shadow-soft);
  max-width: 220px;
}

/* =========================================
   SECTION 12: SHORT REVIEWS
   ========================================= */

.fl-reviews {
  background: radial-gradient(circle at 100% 0%, #ffffff 0, transparent 55%),
    linear-gradient(180deg, #f7fbff 0, #e4f3ff 100%);
  border-top: 1px solid var(--fl-border-soft);
}

.fl-reviews-inner {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.fl-reviews-head {
  max-width: 580px;
}

.fl-reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.fl-review-card {
  position: relative;
  border-radius: 24px;
  background: rgba(244, 250, 255, 0.96);
  border: 1px solid rgba(168, 220, 255, 0.7);
  box-shadow: 0 14px 34px rgba(1, 30, 48, 0.22);
  padding: 12px 12px 14px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px 10px;
  align-items: center;
  overflow: hidden;
}

.fl-review-card::before {
  content: "“";
  position: absolute;
  font-size: 46px;
  line-height: 1;
  left: -2px;
  bottom: -18px;
  color: rgba(99, 213, 255, 0.25);
}

.fl-review-avatar {
  margin: 0;
}

.fl-review-avatar .fl-image-circle {
  max-width: 64px;
  box-shadow: var(--fl-shadow-soft);
}

.fl-review-text {
  margin: 0;
  font-size: 13px;
  color: var(--fl-text-soft);
}

/* =========================================
   ADAPTIVE FOR SECTIONS 10–12
   ========================================= */

/* планшеты / небольшие ноутбуки */
@media (max-width: 1024px) {
  .fl-gear-inner {
    grid-template-columns: minmax(0, 1.1fr);
  }

  .fl-gear-strip {
    justify-content: space-between;
  }

  .fl-comfort-inner {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 22px;
  }

  .fl-reviews-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* планшеты вертикально / крупные телефоны */
@media (max-width: 840px) {
  .fl-gear-strip {
    flex-wrap: wrap;
  }

  .fl-gear-item {
    flex: 1 1 calc(50% - 10px);
  }

  .fl-comfort-inner {
    grid-template-columns: 1fr;
  }

  .fl-comfort-scale {
    margin-inline: auto;
  }

  .fl-comfort-text {
    margin-top: 12px;
  }

  .fl-reviews-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* телефоны */
@media (max-width: 640px) {
  .fl-gear-inner {
    gap: 20px;
  }

  .fl-gear-strip {
    flex-direction: column;
  }

  .fl-gear-item {
    flex: 1 1 auto;
  }

  .fl-comfort-scale {
    height: 230px;
    width: 60px;
  }

  .fl-comfort-scale-label {
    left: 72px;
  }

  .fl-comfort-photos {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .fl-comfort-photo {
    max-width: 180px;
  }

  .fl-reviews-grid {
    grid-template-columns: 1fr;
  }

  .fl-review-card {
    grid-template-columns: auto 1fr;
  }
}

/* самые маленькие экраны */
@media (max-width: 480px) {
  .fl-gear-label {
    font-size: 12px;
  }

  .fl-gear-text-small {
    font-size: 11px;
  }

  .fl-comfort-chip {
    font-size: 11px;
  }

  .fl-review-text {
    font-size: 12px;
  }
}
/* =========================================
   SECTION 13: QUESTIONS & SHORT ANSWERS
   ========================================= */

.fl-questions {
  background: linear-gradient(180deg, #e4f3ff 0, #f7fbff 100%);
  border-top: 1px solid var(--fl-border-soft);
}

.fl-questions-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 1.15fr);
  gap: 30px;
  align-items: center;
}

.fl-questions-media {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
}

.fl-questions-photo {
  padding: 8px;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: var(--fl-shadow-soft);
  max-width: 240px;
  transition:
    transform var(--fl-transition-fast),
    box-shadow var(--fl-transition-fast);
}

.fl-questions-photo--secondary {
  margin-left: 32px;
  opacity: 0.98;
}

.fl-questions-photo:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 60px rgba(1, 30, 48, 0.32);
}

.fl-questions-text .fl-section-text {
  max-width: 480px;
}

.fl-question-list {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.fl-question-item {
  padding: 10px 12px;
  border-radius: 18px;
  background: rgba(244, 250, 255, 0.98);
  border: 1px solid rgba(168, 220, 255, 0.7);
}

.fl-question-title {
  margin: 0 0 4px;
  font-size: 14px;
  font-weight: 600;
}

.fl-question-answer {
  margin: 0;
  font-size: 13px;
  color: var(--fl-text-soft);
}

/* =========================================
   SECTION 14: SEASON RHYTHM
   ========================================= */

.fl-seasons {
  background: radial-gradient(circle at 100% 0%, #ffffff 0, transparent 55%),
    linear-gradient(180deg, #f5fbff 0, #d7ebff 100%);
  border-top: 1px solid var(--fl-border-soft);
}

.fl-seasons-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 30px;
  align-items: center;
}

.fl-seasons-steps {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.fl-season-step {
  position: relative;
  padding: 10px 12px 10px 30px;
  border-radius: 20px;
  background: rgba(244, 250, 255, 0.98);
  border: 1px solid rgba(168, 220, 255, 0.7);
  box-shadow: 0 12px 30px rgba(1, 30, 48, 0.22);
}

.fl-season-step::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 14px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--fl-accent), #63d5ff);
  box-shadow: 0 0 0 6px rgba(99, 213, 255, 0.28);
}

.fl-season-title {
  margin: 0 0 4px;
  font-size: 14px;
}

.fl-season-text {
  margin: 0;
  font-size: 13px;
  color: var(--fl-text-soft);
}

.fl-seasons-media {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

.fl-seasons-photo {
  padding: 8px;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: var(--fl-shadow-soft);
  max-width: 240px;
  transition:
    transform var(--fl-transition-fast),
    box-shadow var(--fl-transition-fast);
}

.fl-seasons-photo--back {
  position: absolute;
  right: 40%;
  top: -18px;
  max-width: 200px;
  opacity: 0.9;
}

.fl-seasons-photo:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 60px rgba(1, 30, 48, 0.32);
}

/* =========================================
   SECTION 15: DETAIL MOSAIC
   ========================================= */

.fl-mosaic {
  background: linear-gradient(180deg, #e4f3ff 0, #f7fbff 100%);
  border-top: 1px solid var(--fl-border-soft);
}

.fl-mosaic-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1.05fr);
  gap: 30px;
  align-items: center;
}

.fl-mosaic-text .fl-section-text {
  max-width: 430px;
}

.fl-mosaic-stack {
  position: relative;
  width: 100%;
  max-width: 360px;
  margin-inline: auto;
  aspect-ratio: 4 / 3;
}

.fl-mosaic-photo {
  position: absolute;
  padding: 8px;
  border-radius: 22px;
  background: #ffffff;
  box-shadow: var(--fl-shadow-soft);
  max-width: 210px;
  transition:
    transform var(--fl-transition-fast),
    box-shadow var(--fl-transition-fast);
}

.fl-mosaic-photo--one {
  left: 0;
  top: 8px;
  transform: rotate(-4deg);
}

.fl-mosaic-photo--two {
  right: 0;
  top: 40%;
  transform: rotate(3deg);
}

.fl-mosaic-photo--three {
  left: 18%;
  bottom: -8px;
  transform: rotate(-2deg);
}

.fl-mosaic-photo:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 28px 64px rgba(1, 30, 48, 0.34);
}

/* =========================================
   SECTION 16: FINAL CTA
   ========================================= */

.fl-final-cta {
  background: linear-gradient(135deg, #021822 0, #06354c 55%, #0d4f6f 100%);
  color: #ffffff;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.fl-final-cta-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 0.9fr);
  gap: 28px;
  align-items: center;
}

.fl-final-cta-title {
  margin: 0 0 10px;
  font-size: 26px;
  font-family: "PlayfairFL", "ManropeFL", serif;
}

.fl-final-cta-text {
  margin: 0 0 8px;
  font-size: 14px;
  color: rgba(236, 246, 255, 0.9);
}

.fl-final-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.fl-button--inverted {
  background: #ffffff;
  color: #021822;
}

.fl-button--inverted:hover {
  background: #f5fbff;
}

.fl-final-cta-note {
  margin: 4px 0 0;
  font-size: 12px;
  color: rgba(215, 235, 255, 0.9);
}

/* медиа-часть CTA */

.fl-final-cta-media {
  position: relative;
  justify-self: center;
}

.fl-final-cta-card {
  padding: 10px;
  border-radius: 26px;
  background: radial-gradient(circle at 0% 0%, #ffffff 0, #8ad0ff 70%);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.55);
  max-width: 260px;
}

.fl-final-cta-card .fl-photo-label {
  color: #041b26;
}

/* =========================================
   ADAPTIVE 13–16 SECTIONS
   ========================================= */

/* планшеты / небольшие ноутбуки */
@media (max-width: 1024px) {
  .fl-questions-inner {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  }

  .fl-seasons-inner {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.9fr);
  }

  .fl-mosaic-inner {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  }

  .fl-final-cta-inner {
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 0.8fr);
  }
}

/* планшеты вертикально / крупные телефоны */
@media (max-width: 840px) {
  .fl-questions-inner,
  .fl-seasons-inner,
  .fl-mosaic-inner,
  .fl-final-cta-inner {
    grid-template-columns: 1fr;
  }

  .fl-questions-media {
    order: 2;
  }

  .fl-questions-text {
    order: 1;
  }

  .fl-seasons-media {
    margin-top: 10px;
  }

  .fl-mosaic-stack {
    margin-top: 8px;
  }

  .fl-final-cta-media {
    justify-self: flex-start;
  }
}

/* телефоны */
@media (max-width: 640px) {
  .fl-questions-inner {
    gap: 20px;
  }

  .fl-questions-media {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
  }

  .fl-questions-photo {
    max-width: 200px;
  }

  .fl-questions-photo--secondary {
    margin-left: 0;
  }

  .fl-seasons-inner {
    gap: 22px;
  }

  .fl-seasons-media {
    align-items: flex-start;
  }

  .fl-seasons-photo--back {
    position: static;
    max-width: 200px;
  }

  .fl-mosaic-inner {
    gap: 22px;
  }

  .fl-mosaic-stack {
    position: static;
    aspect-ratio: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }

  .fl-mosaic-photo {
    position: static;
    max-width: 220px;
    transform: none;
  }

  .fl-mosaic-photo:hover {
    transform: translateY(-4px);
  }

  .fl-final-cta-inner {
    gap: 22px;
  }

  .fl-final-cta-title {
    font-size: 22px;
  }

  .fl-final-cta-media {
    justify-self: center;
  }
}

/* самые маленькие экраны */
@media (max-width: 480px) {
  .fl-question-title {
    font-size: 13px;
  }

  .fl-question-answer {
    font-size: 12px;
  }

  .fl-season-title {
    font-size: 13px;
  }

  .fl-season-text {
    font-size: 12px;
  }

  .fl-final-cta-actions {
    flex-direction: column;
    align-items: stretch;
  }
}
