/* ==========================================================================
   Sleep Dochi 웹사이트 — Figma "앱소개 페이지" (1280 기준)
   색상 토큰: Primary/P2 #FAF3F3, Primary/P7 #EDD5D5, Primary/P #E5C3C3,
   Point/1 #C18C81, Point/2 #3E606F, Gray8 #5A5E6A, Gray3 #E4E6EA, Gray1 #F9FAFC
   ========================================================================== */

:root {
  --p2: #faf3f3;
  --p7: #edd5d5;
  --p: #e5c3c3;
  --point1: #c18c81;
  --point2: #3e606f;
  --gray8: #5a5e6a;
  --gray3: #e4e6ea;
  --gray1: #f9fafc;
  --pink-band: #f4e5e7;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  background: #fff;
}

body {
  font-family: "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont, sans-serif;
  color: #000;
  overflow-x: hidden;
}

img {
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

/* 디자인은 1280 고정 캔버스 — 작은 화면에서는 JS가 scale로 축소한다 */
.page {
  width: 1280px;
  margin: 0 auto;
}

/* ===== 공통: 스토어 버튼 ===== */
.store-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 176px;
  height: 56px;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 700;
  transition: opacity 0.2s;
}

.store-btn:hover {
  opacity: 0.8;
}

.store-btn--outline {
  border: 1px solid #fff;
  color: #fff;
}

.store-btn--black {
  background: #000;
  color: #fff;
}

.store-btn__icon--play {
  width: 36px;
  height: 36px;
}

.store-btn__icon--apple {
  width: 32px;
  height: 32px;
}

/* ===== 공통: 섹션 헤딩 ===== */
.section-heading {
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: center;
  color: var(--point2);
}

.section-heading h2 {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.5;
}

.section-heading p {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.7;
}

.section-heading--link {
  transition: opacity 0.2s;
}

.section-heading--link:hover {
  opacity: 0.7;
}

/* ===== 히어로 ===== */
.hero {
  position: relative;
  height: 800px;
  overflow: hidden;
  background: #fff;
}

.hero__bg {
  position: absolute;
  left: 0;
  top: -403px;
  width: 1802px;
  height: 1802px;
  object-fit: cover;
}

/* 위 레이어(불투명 버전): width(%)가 바 위치를 결정하고, 넘치는 부분은 잘린다.
   중앙(50%)에서 시작해 로드 후 100%로 늘어난다 */
.hero__top {
  position: absolute;
  left: 0;
  top: 0;
  width: 50%;
  height: 100%;
  overflow: hidden;
  z-index: 2;
  transition: width 5s cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* 내부는 히어로와 같은 고정 폭 — 위 레이어가 줄어들어도 내용 위치는 변하지 않는다 */
.hero__top-inner {
  position: relative;
  width: 1280px;
  height: 100%;
}

/* 뒤에 있는 이미지 버전을 블러 + 핑크 틴트 처리해 불투명 버전을 만든다 */
.hero__tint {
  position: absolute;
  inset: 0;
  background: rgba(201, 125, 136, 0.4);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
}

/* 드래그 바 */
.hero__handle {
  position: absolute;
  left: 50%;
  top: 0;
  height: 100%;
  width: 48px;
  margin-left: -24px;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: ew-resize;
  touch-action: none;
  transition: left 5s cubic-bezier(0.22, 0.61, 0.36, 1);
  outline: none;
}

/* 드래그 중에는 전환 효과를 꺼서 바가 손가락을 즉시 따라오게 한다 */
.hero__top.dragging,
.hero__handle.dragging {
  transition: none;
}

.hero__handle::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: 2px;
  height: 100%;
  background: #fff;
  transform: translateX(-1px);
}

/* 손잡이: 슬립도치 흰색 고슴도치 로고.
   바 왼쪽(불투명 화면 위) 아래쪽에 붙어서, 고슴도치가 화면을 끌고 가는 모습이 된다 */
.hero__grip {
  position: absolute;
  right: calc(50% + 20px);
  bottom: -5px;
  width: 88px;
  height: auto;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.25));
  transition: transform 0.15s;
  user-select: none;
  -webkit-user-drag: none;
  /* 오른쪽으로 걸어가는 방향이므로 좌우 반전 */
  transform: scaleX(-1);
}

