/* ============================================
   しももんBirthday 2026 — Tate YBA style
   ============================================ */

/* --- Reset --- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { font-size: 16px; scroll-behavior: smooth; }

body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  color: #1a1a1a;
  background: #fff;
  line-height: 1.8;
  letter-spacing: 0.02em;
  -webkit-font-smoothing: antialiased;
}
body.no-scroll { overflow: hidden; }

.container { max-width: 1080px; margin: 0 auto; padding: 0 48px; }

/* ============================
   Header — transparent, minimal
   ============================ */
.header {
  position: fixed; top: 0; left: 0; right: 0;
  height: 80px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 32px;
  background: #fff;
  border-bottom: 1px solid #ddd;
  z-index: 500;
}

.header-logo {
  flex: 1;
}

.header-logo a {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 900;
  font-size: 1rem;
  line-height: 1;
  color: #1a1a1a;
  text-decoration: none;
}

/* Hamburger button */
.header-hamburger {
  display: flex; flex-direction: column; justify-content: center;
  gap: 6px;
  width: 36px; height: 36px;
  background: none; border: none; cursor: pointer;
  padding: 4px;
  z-index: 510;
}

.hamburger-line {
  display: block;
  width: 100%;
  height: 2px;
  background: #1a1a1a;
  transition: transform .3s ease, opacity .3s ease;
}

/* Hamburger → X animation */
.header-hamburger.is-open .hamburger-line:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
  background: #1a1a1a;
}
.header-hamburger.is-open .hamburger-line:nth-child(2) {
  opacity: 0;
}
.header-hamburger.is-open .hamburger-line:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
  background: #1a1a1a;
}


