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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  width: 100%;
  max-width: none;
}

body {
  font-family: sans-serif;
  background: #f5f2ea;
  color: #1a2410;
  overflow-x: hidden;
  width: 100%;
  max-width: none;
}

.cur,
.cur-r {
  display: none;
}

@media (hover: hover) and (pointer: fine) {
  .cur {
    display: block;
    position: fixed;
    width: 20px;
    height: 20px;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: transform 0.1s;
  }

  .cur svg {
    width: 100%;
    height: 100%;
  }

  .cur-r {
    display: block;
    position: fixed;
    width: 34px;
    height: 34px;
    border: 1.5px solid var(--carousel);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: border-color 0.8s ease, transform 0.4s ease;
    opacity: 0.55;
  }

  body,
  a,
  button {
    cursor: none;
  }
}

:root {
  --g: #2c4420;
  --gm: #3d5c2c;
  --gl: #5a7a3a;
  --c: #f5f2ea;
  --c2: #ede8db;
  --gold: #b8943c;
  --goldl: #d4ac58;
  --blue: #a4c1ce;
  --peach: #f1d2b7;
  --orange: #e39c5c;
  --olive: #87873e;
  --txt: #1a2410;
  --txtm: #4a5e38;
  --txtd: #7a8a6a;
  --w: #fafaf7;
  --r: 14px;
  --pad: 120px;
  --carousel: #a4c1ce; /* JS 更新 */
}

/* ── 輪播色套用對象 ── */
.sh-tag,
.ci-en,
.tc-meta,
.rb-rgn,
.hero-lbl,
.hero h1 strong {
  color: var(--carousel);
  transition: color 0.8s ease;
}

.ci-div,
.deco-d {
  background: var(--carousel);
  transition: background 0.8s ease;
}

.ftab.on::after {
  background: var(--carousel);
  transition: background 0.8s ease;
}

.cbtn.fill {
  background: var(--orange);
}

.cbtn.fill:hover {
  background: #c87d3c;
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  padding: 18px var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  transition: background 0.4s, padding 0.3s;
}

/* Fillo 後台會套用官網 header/footer，因此隱藏頁面內建 nav/footer */
body > nav,
body > footer {
  display: none !important;
}

nav.solid {
  background: rgba(44, 68, 32, 0.96);
  backdrop-filter: blur(8px);
  padding: 12px var(--pad);
}

.nav-logo {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  letter-spacing: 1px;
}

.nav-logo em {
  font-style: normal;
  color: var(--carousel);
  font-weight: 300;
  transition: color 0.8s;
}

.nav-r {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-r a {
  font-size: 13px;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
}

.nav-r a:hover {
  color: var(--carousel);
}

.nav-btn {
  font-size: 12px;
  padding: 8px 20px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #fff;
  border-radius: 40px;
  text-decoration: none;
  transition: background 0.2s;
}

.nav-btn:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* HERO — 區塊高度較矮時，waves／弧線／旗標／SCROLL 依附同一容器一併上移 */
.hero {
  position: relative;
  height: calc(48vh + 85px);
  min-height: 400px;
  background: var(--g);
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Fillo 嵌入防衝突：確保 Hero 與篩選列橫向滿版 */
.hero,
.filter-wrap {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 70% 60% at 65% 40%,
    rgba(90, 122, 58, 0.25) 0%,
    transparent 70%
  );
}

.hero-txt {
  position: relative;
  z-index: 3;
  padding: 0 var(--pad);
  /* 在 flex 垂直置中基礎上整塊略往下 */
  transform: translateY(40px);
}

.hero-lbl {
  font-size: 12px;
  letter-spacing: 5px;
  text-transform: uppercase;
  margin-bottom: 14px;
  opacity: 0;
  animation: fup 0.7s 0.3s ease forwards;
}

.hero h1 {
  font-size: clamp(34px, 5.5vw, 62px);
  font-weight: 350;
  line-height: 1.15;
  color: #f5f2ea;
  letter-spacing: 2px;
  opacity: 0;
  animation: fup 0.8s 0.5s ease forwards;
}

.hero h1 strong {
  font-size: 0.8em;
  font-weight: 700;
}

.hero-sub {
  margin-top: 14px;
  font-size: 13px;
  letter-spacing: 1.5px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.5);
  opacity: 0;
  animation: fup 0.8s 0.7s ease forwards;
}