.hero__handle:hover .hero__grip,
.hero__handle:focus-visible .hero__grip {
  transform: scaleX(-1) scale(1.1);
}

/* 텍스트: 왼쪽(이전 메인 위치)에서 시작해, 고슴도치가 걸어가는 동안
   함께 오른쪽으로 이동해서 중앙에 멈춘다 (바와 같은 시간/이징) */
.hero__content {
  position: absolute;
  left: 63px;
  top: calc(50% - 20px);
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 548px;
  transition: left 5s cubic-bezier(0.22, 0.61, 0.36, 1),
    transform 5s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.hero--entered .hero__content {
  left: 50%;
  transform: translate(-50%, -50%);
}

.hero__eyebrow {
  font-size: 36px;
  font-weight: 500;
  line-height: 1.5;
  color: #fff;
  white-space: nowrap;
}

.hero__logo {
  width: 418.6px;
  height: 70px;
  margin-top: 10px;
}

.hero__desc {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.7;
  color: #fff;
  margin-top: 14px;
}

.hero__buttons {
  display: flex;
  gap: 20px;
  margin-top: 48px;
}

/* ===== 기능 소개 ===== */
.features {
  position: relative;
  margin-top: 160px;
}

.feature-row {
  position: relative;
  height: 588px;
}

/* 카드 + 떠 있는 UI 조각을 담는 시각 캔버스.
   데스크톱에서는 디자인 좌표에 절대 배치, 모바일에서는 JS가 폭에 맞춰 scale한다 */
.feature-visual {
  position: absolute;
  top: 0;
}

.feature-canvas {
  position: relative;
}

/* 카드: 568x568, 라운드 40, 폰 스크린샷은 카드 밖으로 크게 넘치고 클리핑된다 */
.feature-card {
  position: absolute;
  top: 0;
  width: 568px;
  height: 568px;
  border-radius: 40px;
  overflow: hidden;
}

.feature-card--p2 {
  background: var(--p2);
}

.feature-card--p7 {
  background: var(--p7);
}

.feature-card__phone {
  position: absolute;
  object-fit: cover;
  max-width: none;
}

.feature-card__phone--rotated {
  transform: rotate(19.27deg);
  opacity: 0.7;
}

/* 카드 위에 떠 있는 UI 조각 이미지 */
.feature-float {
  position: absolute;
  object-fit: cover;
  z-index: 2;
}

.feature-float--card {
  border-radius: 10px;
  box-shadow: 0 0 7px 0 rgba(0, 0, 0, 0.1);
}

.feature-text {
  position: absolute;
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 568px;
  color: var(--point2);
  word-break: keep-all;
}

.feature-text--left {
  left: 62px;
  text-align: left;
}

.feature-text--right {
  left: 650px;
  text-align: right;
}

.feature-text h2 {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.5;
}

.feature-text p {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.7;
}

/* ===== 이용 방법 (캐러셀) ===== */
.howto {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-top: 140px;
  padding: 0 62px;
}

.howto__viewport {
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.howto__viewport::-webkit-scrollbar {
  display: none;
}

.howto__track {
  display: flex;
  gap: 30px;
  width: max-content;
}

.slide {
  position: relative;
  width: 764px;
  height: 573px;
  border-radius: 40px;
  background: var(--p2);
  overflow: hidden;
  scroll-snap-align: start;
  flex-shrink: 0;
}

/* 슬라이드 그림 영역: 데스크톱은 슬라이드 전체를 덮고, 모바일은 흐름에 따라 배치된다 */
.slide__art {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.slide__canvas {
  position: absolute;
  inset: 0;
}

/* 슬라이드 왼쪽에 반쯤 걸친 폰 목업 (678x605, 세로 중앙 +123px) */
.slide__phone {
  position: absolute;
  left: -170px;
  top: calc(50% + 123px);
  transform: translateY(-50%);
  width: 678px;
  height: 605px;
  object-fit: cover;
  max-width: none;
}

/* 큰 화면 스크린샷 (524x467, 세로 중앙 -54px) */
.slide__big {
  position: absolute;
  top: calc(50% - 54px);
  transform: translateY(-50%);
  object-fit: cover;
  max-width: none;
}

.slide__shot {
  position: absolute;
  object-fit: cover;
  box-shadow: 0 0 7px 0 rgba(0, 0, 0, 0.1);
}

.slide__arrow {
  position: absolute;
  object-fit: contain;
  pointer-events: none;
}

.slide__caption {
  position: absolute;
  left: 372px;
  top: calc(50% + 198.5px);
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 372px;
  color: var(--point1);
  word-break: keep-all;
}

.slide__caption h3 {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
}

.slide__caption p {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.7;
}

.howto__dots {
  display: flex;
  justify-content: center;
  gap: 16px;
}

.howto__dots button {
  width: 8px;
  height: 8px;
  border: none;
  border-radius: 50%;
  background: var(--p);
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, transform 0.2s;
}

.howto__dots button.active {
  background: var(--point1);
  transform: scale(1.25);
}

/* ===== 3가지 장점 ===== */
.benefits {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

.benefit-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 372px;
  padding: 40px;
  border: 1px solid var(--p);
  border-radius: 20px;
}

.benefit-card h3 {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
}

.benefit-card p {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--gray8);
}

/* ===== 인스타그램 ===== */
.instagram {
  position: relative;
  height: 984px;
  margin-top: 167px;
  overflow: hidden;
  background: var(--pink-band);
}

.instagram__bg {
  position: absolute;
  left: -197px;
  top: 247px;
  width: 1802px;
  height: 1802px;
}

.instagram__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
}

.instagram__bg-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, var(--pink-band), rgba(244, 229, 231, 0) 18.5%);
}