/* Fixed tickets button — bottom-right */
.fixed-tickets {
  position: fixed;
  bottom: 24px;
  right: 24px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.15rem;
  font-weight: 900;
  letter-spacing: .05em;
  color: #fff;
  background: #1a1a1a;
  text-decoration: none;
  padding: 18px 40px;
  z-index: 400;
  transition: background .2s, transform .2s;
}
.fixed-tickets:hover { background: #333; transform: translateY(-2px); }

/* ============================
   Menu Overlay — White, Tate style
   ============================ */
.menu-overlay {
  position: fixed; inset: 0;
  background: #fff;
  z-index: 450;
  opacity: 0;
  transform: translateX(40px);
  pointer-events: none;
  transition: opacity .35s ease, transform .35s ease;
  overflow-y: auto;
}
.menu-overlay.is-open { opacity: 1; transform: translateX(0); pointer-events: auto; }

.menu-inner {
  display: flex;
  min-height: 100vh;
  padding: 100px 48px 48px;
  gap: 80px;
}

.menu-left { flex-shrink: 0; width: 320px; }

.menu-logo {
  font-family: "EB Garamond", "Shippori Mincho", serif;
  font-weight: 400;
  font-size: 3rem;
  line-height: 1.15;
  margin-bottom: 20px;
}

.menu-logo-sub {
  font-family: "EB Garamond", "Shippori Mincho", serif;
  font-size: .95rem;
  font-style: italic;
  color: #888;
  line-height: 1.7;
}

.menu-sns {
  display: flex; gap: 20px; margin-top: 24px;
}
.menu-sns a {
  font-family: "Noto Sans JP", sans-serif;
  font-size: .9rem;
  font-weight: 700;
  color: #1a1a1a;
  text-decoration: none;
  transition: opacity .2s;
}
.menu-sns a:hover { opacity: .5; }

.menu-right { flex: 1; padding-top: 16px; }

.menu-nav { display: flex; flex-direction: column; }

.menu-nav-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 12px;
  border-bottom: 1px solid #ddd;
  text-decoration: none;
  color: #1a1a1a;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  transition: background .25s, color .25s;
}
.menu-nav-item:first-child { border-top: 1px solid #ddd; }

.menu-nav-item:hover {
  background: #1a1a1a;
  color: #fff;
}

.menu-arrow {
  font-size: .8rem;
  color: #aaa;
  transition: transform .2s, color .2s;
}
.menu-nav-item:hover .menu-arrow { transform: translateX(4px); color: #fff; }

/* ============================
   Hero
   ============================ */
.hero {
  position: relative;
  min-height: 100vh;
  padding-top: 80px;
  display: flex;
  text-align: left;
  overflow: hidden;
}

.hero-3d-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: #000;
}
.hero-3d-bg iframe {
  width: 100%;
  height: 100%;
  border: none;
  opacity: 0;
  transition: opacity 1.6s ease-out;
}
.hero-3d-bg iframe.is-loaded {
  opacity: 1;
}

.hero-inner {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 80px 48px 0 96px;
}


.hero-title {
  font-family: "EB Garamond", "Shippori Mincho", serif;
  font-weight: 400;
  font-size: clamp(4rem, 10vw, 8.5rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
  color: #fff;
  text-shadow: 0 2px 20px rgba(0,0,0,.4);
}

.hero-sub {
  font-family: "EB Garamond", "Shippori Mincho", serif;
  font-size: 1.4rem;
  font-style: italic;
  letter-spacing: .18em;
  color: rgba(255,255,255,.85);
  text-shadow: 0 1px 10px rgba(0,0,0,.3);
  margin-bottom: 20px;
}

.hero-dates {
  font-size: 1rem;
  color: rgba(255,255,255,.9);
  text-shadow: 0 1px 10px rgba(0,0,0,.3);
  line-height: 1.8;
}
.hero-dates strong {
  font-family: "EB Garamond", "Shippori Mincho", serif;
  font-size: 2.4rem;
  font-weight: 300;
  vertical-align: baseline;
  margin: 0 2px;
}
.hero-dates small {
  font-size: .6rem;
  letter-spacing: .05em;
  color: #999;
  vertical-align: super;
  margin-left: 1px;
}

/* ============================
   Sections
   ============================ */
.sec { padding: 100px 0; }
.sec--border { border-top: 1px solid #e0e0e0; }

.sec-label {
  font-family: "EB Garamond", "Shippori Mincho", serif;
  font-size: 1rem;
  font-weight: 600;
  color: #666;
  margin-bottom: 8px;
}
.sec-label i { font-style: italic; }

.sec-title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 900;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1.3;
  margin-bottom: 48px;
}

.sec-title-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 32px;
}
.sec-title-row .sec-title { margin-bottom: 0; }

.view-all {
  font-family: "EB Garamond", "Shippori Mincho", serif;
  font-size: .85rem;
  font-style: italic;
  color: #1a1a1a;
  text-decoration: none;
  display: flex; align-items: center; gap: 8px;
  transition: opacity .2s;
}
.view-all:hover { opacity: .5; }
.circle-arrow {
  display: inline-flex; align-items: center; justify-content: center;
  width: 28px; height: 28px;
  border: 1px solid #ccc;
  border-radius: 50%;
  font-style: normal; font-size: .7rem;
}

/* SHIMOMON REBIRTH intro */
.rebirth-intro {
  padding: 80px 0 60px;
}
.rebirth-intro-catch {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 900;
  font-size: clamp(1.4rem, 5vw, 3.5rem);
  line-height: 1.5;
  color: #1a1a1a;
  margin-bottom: 48px;
}
.rebirth-intro-lead {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 900;
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 2.2;
  color: #1a1a1a;
  margin-bottom: 24px;
}
.rebirth-intro-body .body-text {
  font-size: .95rem;
  line-height: 2.2;
  color: #444;
  margin-bottom: 14px;
}

/* About */
.about-bold {
  font-weight: 900;
  font-size: clamp(1.4rem, 3vw, 2rem);
  line-height: 1.6;
  margin-bottom: 32px;
}
.highlight {
  background: #1a1a1a;
  color: #fff;
  padding: 2px 8px;
}

.body-text {
  font-size: .9rem;
  color: #444;
  line-height: 2.1;
  margin-bottom: 14px;
}

/* ============================
   Concept / Highlights — Tate numbered style
   ============================ */
.highlights {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 2px solid #1a1a1a;
}

.hl-item {
  padding: 24px 20px 28px;
  border-right: 1px solid #ddd;
  transition: background .3s, color .3s;
  cursor: default;
}
.hl-item:last-child { border-right: none; }

.hl-item:hover {
  background: #1a1a1a;
}
.hl-item:hover .hl-num,
.hl-item:hover .hl-title { color: #fff; }
.hl-item:hover .hl-text { color: #ccc; }

.hl-num {
  font-family: "EB Garamond", "Shippori Mincho", serif;
  font-size: 3rem;
  font-weight: 300;
  font-style: italic;
  color: #1a1a1a;
  display: block;
  line-height: 1;
  margin-bottom: 16px;
}

.hl-title {
  font-weight: 700;
  font-size: .95rem;
  margin-bottom: 10px;
}


.hl-text {
  font-size: .82rem;
  color: #555;
  line-height: 1.9;
}

/* ============================
   Goods — horizontal scroll
   ============================ */
/* Splide goods slider */
.goods-slider {
  padding-bottom: 20px;
  position: relative;
}

.goods-slider::before,
.goods-slider::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  pointer-events: none;
}

.goods-slider::before {
  left: 0;
  width: calc((100vw - 1080px) / 2);
  background: #fff;
}

.goods-slider::after {
  right: 0;
  width: calc((100vw - 1080px) / 2);
  background: #fff;
}

.goods-slider.is-expanded::before,
.goods-slider.is-expanded::after {
  display: none;
}


.goods-slider.is-expanded .splide__track {
  overflow: visible !important;
}

.goods-slider.is-expanded .splide__list {
  flex-wrap: wrap !important;
  transform: none !important;
  gap: 24px;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 48px;
}
.goods-slider.is-expanded .splide__slide {
  width: 200px !important;
  margin-right: 0 !important;
  opacity: 0;
  transform: translateY(16px);
  animation: goodsFadeIn .5s ease forwards;
}

.goods-slider.is-expanded .splide__slide:nth-child(1) { animation-delay: 0s; }
.goods-slider.is-expanded .splide__slide:nth-child(2) { animation-delay: .06s; }
.goods-slider.is-expanded .splide__slide:nth-child(3) { animation-delay: .12s; }
.goods-slider.is-expanded .splide__slide:nth-child(4) { animation-delay: .18s; }
.goods-slider.is-expanded .splide__slide:nth-child(5) { animation-delay: .24s; }
.goods-slider.is-expanded .splide__slide:nth-child(6) { animation-delay: .30s; }
.goods-slider.is-expanded .splide__slide:nth-child(7) { animation-delay: .36s; }

@keyframes goodsFadeIn {
  to { opacity: 1; transform: translateY(0); }
}

.goods-card { width: 200px; flex-shrink: 0; }

.goods-img {
  width: 200px; height: 200px;
  background: #f0f0f0;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 10px;
}
.goods-img span {
  font-family: "EB Garamond", "Shippori Mincho", serif;
  font-size: .75rem; color: #bbb; letter-spacing: .1em;
}

.goods-name { font-size: .8rem; margin-bottom: 2px; }
.goods-price { font-size: .75rem; color: #999; }

/* ============================
   Event Details — two column
   ============================ */
.info-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.info-dl {
  font-size: .9rem;
}
.info-dl dt {
  font-weight: 500;
  margin-top: 20px;
  padding-left: 12px;
  border-left: 3px solid #1a1a1a;
}
.info-dl dt:first-child { margin-top: 0; }
.info-dl dd {
  padding-left: 15px;
  color: #444;
  margin-top: 4px;
}

.info-access-link {
  display: inline-block;
  margin-top: 8px;
  font-size: .85rem;
  color: #1a1a1a;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.info-access-link:hover { color: #555; }

.info-sns-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #1a1a1a;
  text-decoration: none;
  font-size: .9rem;
  transition: color .2s;
}
.info-sns-link svg { flex-shrink: 0; }
.info-sns-link:hover { color: #888; }

.info-map {
  border: 1px solid #e0e0e0;
  overflow: hidden;
  height: 100%;
}
.info-map iframe { display: block; }
.info-map--sp { display: none; }

/* ============================
   Past Exhibitions
   ============================ */
.ex {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 40px;
  padding: 48px 0;
  border-top: 1px solid #e0e0e0;
  align-items: start;
}
.ex:last-of-type { border-bottom: 1px solid #e0e0e0; }

.ex-visual img {
  width: 100%; height: 220px; object-fit: cover; display: block;
}

.ex-year {
  font-family: "EB Garamond", "Shippori Mincho", serif;
  font-size: .72rem; letter-spacing: .18em; color: #aaa;
  display: block; margin-bottom: 6px;
}

.ex-name {
  font-size: 1.1rem; font-weight: 700;
  margin-bottom: 12px;
}

.ex-desc {
  font-size: .84rem; color: #555; line-height: 2; margin-bottom: 18px;
}

.ex-meta {
  display: grid; grid-template-columns: auto 1fr;
  gap: 3px 16px; font-size: .78rem;
}
.ex-meta dt { color: #aaa; font-weight: 500; }
.ex-meta dd { color: #555; }

/* ============================
   Footer — Tate style (white bg)
   ============================ */
.footer {
  border-top: 1px solid #ddd;
  padding: 64px 48px 80px;
  background: #fff;
}

.footer-inner {
  display: flex;
  gap: 80px;
  margin-bottom: 48px;
}

.footer-left { flex-shrink: 0; width: 320px; }

.footer-logo {
  font-family: "EB Garamond", "Shippori Mincho", serif;
  font-weight: 400;
  font-size: 2.4rem;
  line-height: 1.15;
  margin-bottom: 16px;
}

.footer-logo-sub {
  font-family: "EB Garamond", "Shippori Mincho", serif;
  font-size: .95rem;
  font-style: italic;
  color: #888;
  line-height: 1.7;
}

.footer-right { flex: 1; }

.footer-nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px 32px;
  margin-bottom: 32px;
}
.footer-nav a {
  font-size: 1rem;
  font-weight: 700;
  color: #1a1a1a;
  text-decoration: none;
  transition: opacity .2s;
}
.footer-nav a:hover { opacity: .5; }

.footer-social {
  display: flex; gap: 24px;
}
.footer-social a {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.1rem;
  font-weight: 900;
  color: #1a1a1a;
  text-decoration: none;
  display: inline-block;
}

.footer-bottom {
  display: flex;
  align-items: flex-end;
  gap: 80px;
}

.footer-bottom-left {
  flex-shrink: 0;
  width: 320px;
}

.footer-copy {
  font-size: .7rem; color: #aaa; letter-spacing: .04em;
}

/* ============================
   Ex More Button
   ============================ */
.ex-more {
  font-family: "EB Garamond", "Shippori Mincho", serif;
  font-size: 1.15rem;
  font-style: italic;
  color: #1a1a1a;
  background: none;
  border: none;
  cursor: pointer;
  margin-top: 16px;
  padding: 0;
  display: inline-block;
}

/* ============================
   Modal
   ============================ */
.modal {
  position: fixed;
  inset: 0;
  z-index: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
}

.modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .6);
}

.modal-content {
  position: relative;
  background: #fff;
  max-width: 800px;
  width: 95%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 0;
  transform: translateY(20px);
  transition: transform .3s ease;
}

.modal.is-open .modal-content {
  transform: translateY(0);
}

.modal-close {
  position: sticky;
  top: 16px;
  float: right;
  margin-right: 16px;
  margin-top: 16px;
  background: rgba(30, 30, 30, .7);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 50%;
  font-size: 1.4rem;
  cursor: pointer;
  color: #fff;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: background .2s, transform .2s;
}
.modal-close:hover { background: rgba(50, 50, 50, .9); transform: scale(1.1); }

/* Hero image — full width top */
.modal-hero {
  width: 100%;
  overflow: hidden;
  position: relative;
}
.modal-hero img {
  width: 100%;
  height: auto;
  display: block;
}

/* Modal inner padding */
.modal-inner {
  padding: 40px 48px 48px;
}

.modal-year {
  font-family: "EB Garamond", "Shippori Mincho", serif;
  font-size: .75rem;
  letter-spacing: .18em;
  color: #aaa;
  display: block;
  margin-bottom: 8px;
}

.modal-title {
  font-size: 1.6rem;
  font-weight: 900;
  margin-bottom: 24px;
}

.modal-catch {
  font-weight: 900;
  font-size: 1.2rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

.modal-catch .highlight {
  background: #1a1a1a;
  color: #fff;
  padding: 2px 8px;
}

.modal-body p {
  font-size: .88rem;
  color: #444;
  line-height: 2.1;
  margin-bottom: 14px;
}

.modal-flavor {
  font-family: "EB Garamond", "Shippori Mincho", serif;
  font-style: italic;
  font-size: .95rem;
  color: #666;
  line-height: 2.2;
  margin-top: 20px;
}

.modal-body .ex-meta {
  margin-top: 28px;
  margin-bottom: 28px;
  padding: 20px 24px;
  background: #f8f8f8;
  border-left: 3px solid #1a1a1a;
}

/* Gallery slider */
.modal-gallery {
  margin-top: 32px;
}

.modal-splide .splide__arrows { display: none; }

.modal-gallery .splide__slide img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.modal-video {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
}
.modal-video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@media (max-width: 768px) {
  .pc-only { display: none; }
  .modal-hero { height: 240px; }
  .modal-inner { padding: 28px 20px 36px; }
  .modal-title { font-size: 1.3rem; }
  .modal-catch { font-size: 1rem; }
  .modal-gallery .splide__slide img { height: 180px; }
}

/* ============================
   Fixed Ticket
   ============================ */
.fixed-ticket {
  position: fixed; bottom: 28px; right: 28px;
  font-family: "EB Garamond", "Shippori Mincho", serif;
  font-size: .82rem; font-style: italic;
  color: #fff; background: #1a1a1a;
  text-decoration: none;
  padding: 12px 28px;
  border: 1.5px solid #1a1a1a;
  z-index: 200;
  transition: background .2s, color .2s;
}
.fixed-ticket:hover { background: #fff; color: #1a1a1a; }

/* ============================
   Animations
   ============================ */
.hero-title, .hero-sub, .hero-dates {
  opacity: 0; transform: translateY(16px);
}
/* Title fade-in is gated until the 3D background has appeared
   (JS toggles `.is-3d-loaded` on `.hero` after the iframe loads). */
.hero.is-3d-loaded .hero-title,
.hero.is-3d-loaded .hero-sub,
.hero.is-3d-loaded .hero-dates {
  animation: fadeUp .8s ease forwards;
}
.hero.is-3d-loaded .hero-title  { animation-delay: .8s; }
.hero.is-3d-loaded .hero-sub    { animation-delay: 1.1s; }
.hero.is-3d-loaded .hero-dates  { animation-delay: 1.4s; }

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ============================
   Responsive
   ============================ */
@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .sec { padding: 64px 0; }

  /* Header */
  .header { padding: 0 16px; height: 56px; }
  .header-logo a { font-size: .7rem; white-space: nowrap; }
  .header-hamburger { width: 30px; height: 30px; gap: 5px; }
  .fixed-tickets {
    bottom: 14px;
    right: 14px;
    font-size: .75rem;
    padding: 10px 20px;
  }

  /* Menu */
  .menu-inner {
    flex-direction: column;
    padding: 80px 24px 40px;
    gap: 40px;
  }
  .menu-left { width: auto; }
  .menu-logo { font-size: 2rem; }

  /* Hero */
  .hero {
    height: 100dvh;
    min-height: 100vh; /* fallback for older browsers */
    flex-direction: column;
    padding-top: 0;
  }
  .hero-3d-bg {
    position: relative;
    inset: auto;
    width: 100%;
    height: auto;
    flex: 1 1 auto;
    order: -1;
  }
  .hero-inner {
    position: relative;
    padding: 16px 20px 20px;
    flex: 0 0 auto;
  }
  .hero-title { font-size: clamp(2rem, 10vw, 3rem); margin-bottom: 6px; color: #1a1a1a; text-shadow: none; }
  .hero-sub { font-size: 1rem; margin-bottom: 12px; color: #888; text-shadow: none; }
  .hero-dates { font-size: .9rem; color: #555; text-shadow: none; }
  .hero-dates strong { font-size: 1.4rem; }

  /* About */
  .about-bold { font-size: 1.2rem; }

  /* Highlights */
  .highlights { grid-template-columns: 1fr 1fr; }
  .hl-item { border-bottom: 1px solid #ddd; }
  .hl-item:nth-child(odd) { border-right: 1px solid #ddd; }
  .hl-item:nth-child(even) { border-right: none; padding-left: 20px; }

  /* Goods */
  .goods-slider.is-expanded .splide__list { padding: 0 20px; gap: 16px; }
  .goods-slider.is-expanded .splide__slide { width: calc(50% - 8px) !important; }
  .goods-card { width: 160px; }
  .goods-img { width: 160px; height: 160px; }

  /* Details */
  .info-layout { grid-template-columns: 1fr; gap: 32px; }
  .info-map--pc { display: none; }
  .info-map--sp { display: block; }

  /* Past */
  .ex { grid-template-columns: 1fr; gap: 20px; }
  .ex-visual img { height: 200px; }

  /* Fixed ticket — hide on mobile, using header-tickets instead */
  .fixed-ticket { display: none; }

  /* Footer */
  .footer { padding: 40px 20px 100px; }
  .footer-inner { flex-direction: column; gap: 32px; }
  .footer-left { width: auto; }
  .footer-logo { font-size: 1.8rem; }
  .footer-nav { grid-template-columns: 1fr 1fr; gap: 6px 20px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 16px; }
  .footer-bottom-left { width: auto; }

}