/* Hero 底部波浪：雙圖塊無縫向左滾動 */
.hero-waves {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: clamp(80px, 12vw, 150px);
  overflow: hidden;
  z-index: 2;
  pointer-events: none;
  opacity: 0;
  animation: fin 1s 0.8s ease forwards;
}

.hero-waves-track {
  display: flex;
  width: 200%;
  height: 100%;
  will-change: transform;
  animation: hero-waves-scroll 50s linear infinite;
}

.hero-wave-svg {
  flex: 0 0 50%;
  width: 50%;
  height: 100%;
  display: block;
}

@keyframes hero-waves-scroll {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-50%, 0, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-waves-track {
    animation: none;
  }
}

.arc-svg-main {
  position: absolute;
  top: calc(4% + 90px);
  right: 3%;
  width: clamp(260px, 34vw, 400px);
  height: 260px;
  z-index: 3;
  pointer-events: none;
  overflow: visible;
  opacity: 0;
  animation: fin 0.5s 0.6s ease forwards;
}

.arc-svg {
  position: absolute;
  top: 8%;
  right: 5%;
  z-index: 2;
  opacity: 0;
  animation: fin 0.8s 1s ease forwards;
}

.arc-svg path {
  stroke-dasharray: 480;
  stroke-dashoffset: 480;
  animation: dl 2s 1.2s ease forwards;
  stroke: var(--carousel);
  transition: stroke 0.8s;
}

@keyframes dl {
  to {
    stroke-dashoffset: 0;
  }
}

.flag-svg {
  position: absolute;
  bottom: calc(26% - 60px);
  right: 19%;
  z-index: 3;
  opacity: 0;
  animation: fup 0.5s 1s ease forwards;
}

.scr {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  text-align: center;
  opacity: 0;
  animation: fin 0.8s 1.8s ease forwards;
}

.scr span {
  font-size: 12px;
  letter-spacing: 3px;
  color: rgba(255, 255, 255, 0.3);
  display: block;
  margin-bottom: 5px;
  writing-mode: vertical-lr;
}

.scr-bar {
  width: 1px;
  height: 28px;
  background: rgba(255, 255, 255, 0.2);
  margin: 0 auto;
  animation: bk 1.8s 2.5s ease infinite;
}

@keyframes bk {
  0%,
  100% {
    opacity: 0.2;
  }
  50% {
    opacity: 0.7;
  }
}

@keyframes fup {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes fin {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* FILTER */
.filter-wrap {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--g);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.filter-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--pad);
  display: flex;
  align-items: stretch;
  overflow-x: auto;
  scrollbar-width: none;
}

.filter-inner::-webkit-scrollbar {
  display: none;
}

.flbl {
  font-size: 12px;
  letter-spacing: 3px;
  color: rgba(255, 255, 255, 0.3);
  white-space: nowrap;
  display: flex;
  align-items: center;
  padding-right: 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  margin-right: 4px;
  flex-shrink: 0;
}

.ftab {
  font-size: 13px;
  letter-spacing: 1px;
  padding: 16px 22px;
  white-space: nowrap;
  background: none;
  border: none;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.55);
  position: relative;
  transition: color 0.2s;
}

.ftab::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 22px;
  right: 22px;
  height: 2px;
  transform: scaleX(0);
  transition: transform 0.3s, background 0.8s;
}

.ftab.on {
  color: #fff;
}

.ftab.on::after {
  transform: scaleX(1);
}

.ftab:hover {
  color: rgba(255, 255, 255, 0.85);
}

/* REGION PAGE */
.rpage {
  display: none;
}

.rpage.on {
  display: block;
}

/* REGION BAND — 改為橄欖色 */
.rband {
  background: var(--olive);
  padding: 30px var(--pad);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  position: relative;
  overflow: hidden;
}