.instagram .section-heading {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 120px;
  width: 568px;
}

.instagram__grid {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 274px;
  display: grid;
  grid-template-columns: repeat(3, 176px);
  gap: 20px;
}

.instagram__grid a {
  position: relative;
  display: block;
  overflow: hidden;
}

.instagram__grid img {
  width: 176px;
  height: 176px;
  object-fit: cover;
  transition: transform 0.2s;
}

/* 호버 시: 사진이 어두워지고 인스타그램 아이콘이 중앙에 나타난다 */
.instagram__grid a::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35)
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23fff'%3E%3Cpath d='M12 2.163c3.204 0 3.584.012 4.85.07 3.252.148 4.771 1.691 4.919 4.919.058 1.265.069 1.645.069 4.849 0 3.205-.012 3.584-.069 4.849-.149 3.225-1.664 4.771-4.919 4.919-1.266.058-1.644.07-4.85.07-3.204 0-3.584-.012-4.849-.07-3.26-.149-4.771-1.699-4.919-4.92-.058-1.265-.07-1.644-.07-4.849 0-3.204.013-3.583.07-4.849.149-3.227 1.664-4.771 4.919-4.919 1.266-.057 1.645-.069 4.849-.069zm0-2.163c-3.259 0-3.667.014-4.947.072-4.358.2-6.78 2.618-6.98 6.98-.059 1.281-.073 1.689-.073 4.948 0 3.259.014 3.668.072 4.948.2 4.358 2.618 6.78 6.98 6.98 1.281.058 1.689.072 4.948.072 3.259 0 3.668-.014 4.948-.072 4.354-.2 6.782-2.618 6.979-6.98.059-1.28.073-1.689.073-4.948 0-3.259-.014-3.667-.072-4.947-.196-4.354-2.617-6.78-6.979-6.98-1.281-.059-1.69-.073-4.949-.073zm0 5.838c-3.403 0-6.162 2.759-6.162 6.162s2.759 6.163 6.162 6.163 6.162-2.759 6.162-6.163c0-3.403-2.759-6.162-6.162-6.162zm0 10.162c-2.209 0-4-1.79-4-4 0-2.209 1.791-4 4-4s4 1.791 4 4c0 2.21-1.791 4-4 4zm6.406-11.845c-.796 0-1.441.645-1.441 1.44s.645 1.44 1.441 1.44c.795 0 1.439-.645 1.439-1.44s-.644-1.44-1.439-1.44z'/%3E%3C/svg%3E")
    center / 32px 32px no-repeat;
  opacity: 0;
  transition: opacity 0.2s;
}

.instagram__grid a:hover::after,
.instagram__grid a:focus-visible::after {
  opacity: 1;
}

.instagram__grid a:hover img {
  transform: scale(1.04);
}

/* 실제 게시물 캡션: 호버 시 사진 하단에 나타난다 */
.instagram__caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  padding: 10px 12px 12px;
  font-size: 12px;
  line-height: 1.5;
  color: #fff;
  text-align: left;
  word-break: keep-all;
  opacity: 0;
  transition: opacity 0.2s;
  pointer-events: none;
}

.instagram__grid a:hover .instagram__caption,
.instagram__grid a:focus-visible .instagram__caption {
  opacity: 1;
}

/* ===== 다운로드 CTA ===== */
.cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 40px;
  background: #fff;
}

/* 이메일 구독 박스 (Figma 인증코드 필드 + Button Fixed 컴포넌트 스타일) */
.cta__subscribe {
  display: flex;
  align-items: flex-end;
  gap: 12px;
  flex-shrink: 0;
}

.cta__subscribe-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cta__subscribe-field span {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  color: #000;
}

.cta__subscribe input {
  width: 336px;
  height: 58px;
  padding: 0 19px;
  background: #fff;
  border: 1px solid #eacfcf;
  border-radius: 12px;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.5;
  font-family: inherit;
  outline: none;
  transition: border-color 0.15s;
}

.cta__subscribe input:focus {
  border-color: var(--point1);
}

.cta__subscribe button {
  height: 58px;
  padding: 0 38px;
  border: none;
  border-radius: 12px;
  background: var(--p);
  color: #fff;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.5;
  font-family: inherit;
  cursor: pointer;
  transition: opacity 0.15s;
}

.cta__subscribe button:hover {
  opacity: 0.85;
}

.cta__subscribe button:disabled {
  opacity: 0.5;
  cursor: default;
}

.cta__subscribe-message {
  font-size: 14px;
  font-weight: 500;
  line-height: 48px;
  color: var(--point1);
  white-space: nowrap;
}

.cta__text {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.5;
}

.cta__text-line {
  display: flex;
  align-items: center;
  gap: 18px;
}

.cta__logo {
  width: 143.5px;
  height: 24px;
}

.cta__chevron {
  width: 24px;
  height: 24px;
}

/* ===== 푸터 ===== */
.footer {
  display: flex;
  flex-direction: column;
  padding: 0 62px;
  background: var(--gray1);
}

.footer__info {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 40px 29px;
}

.footer__logo {
  width: 143.5px;
  height: 24px;
}

.footer__lines {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer__line {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--gray8);
}

.footer__divider {
  width: 1px;
  height: 12px;
  background: var(--gray3);
}

.footer__bottom {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 29px 20px;
  border-top: 1px solid var(--gray3);
  font-size: 14px;
  color: var(--gray8);
}

.footer__bottom a:hover {
  text-decoration: underline;
}

/* 저작권 보호 경고문 */
.footer__legal {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 0 29px 60px;
  font-size: 12px;
  line-height: 1.6;
  color: #9a9ea8;
  word-break: keep-all;
}

/* ==========================================================================
   모바일 전용 레이아웃 (768px 이하)
   데스크톱의 1280 고정 캔버스 대신 섹션을 세로로 쌓고 글자를 키운다.
   시각 캔버스(.scale-canvas)는 JS가 화면 폭에 맞춰 scale한다.
   ========================================================================== */