.rb-rgn {
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.rb-ttl {
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 300;
  color: #fff;
  line-height: 1.1;
  letter-spacing: 1px;
}

.rb-ttl strong {
  color: var(--carousel);
  font-weight: 700;
  transition: color 0.8s ease;
}

.rb-ttl .rb-ttl-sub {
  font-size: 0.62em;
  font-weight: 300;
}

.rb-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.9;
  font-weight: 300;
  max-width: 520px;
  text-align: right;
  text-wrap: pretty;
}

/* COURSES — 奶油底 + 橙色線條裝飾 */
.csec {
  padding: 72px 0;
  background: var(--c);
}

/* 球場偶數張改淡桃底色 */
.ci.flip .cinfo {
  background: #fdf8f3;
}

.shead {
  padding: 0 var(--pad) 48px;
}

.shead-wide {
  padding-left: var(--pad);
  padding-right: var(--pad);
}

.sh-tag {
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 10px;
}

.shead h2 {
  font-size: clamp(20px, 2.5vw, 30px);
  font-weight: 300;
  color: var(--g);
}

.shead h2 strong {
  font-weight: 700;
}

.deco {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 14px;
}

.deco::before,
.deco::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--c2);
}

.deco-d {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}

.clist {
  padding: 0 var(--pad);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.ci {
  display: grid;
  grid-template-columns: 480px 1fr;
  background: var(--w);
  border-radius: var(--r);
  overflow: hidden;
  transition: box-shadow 0.3s;
}

.ci:hover {
  box-shadow: 0 12px 40px rgba(44, 68, 32, 0.1);
}

.ci.flip {
  grid-template-columns: 1fr 480px;
}

.ci.flip .cimg {
  order: 2;
}

.ci.flip .cinfo {
  order: 1;
}

.cimg {
  position: relative;
  overflow: hidden;
  background: var(--c2);
}

.cimg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s;
}

.ci:hover .cimg img {
  transform: scale(1.04);
}

.cinfo {
  padding: 40px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.ci-en {
  font-size: 12px;
  letter-spacing: 3px;
  margin-bottom: 10px;
}

.ci-name {
  font-size: clamp(19px, 1.8vw, 24px);
  font-weight: 700;
  color: var(--g);
  margin-bottom: 5px;
  line-height: 1.2;
}

.ci-sub {
  font-size: 12px;
  color: var(--txtd);
  letter-spacing: 1px;
  margin-bottom: 18px;
}

.ci-div {
  width: 32px;
  height: 2px;
  margin-bottom: 18px;
}

.ci-desc {
  font-size: 13px;
  color: var(--txtm);
  line-height: 2.1;
  font-weight: 300;
  margin-bottom: 22px;
}

.ci-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

/* tag 顏色區分 */
.ci-tag {
  font-size: 12px;
  letter-spacing: 1px;
  padding: 4px 12px;
  border: 1px solid var(--c2);
  color: var(--txtd);
  border-radius: 40px;
}

.ci-tag:first-child {
  border-color: var(--blue);
  color: #5a8090;
}

.ci-tag:nth-child(2) {
  border-color: var(--orange);
  color: #9a6030;
}

/* TOURS — 藍灰底與球場奶油區形成對比 */
.tsec {
  padding: 64px 0 80px;
  background: #e5e3d3;
}

.tgrid {
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* 九州福岡行程：桌機 Hover 放大被選卡片 */
@media (min-width: 1201px) {
  .tgrid.kyushu-tour-grid {
    display: flex;
    align-items: stretch;
  }

  .tgrid.kyushu-tour-grid .tc {
    flex: 1 1 0;
    min-width: 0;
    transition: flex-grow 0.35s ease, transform 0.35s ease, box-shadow 0.35s ease;
  }

  .tgrid.kyushu-tour-grid:hover .tc {
    flex-grow: 1;
  }

  .tgrid.kyushu-tour-grid .tc:hover {
    flex-grow: 1.65;
  }

  .tgrid.kyushu-tour-grid .tc.cs {
    pointer-events: auto;
  }

  .tgrid.kyushu-tour-grid .tc.ft {
    grid-column: auto;
  }
}

.tc {
  background: var(--w);
  border-radius: var(--r);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: block;
  transition: transform 0.3s, box-shadow 0.3s;
}

.tc:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(44, 68, 32, 0.12);
}

.tc.ft {
  grid-column: span 2;
}

.tc-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: var(--c2);
}

.tc-img-rel {
  position: relative;
}

.tc.ft .tc-img {
  aspect-ratio: 21 / 10;
}

.tc-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s;
}

.tc:hover .tc-img img {
  transform: scale(1.04);
}

.tc-rtag {
  position: absolute;
  top: 14px;
  left: 14px;
  font-size: 12px;
  letter-spacing: 2px;
  padding: 4px 12px;
  border-radius: 40px;
  background: rgba(44, 68, 32, 0.75);
  backdrop-filter: blur(4px);
  color: rgba(255, 255, 255, 0.9);
}

.tc-body {
  padding: 22px 22px 20px;
}

.tc-meta {
  font-size: 12px;
  letter-spacing: 2px;
  margin-bottom: 7px;
}

.tc-title {
  font-size: 19px;
  font-weight: 700;
  color: var(--g);
  margin-bottom: 4px;
}

.tc.ft .tc-title {
  font-size: 23px;
}

.tc-en {
  font-size: 12px;
  color: var(--txtd);
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.tc-desc {
  font-size: 12px;
  color: var(--txtm);
  line-height: 1.9;
  font-weight: 300;
  margin-bottom: 14px;
}

.tc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
}

.tc-tag {
  font-size: 12px;
  letter-spacing: 1px;
  padding: 3px 10px;
  border: 1px solid var(--c2);
  color: var(--txtd);
  border-radius: 40px;
}

.tc-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid var(--c2);
}

.tc-price {
  font-size: 12px;
  color: var(--txtd);
}

.tc-price strong {
  font-size: 20px;
  color: var(--g);
  font-weight: 700;
}

/* CTA 按鈕用深綠，hover 改橙 */
.tc-cta {
  font-size: 12px;
  letter-spacing: 2px;
  padding: 7px 16px;
  background: var(--g);
  color: #fff;
  border-radius: 40px;
  transition: background 0.2s;
}

.tc-cta-muted {
  background: var(--txtd);
}

.tc:hover .tc-cta {
  background: var(--orange);
}

.tc.cs {
  opacity: 0.72;
  cursor: default;
  pointer-events: none;
}

.cs-bdg {
  position: absolute;
  top: 14px;
  right: 14px;
  font-size: 12px;
  letter-spacing: 2px;
  padding: 4px 12px;
  border-radius: 40px;
  background: rgba(163, 147, 58, 0.9);
  color: #fff;
}

.ph {
  background: #e8e2d8;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 16 / 10;
}

#r-chiangmai .ph {
  background: #e0ddd4;
}

#r-huahin .ph {
  background: #e0ddd4;
}

#r-pattaya .ph {
  background: #e0ddd4;
}

.tc.ft .ph {
  aspect-ratio: 21 / 10;
}

/* CTA BAND — 橙色為主，深綠裝飾 */
.ctaband {
  position: relative;
  overflow: hidden;
  background: var(--olive);
  padding: 56px var(--pad);
  text-align: center;
}

.ctaband-inner {
  position: relative;
  z-index: 2;
}

.ctaband h3 {
  font-size: clamp(20px, 3vw, 32px);
  font-weight: 700;
  color: #fff;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.ctaband p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 1px;
  margin-bottom: 28px;
}

.cta-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.cbtn {
  font-size: 12px;
  letter-spacing: 2px;
  padding: 12px 28px;
  border-radius: 40px;
  text-decoration: none;
  transition: all 0.2s;
}

.cbtn.fill {
  background: var(--g);
  color: #fff;
}

.cbtn.fill:hover {
  background: var(--gm);
}

.cbtn.ol {
  border: 2px solid rgba(255, 255, 255, 0.6);
  color: #fff;
}