@media (max-width: 768px) {
  .page {
    width: 100%;
  }

  /* ----- 히어로 ----- */
  .hero {
    height: 100vh;
    height: 100svh;
    min-height: 540px;
    max-height: 820px;
  }

  .hero__bg {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    object-position: 70% 45%;
  }

  .hero__top-inner {
    width: 100vw;
  }

    /* 모바일은 화면이 좁아 이동 연출 없이 처음부터 중앙에 둔다 */
  .hero__content {
    width: calc(100% - 48px);
    left: 50%;
    transform: translate(-50%, -50%);
    transition: none;
  }

  .hero__eyebrow {
    font-size: 20px;
    white-space: normal;
  }

  .hero__logo {
    /* 이 SVG는 고정 크기 정보가 없어 height:auto가 안 통한다 — 비율을 직접 지정 */
    width: min(300px, 75vw);
    height: auto;
    aspect-ratio: 418.602 / 70;
  }

  .hero__desc {
    font-size: 15px;
  }

  .hero__buttons {
    margin-top: 32px;
    gap: 12px;
  }

  .hero__buttons .store-btn,
  .cta .store-btn {
    width: 150px;
    height: 48px;
    font-size: 14px;
    gap: 8px;
  }

  .hero__buttons .store-btn__icon--play,
  .cta .store-btn__icon--play {
    width: 26px;
    height: 26px;
  }

  .hero__buttons .store-btn__icon--apple,
  .cta .store-btn__icon--apple {
    width: 24px;
    height: 24px;
  }

  .hero__grip {
    width: 64px;
  }

  /* ----- 공통 헤딩 ----- */
  .section-heading h2 {
    font-size: 24px;
  }

  .section-heading p {
    font-size: 15px;
  }

  /* ----- 기능 소개: 세로 스택 ----- */
  .features {
    margin-top: 64px;
  }

  .feature-row {
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 0 24px;
    margin-bottom: 64px;
  }

  .feature-text {
    position: static;
    width: 100%;
    text-align: left;
    gap: 8px;
  }

  .feature-text--right {
    text-align: left;
  }

  .feature-text h2 {
    font-size: 24px;
  }

  .feature-text p {
    font-size: 15px;
  }

  .feature-visual {
    position: relative;
    left: 0 !important;
    width: 100%;
  }

  .feature-canvas {
    position: absolute;
    left: 0;
    top: 0;
    transform-origin: left top;
  }

  .feature-card {
    border-radius: 24px;
  }

  /* ----- 이용 방법 캐러셀 ----- */
  .howto {
    margin-top: 16px;
    padding: 0 24px;
    gap: 24px;
  }

  .slide {
    width: calc(100vw - 88px);
    height: auto;
    border-radius: 24px;
    display: flex;
    flex-direction: column;
  }

  .slide__art {
    position: relative;
    width: 100%;
  }

  .slide__canvas {
    position: absolute;
    left: 0;
    top: 0;
    right: auto;
    bottom: auto;
    width: 764px;
    height: 573px;
    transform-origin: left top;
  }

  .slide__caption {
    position: static;
    transform: none;
    width: auto;
    padding: 16px 20px 24px;
    gap: 8px;
  }

  .slide__caption h3 {
    font-size: 18px;
  }

  .slide__caption p {
    font-size: 14px;
  }

  /* ----- 3가지 장점 ----- */
  .benefits {
    flex-direction: column;
    align-items: stretch;
    padding: 0 24px;
    gap: 16px;
    margin-top: 48px;
  }

  .benefit-card {
    width: 100%;
    padding: 28px;
  }

  .benefit-card h3 {
    font-size: 20px;
  }

  /* ----- 인스타그램 ----- */
  .instagram {
    height: auto;
    margin-top: 80px;
    padding: 64px 24px 72px;
  }

  .instagram__bg {
    width: 1200px;
    height: 1200px;
    left: 50%;
    transform: translateX(-50%);
    top: 35%;
  }

  .instagram .section-heading {
    position: static;
    transform: none;
    width: auto;
  }

  .instagram__grid {
    position: static;
    transform: none;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    max-width: 420px;
    margin: 24px auto 0;
  }

  .instagram__grid a {
    aspect-ratio: 1 / 1;
  }

  .instagram__grid img {
    width: 100%;
    height: 100%;
  }

  /* ----- 다운로드 CTA ----- */
  .cta {
    flex-direction: column;
    gap: 30px;
    padding: 64px 24px;
  }

  /* 모바일: "지금 슬립도치를 구독하고" / "최신 육아 정보를 받아보세요." 두 줄 */
  .cta__text {
    flex-direction: column;
    align-items: center;
    font-size: 18px;
    gap: 9px;
    text-align: center;
  }

  .cta__text-line {
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  }

  .cta__logo {
    width: 119.6px;
    height: 20px;
  }

  .cta__chevron {
    width: 20px;
    height: 20px;
  }

    .cta__subscribe {
    width: 100%;
    max-width: 360px;
  }

  .cta__subscribe-field {
    flex: 1;
  }

  .cta__subscribe input {
    width: 100%;
  }

  /* ----- 푸터 ----- */
  .footer {
    padding: 0 24px;
  }

  .footer__info {
    padding: 32px 0;
  }

  .footer__line {
    flex-wrap: wrap;
    font-size: 12px;
    row-gap: 4px;
  }

  .footer__bottom {
    padding: 16px 0;
    font-size: 12px;
  }

  .footer__legal {
    padding: 0 0 48px;
    font-size: 11px;
  }
}