.cbtn.ol:hover {
  background: rgba(255, 255, 255, 0.15);
}

.ctaband svg {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  pointer-events: none;
}

footer {
  background: #1c2d14;
  padding: 40px var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.f-logo {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
}

.f-logo em {
  font-style: normal;
  font-weight: 300;
  color: var(--carousel);
  transition: color 0.8s;
}

.f-copy {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
}

.f-links a {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  margin-left: 20px;
}

.f-links a:hover {
  color: var(--carousel);
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.d1 {
  transition-delay: 0.1s;
}

.reveal.d2 {
  transition-delay: 0.2s;
}

.reveal.in {
  opacity: 1;
  transform: none;
}

/* 卡片滑入：animate__fadeInDown */
.reveal.animate__fadeInDown {
  opacity: 0;
  transform: translate3d(0, -24px, 0);
  transition: none;
}

.reveal.animate__fadeInDown.in {
  animation: fadeInDown 0.75s ease both;
}

.reveal.animate__fadeInDown.d1.in {
  animation-delay: 0.5s;
}

.reveal.animate__fadeInDown.d2.in {
  animation-delay: 0.75s;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -24px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.rband-dark {
  background: #87873e;
}

.csec-soft {
  background: #f0ede4;
}

.ci-soft {
  background: #f8f6f0;
}

.cimg-soon {
  background: #e0ddd4;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 280px;
}

.coming-wrap {
  text-align: center;
}

.coming-icon {
  margin-bottom: 12px;
}

.coming-text {
  font-size: 12px;
  letter-spacing: 3px;
  color: #b8943c;
}

.coming-note {
  font-size: 12px;
  color: #b8943c;
  letter-spacing: 2px;
}

@media (max-width: 1200px) {
  :root {
    --pad: 60px;
  }

  .tgrid {
    grid-template-columns: repeat(2, 1fr);
  }

  .tc.ft {
    grid-column: span 2;
  }
}

/* 桌機：篩選列左側「球場介紹×精選行程」標籤字級 */
@media (min-width: 901px) {
  .filter-wrap {
    top: 72px;
  }

  .flbl {
    font-size: 12px;
    letter-spacing: 0.14em;
  }

  /* 桌機：區塊小標題（Golf Courses / Tour Products） */
  .sh-tag {
    font-size: 14px;
    letter-spacing: 0.18em;
  }
}

@media (max-width: 900px) {
  :root {
    --pad: 24px;
  }

  /* 手機版 hero 文案整體往上 */
  .hero-txt {
    transform: translateY(0px);
  }

  .scr {
    display: none;
  }

  /* Hero：弧線＋球下移，避免與標題重疊；旗桿往左（遠離右緣） */
  .arc-svg-main {
    top: calc(6% + 155px);
    right: 0;
    width: min(92vw, 280px);
    height: 200px;
  }

  .flag-svg {
    right: 70%;
    bottom: calc(20% - 48px);
  }

  nav {
    padding: 14px 24px;
  }

  .nav-r a:not(.nav-btn) {
    display: none;
  }

  .ci,
  .ci.flip {
    grid-template-columns: 1fr;
  }

  .cimg {
    height: 220px;
  }

  .ci.flip .cimg {
    order: 0;
  }

  .ci.flip .cinfo {
    order: 1;
  }

  .cinfo {
    padding: 26px 22px;
  }

  .ci.flip .cinfo {
    background: #fdf8f3;
  }

  .tgrid {
    grid-template-columns: 1fr;
  }

  .tc.ft {
    grid-column: span 1;
  }

  .rband {
    flex-direction: column;
    align-items: flex-start;
    padding: 18px var(--pad) 16px;
    gap: 10px;
  }

  .csec {
    padding-top: 36px;
  }

  .rb-ttl {
    font-size: clamp(22px, 7.2vw, 30px);
    line-height: 1.1;
  }

  .rb-desc {
    text-align: left;
    max-width: 100%;
    font-size: 11px;
    line-height: 1.6;
  }

  footer {
    flex-direction: column;
    gap: 14px;
    text-align: center;
  }
}
