@charset "UTF-8";
/* ── Reset & Base ─────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

/* ── Sets Cap on wide Screens ─────────────────────────────── */
.title-card,
.wrap-match-day,
.main-frame,
.wrap-marta,
.other-ways-wrap,
.neighborhoods-wrap,
.nav-wrap,
.accommodation,
.hero,
.under-hero,
.nightlife-grid,
.nightlife-footer {
  margin-left: auto;
  margin-right: auto;
}

/* ── Card shadows ─────────────────────────────── */
.match-day .card {
  box-shadow: none;
}

/* ── Custom Fonts ─────────────────────────────── */
@font-face {
  font-family: "Proelium";
  src: url("../fonts/GTProelium.otf") format("truetype");
}
/* ── Mixins ─────────────────────────────── */
/* ── Design Tokens ─────────────────────────────── */
:root {
  --font-display: 'Phosphate', sans-serif;
  --font-body: "roboto-condensed", sans-serif;
  --border-top: 3px solid #00BCD4;
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

h1, h2, h3 {
  font-family: var(--font-display);
}

/* ── Header ─────────────────────────────── */
header {
  width: 100%;
  background: #ff1644;
  position: relative;
  padding: 10px max(5%, (80% - 1200px) / 2);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header .container-logo .logo-text {
  font-family: "roboto-condensed", sans-serif;
  font-weight: 800;
  color: white;
  display: inline-flex;
  flex-direction: column;
  line-height: 0.95;
  text-align: center;
  font-size: 1.5rem;
}
header .container-logo .logo-text .cursive {
  font-family: "Lobster", sans-serif;
  font-weight: 400;
  font-size: 2.5rem;
  letter-spacing: 1px;
  color: #ECFF43;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-left: 25px;
}
.header-nav a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-family: "roboto-condensed", sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.header-nav a:hover, .header-nav a.active {
  color: #ECFF43;
  border-bottom: solid 3px #ECFF43;
  font-weight: 800;
}

/* ── Hamburger button ─────────────────────────────── */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  flex-shrink: 0;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── Hamburger dropdown ─────────────────────────────── */
.nav-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: #ff1644;
  z-index: 8999;
  flex-direction: column;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  border-top: 2px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}
.nav-dropdown.open {
  max-height: 500px;
}
.nav-dropdown a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-family: "roboto-condensed", sans-serif;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 15px 24px;
  border-left: 4px solid transparent;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.nav-dropdown a:hover, .nav-dropdown a.active {
  color: #ECFF43;
  border-left-color: #ECFF43;
  background: rgba(255, 255, 255, 0.08);
}

/* ── Side Nav (desktop/tablet, right edge) ─────────────────────────────── */
.side-nav {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9000;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 16px 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.side-nav.visible {
  opacity: 1;
  pointer-events: all;
}
.side-nav .side-nav-item {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  text-decoration: none;
  padding: 6px 12px 6px 20px;
  gap: 10px;
  cursor: pointer;
}
.side-nav .side-nav-item .side-nav-label {
  font-family: "roboto-condensed", sans-serif;
  font-weight: 600;
  font-size: 0.7rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #888;
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 0.2s, transform 0.2s, color 0.2s;
  white-space: nowrap;
}
.side-nav .side-nav-item .side-nav-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ccc;
  flex-shrink: 0;
  transition: background 0.2s, transform 0.2s;
}
.side-nav .side-nav-item:hover .side-nav-label {
  opacity: 1;
  transform: translateX(0);
  color: #FF1644;
}
.side-nav .side-nav-item:hover .side-nav-dot {
  background: #FF1644;
  transform: scale(1.4);
}
.side-nav .side-nav-item.active .side-nav-label {
  opacity: 1;
  transform: translateX(0);
  color: #FF1644;
}
.side-nav .side-nav-item.active .side-nav-dot {
  background: #FF1644;
  transform: scale(1.3);
}

/* ── Mobile Bottom Nav ─────────────────────────────── */
.mobile-nav {
  display: none;
}

/* ── Hamburger breakpoint (tablet → small desktop) ─────────────────────────────── */
@media (max-width: 860px) {
  .header-nav {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .nav-dropdown {
    display: flex;
  }
  .side-nav {
    display: none !important;
  }
}
@media (max-width: 640px) {
  .hamburger {
    display: none;
  }
  .nav-dropdown {
    display: none !important;
  }
  header {
    justify-content: center;
  }
  header .container-logo .logo-text {
    text-align: center;
  }
  .header-nav {
    display: none;
  }
  .side-nav {
    display: none !important;
  }
  body {
    padding-bottom: calc(68px + env(safe-area-inset-bottom, 0px));
  }
  .mobile-nav {
    display: flex;
    align-items: center;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #111;
    border-top: 3px solid #00BCD4;
    z-index: 9999;
    padding: 6px 8px calc(6px + env(safe-area-inset-bottom, 0px));
    gap: 4px;
  }
  .mobile-nav .mobile-nav-item {
    flex: 1;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 0;
    padding: 7px 4px;
    text-decoration: none;
    border-radius: 14px;
    transition: flex 0.3s ease, background 0.3s ease;
  }
  .mobile-nav .mobile-nav-item .icon {
    font-size: 1.35rem;
    line-height: 1;
    flex-shrink: 0;
    filter: grayscale(100%) brightness(0.55);
    transition: filter 0.25s ease;
  }
  .mobile-nav .mobile-nav-item .label {
    font-family: "roboto-condensed", sans-serif;
    font-weight: 700;
    font-size: 0.68rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #00BCD4;
    white-space: nowrap;
    max-width: 0;
    overflow: hidden;
    opacity: 0;
    margin-left: 0;
    transition: max-width 0.3s ease, opacity 0.25s ease, margin-left 0.3s ease;
  }
  .mobile-nav .mobile-nav-item.active {
    flex: 2.5;
    background: #222;
  }
  .mobile-nav .mobile-nav-item.active .icon {
    filter: grayscale(0%) brightness(1);
  }
  .mobile-nav .mobile-nav-item.active .label {
    max-width: 100px;
    opacity: 1;
    margin-left: 6px;
  }
}
/* ── Carousel ─────────────────────────────── */
.carousel {
  background: black;
  overflow: hidden;
  padding: 10px 0;
  border-bottom: 2px solid #C7F2DF;
  width: 100%;
}
.carousel .carousel-track {
  display: inline-flex;
  white-space: nowrap;
}
.carousel .carousel-track span {
  color: #C7F2DF;
  font-family: "roboto-condensed", sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 0 3rem;
  flex-shrink: 0;
}
.carousel .carousel-track span::before {
  content: "★";
  margin-right: 1rem;
  color: #C7F2DF;
}

/* ── MAIN ─────────────────────────────── */
main {
  /* ── Hero ── */
}
main .hero {
  display: grid;
  grid-template-columns: 1fr;
  min-height: 500px;
}
main .hero .frame-one {
  display: flex;
  align-items: center;
  padding: 5%;
  margin: auto;
}
main .hero .frame-one .wrap {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
main .hero .frame-one .wrap .container {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
main .hero .frame-one .wrap .container .line {
  display: block;
  width: 4vw;
  height: 4px;
  background: #FF1644;
  flex-shrink: 0;
}
main .hero .frame-one .wrap .container h5 {
  font-size: 1.3vw;
  text-transform: uppercase;
  font-family: var(--font-body);
  font-weight: 300;
  letter-spacing: 5px;
}
main .hero .frame-one .wrap h1 {
  display: flex;
  font-family: var(--font-body);
  font-weight: 900;
  flex-direction: column;
  line-height: 0.85;
  font-size: 12vw;
  letter-spacing: -5px;
}
main .hero .frame-one .wrap h1 :nth-child(1) {
  color: #C7F2DF;
}
main .hero .frame-one .wrap h1 :nth-child(2) {
  color: #FF1644;
}
main .hero .frame-one .wrap h1 :nth-child(3) {
  color: #7B7979;
  font-size: 5.5vw;
  font-weight: 300;
  letter-spacing: 6px;
  line-height: 1;
}
main .hero .frame-two {
  overflow: hidden;
}
main .hero .frame-two figure {
  display: block;
  box-shadow: 7px 8px 13px 1px rgba(0, 0, 0, 0.5);
}
main .hero .frame-two figure img {
  width: 100%;
  max-width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center top;
     object-position: center top;
  display: block;
}
main {
  /* ── Under Hero ── */
}
main .under-hero {
  display: grid;
  grid-template-columns: 1fr;
  padding-bottom: 8%;
}
main .under-hero .frame-one {
  padding: 5% 20%;
}
main .under-hero .frame-one h3 {
  font-family: var(--font-body);
  font-style: italic;
  font-weight: 300;
  font-size: 1.5rem;
  line-height: 1.6;
  color: dimgray;
}
main .under-hero .frame-two {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2% 10% 6%;
}
main .under-hero .frame-two figure img {
  max-width: 90%;
  display: block;
  margin: auto;
}
main {
  /* ── Match Day ── */
}
main .match-day {
  padding: 10% 20%;
  border-top: var(--border-top);
  position: relative;
  background: #ffffff;
}
main .match-day::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #e5e5f7;
  background: linear-gradient(135deg, rgba(68, 76, 247, 0.3333333333) 25%, transparent 25%) -17px 0/34px 34px, linear-gradient(225deg, #444cf7 25%, transparent 25%) -17px 0/34px 34px, linear-gradient(315deg, rgba(68, 76, 247, 0.3333333333) 25%, transparent 25%) 0px 0/34px 34px, linear-gradient(45deg, #444cf7 25%, #e5e5f7 25%) 0px 0/34px 34px;
  opacity: 0.1;
  pointer-events: none;
  z-index: 0;
}
main .match-day > * {
  position: relative;
  z-index: 1;
}
main .match-day .title-card .container {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-bottom: 2%;
}
main .match-day .title-card .container .line {
  display: block;
  width: 4vw;
  height: 4px;
  background: #304FFE;
  flex-shrink: 0;
}
main .match-day .title-card .container h5 {
  font-size: 1.2rem;
  text-transform: uppercase;
  font-family: var(--font-body);
  font-weight: 300;
  letter-spacing: 5px;
  color: #FF1644;
}
main .match-day .title-card h2 {
  display: flex;
  font-family: var(--font-body);
  font-weight: 900;
  flex-direction: column;
  line-height: 0.85;
  font-size: 7vw;
  letter-spacing: -5px;
  padding-bottom: 10%;
}
main .match-day .title-card h2 :nth-child(1) {
  color: #304FFE;
}
main .match-day .title-card h2 :nth-child(2) {
  color: #FF1644;
}
main .match-day .title-card h3 {
  font-family: var(--font-body);
  font-style: italic;
  font-weight: 300;
  line-height: 1.5;
  color: dimgray;
  font-size: 1.5rem;
  border-left: #304FFE solid 8px;
  padding-left: 20px;
}
main .match-day .wrap-match-day {
  padding: 10% 0;
}
main .match-day .wrap-match-day .card {
  padding: 0 0 5%;
  display: grid;
  grid-template-columns: 0.5fr 2fr;
}
main .match-day .wrap-match-day .card .frame-left h3 {
  font-family: var(--font-display);
  font-size: 5rem;
  text-align: end;
  color: #FF1644;
  padding-right: 40px;
}
main .match-day .wrap-match-day .card .frame-right h4 {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 2rem;
  text-transform: uppercase;
}
main .match-day .wrap-match-day .card .frame-right p {
  font-family: "roboto", sans-serif;
  font-weight: 100;
  font-style: normal;
  font-size: 1.2rem;
  line-height: 1.4;
  width: 80%;
  color: dimgray;
  padding-top: 1%;
}
main {
  /* ── Matches ── */
}
main .matches {
  padding: 10% 20%;
  background: #111111;
  border-top: var(--border-top);
}
main .matches .title-card .container {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-bottom: 2%;
}
main .matches .title-card .container .line {
  display: block;
  width: 4vw;
  height: 4px;
  background: #00BCD4;
  flex-shrink: 0;
}
main .matches .title-card .container h5 {
  font-size: 1.2rem;
  text-transform: uppercase;
  font-family: var(--font-body);
  font-weight: 300;
  letter-spacing: 5px;
  color: white;
}
main .matches .title-card h2 {
  display: flex;
  font-family: var(--font-body);
  font-weight: 900;
  flex-direction: column;
  line-height: 0.85;
  font-size: 7vw;
  letter-spacing: -5px;
  padding-bottom: 10%;
}
main .matches .title-card h2 :nth-child(1) {
  color: white;
}
main .matches .title-card h2 :nth-child(2) {
  color: #00BCD4;
}
main .matches .title-card h3 {
  font-family: var(--font-body);
  font-style: italic;
  font-weight: 300;
  line-height: 1.5;
  color: white;
  font-size: 1.5rem;
  border-left: #00BCD4 solid 8px;
  padding-left: 20px;
}
main .main-frame {
  padding: 15% 0;
}
main .main-frame .stage-wrap {
  display: grid;
  grid-template-columns: 0.35fr 1fr 0.4fr;
  align-items: center;
  padding-bottom: 1%;
  width: 80%;
  margin: 0 auto;
}
main .main-frame .stage-wrap .frame-left .stage h5 {
  font-family: var(--font-body);
  font-weight: 500;
  font-style: normal;
  font-size: 0.9rem;
  color: white;
  text-transform: none;
  text-align: left;
  background-color: #304FFE;
  padding: 5px 10px;
  text-align: center;
  display: inline-flex;
}
main .main-frame .stage-wrap .frame-central .line {
  display: block;
  width: 100%;
  height: 1px;
  background: white;
}
main .main-frame .stage-wrap .frame-right .match-dates h6 {
  font-family: var(--font-body);
  font-weight: 400;
  font-style: normal;
  font-size: 0.9rem;
  color: white;
  text-transform: none;
  text-align: right;
}
main .main-frame .stage-wrap.stage-32, main .main-frame .stage-wrap.stage-16, main .main-frame .stage-wrap.stage-semi {
  grid-template-columns: 1fr auto 1fr;
}
main .main-frame .stage-wrap.stage-32 .frame-left .stage .line, main .main-frame .stage-wrap.stage-32 .frame-right .stage .line, main .main-frame .stage-wrap.stage-16 .frame-left .stage .line, main .main-frame .stage-wrap.stage-16 .frame-right .stage .line, main .main-frame .stage-wrap.stage-semi .frame-left .stage .line, main .main-frame .stage-wrap.stage-semi .frame-right .stage .line {
  display: block;
  width: 80%;
  height: 1px;
  background: white;
  margin: 0 10%;
}
main .main-frame .stage-wrap.stage-32 .frame-central h5, main .main-frame .stage-wrap.stage-16 .frame-central h5, main .main-frame .stage-wrap.stage-semi .frame-central h5 {
  font-family: var(--font-body);
  font-weight: 500;
  font-style: normal;
  font-size: 0.9rem;
  color: white;
  text-transform: none;
  text-align: left;
  background-color: #1F8800;
  padding: 5px 20px;
  text-align: center;
  display: inline-flex;
  white-space: nowrap;
}
main .main-frame .stage-wrap.stage-32 .frame-central h5.round-16, main .main-frame .stage-wrap.stage-16 .frame-central h5.round-16, main .main-frame .stage-wrap.stage-semi .frame-central h5.round-16 {
  background: #00BCD4;
  color: black;
}
main .main-frame .stage-wrap.stage-32 .frame-central h5.round-semi, main .main-frame .stage-wrap.stage-16 .frame-central h5.round-semi, main .main-frame .stage-wrap.stage-semi .frame-central h5.round-semi {
  background: #DE1B13;
}
main .main-frame .card {
  padding: 20px 20px 10px;
  background: #1B1F29;
  border: #00BCD4 2px solid;
  border-left: #00BCD4 7px solid;
  margin-bottom: 25px;
}
main .main-frame .card.card-32 {
  border-color: #00BCD4;
  border-left-color: #00BCD4;
}
main .main-frame .card.card-16 {
  border-color: #F2FC00;
  border-left-color: #F2FC00;
}
main .main-frame .card.card-semi {
  border-color: #F85050;
  border-left-color: #F85050;
  background: radial-gradient(circle, rgb(66, 27, 27) 3%, rgb(0, 0, 0) 100%);
}
main .main-frame .card .row-1, main .main-frame .card .row-2, main .main-frame .card .row-3 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1%;
}
main .main-frame .card .row-1 {
  padding-bottom: 1%;
}
main .main-frame .card .row-1 .frame-left h6 {
  font-family: var(--font-body);
  font-weight: 400;
  font-style: normal;
  font-size: 0.9rem;
  color: dimgray;
  text-transform: uppercase;
  text-align: left;
}
main .main-frame .card .row-1 .frame-right h6 {
  font-family: var(--font-body);
  font-weight: 400;
  font-style: normal;
  font-size: 0.9rem;
  color: white;
  text-transform: uppercase;
  text-align: right;
}
main .main-frame .card .row-1 .frame-right h6 span {
  color: #00BCD4;
  padding-left: 10px;
}
main .main-frame .card .row-2 .frame-left figure, main .main-frame .card .row-2 .frame-right figure {
  width: 50px;
}
main .main-frame .card .row-2 .frame-left figure img, main .main-frame .card .row-2 .frame-right figure img {
  max-width: 100%;
}
main .main-frame .card .row-3 .away, main .main-frame .card .row-3 .home {
  width: 45%;
}
main .main-frame .card .row-3 .away h3, main .main-frame .card .row-3 .home h3 {
  font-family: var(--font-body);
  font-weight: 800;
  font-style: normal;
  font-size: 1.8rem;
  color: white;
  text-transform: uppercase;
  text-align: left;
}
main .main-frame .card .row-3 .away h4, main .main-frame .card .row-3 .home h4 {
  font-family: var(--font-body);
  font-weight: 500;
  font-style: normal;
  font-size: 1rem;
  color: dimgray;
  text-transform: none;
  text-align: left;
}
main .main-frame .card .row-3 .home h3 {
  text-align: right;
}
main .main-frame .card .row-3 .home h4 {
  text-align: right;
}
main .main-frame .card .row-3 .vs h4 {
  font-family: var(--font-body);
  font-weight: 500;
  font-style: normal;
  font-size: 2rem;
  color: dimgray;
  text-transform: none;
  text-align: center;
  width: 10%;
}
main .main-frame .card .row-4 h4 {
  font-family: var(--font-body);
  font-weight: 500;
  font-style: normal;
  font-size: 1rem;
  color: #00BCD4;
  text-transform: uppercase;
  text-align: center;
}
main .main-frame .total-card {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  background: #1B1F29;
  border: solid 1px white;
  padding: 3%;
  margin-top: 50px;
}
main .main-frame .total-card .frame-even {
  text-align: center;
}
main .main-frame .total-card .frame-even h3 {
  font-family: var(--font-body);
  font-weight: 800;
  font-style: normal;
  font-size: 3.5rem;
  color: #00BCD4;
  text-transform: none;
  text-align: left;
  text-align: center;
}
main .main-frame .total-card .frame-even h4 {
  font-family: var(--font-body);
  font-weight: 600;
  font-style: normal;
  font-size: 1rem;
  color: dimgray;
  text-transform: uppercase;
  text-align: left;
}
main {
  /* ── Fan Fest ── */
}
main .fan-fest {
  padding: 10% 20%;
  background: #ffffff;
  border-top: var(--border-top);
  position: relative;
  overflow: hidden;
}
main .fan-fest::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #e5e5f7;
  background: radial-gradient(circle, transparent 20%, #e5e5f7 20%, #e5e5f7 80%, transparent 80%, transparent), radial-gradient(circle, transparent 20%, #e5e5f7 20%, #e5e5f7 80%, transparent 80%, transparent) 22.5px 22.5px, linear-gradient(#444cf7 1.8px, transparent 1.8px) 0 -0.9px, linear-gradient(90deg, #444cf7 1.8px, #e5e5f7 1.8px) -0.9px 0;
  background-size: 45px 45px, 45px 45px, 22.5px 22.5px, 22.5px 22.5px;
  opacity: 0.1;
  pointer-events: none;
  z-index: 0;
}
main .fan-fest > * {
  position: relative;
  z-index: 1;
}
main .fan-fest .title-card .container {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-bottom: 2%;
}
main .fan-fest .title-card .container .line {
  display: block;
  width: 4vw;
  height: 4px;
  background: #FF1644;
  flex-shrink: 0;
}
main .fan-fest .title-card .container h5 {
  font-size: 1.2rem;
  text-transform: uppercase;
  font-family: var(--font-body);
  font-weight: 300;
  letter-spacing: 5px;
  color: #304FFE;
}
main .fan-fest .title-card h2 {
  display: flex;
  font-family: var(--font-body);
  font-weight: 900;
  flex-direction: column;
  line-height: 0.85;
  font-size: 7vw;
  letter-spacing: -5px;
  padding-bottom: 10%;
}
main .fan-fest .title-card h2 :nth-child(1) {
  color: #FF1644;
}
main .fan-fest .title-card h2 :nth-child(2) {
  color: #304FFE;
}
main .fan-fest .title-card h3 {
  font-family: var(--font-body);
  font-style: italic;
  font-weight: 300;
  line-height: 1.5;
  color: dimgrey;
  font-size: 1.5rem;
  border-left: 8px solid #FF1644;
  padding-left: 20px;
}
main .fan-fest {
  /* Official — hero card */
}
main .fan-fest .official-wrap {
  margin-top: 12%;
}
main .fan-fest .official-wrap .badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #304FFE;
  color: #ffffff;
  font-family: var(--font-body);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.75rem;
  padding: 8px 18px;
  margin-bottom: 20px;
}
main .fan-fest .official-wrap .badge::before {
  content: "★";
  color: #00BCD4;
  font-size: 1rem;
}
main .fan-fest .official-card {
  background: #1E1E1E;
  border: 1px solid #2E2E2E;
  border-top: 6px solid #FF1644;
  border-left: 6px solid #FF1644;
  color: white;
  padding: 4%;
  position: relative;
}
main .fan-fest .official-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.1);
}
main .fan-fest .official-card .head {
  display: flex;
  flex-direction: column;
  padding-bottom: 3%;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.15);
}
main .fan-fest .official-card .head .info {
  margin-bottom: 24px;
}
main .fan-fest .official-card .head .info .tag-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
main .fan-fest .official-card .head .info .tag-row .pill {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 12px;
  border: 1px solid #00BCD4;
  color: #00BCD4;
}
main .fan-fest .official-card .head .info h2 {
  font-family: var(--font-body);
  font-weight: 900;
  font-size: 3.8rem;
  line-height: 0.95;
  letter-spacing: -2px;
  color: white;
  text-transform: uppercase;
}
main .fan-fest .official-card .head .info h4 {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1.2rem;
  color: #304FFE;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-top: 6px;
}
main .fan-fest .official-card .head .image-placeholder {
  position: relative;
  width: 100%;
}
main .fan-fest .official-card .head .image-placeholder figure {
  width: 100%;
  line-height: 0;
}
main .fan-fest .official-card .head .image-placeholder figure img {
  width: 100%;
  height: auto;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
main .fan-fest .official-card .head .image-placeholder span {
  position: absolute;
  bottom: 12px;
  left: 12px;
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: white;
  background: rgba(0, 0, 0, 0.6);
  padding: 4px 10px;
}
main .fan-fest .official-card .head .meta-row {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
main .fan-fest .official-card .head .meta-row .dates {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.85);
  text-transform: uppercase;
}
main .fan-fest .official-card .head .meta-row .marta-line {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
main .fan-fest .official-card .head .meta-row .marta-line .line-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 3px 10px;
  font-size: 0.7rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 700;
  color: white;
}
main .fan-fest .official-card .head .meta-row .marta-line .line-pill.blue {
  background: #104AE8;
}
main .fan-fest .official-card .head .meta-row .marta-line .line-pill.green {
  background: #1F8800;
}
main .fan-fest .official-card .body {
  padding: 3% 0;
}
main .fan-fest .official-card .body p {
  font-family: "roboto", sans-serif;
  font-weight: 300;
  font-size: 1.2rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  max-width: 900px;
}
main .fan-fest .official-card .body .zones {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 30px;
}
main .fan-fest .official-card .body .zones .zone {
  background: rgba(255, 255, 255, 0.04);
  border-top: 3px solid var(--zone-color);
  padding: 18px;
}
main .fan-fest .official-card .body .zones .zone .zone-icon {
  font-size: 1.6rem;
  margin-bottom: 10px;
}
main .fan-fest .official-card .body .zones .zone h5 {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 0.9rem;
  color: var(--zone-color);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 6px;
}
main .fan-fest .official-card .body .zones .zone p {
  font-family: "roboto", sans-serif;
  font-weight: 300;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.4;
}
main .fan-fest .official-card .foot {
  margin-top: 30px;
  padding-top: 25px;
  border-top: 1px dashed rgba(255, 255, 255, 0.15);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
main .fan-fest .official-card .foot .address {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
main .fan-fest .official-card .foot .address:hover {
  color: #00BCD4;
}
main .fan-fest .official-card .foot .cta {
  background: #304FFE;
  color: #ffffff;
  font-family: var(--font-body);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.85rem;
  padding: 14px 28px;
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.15s;
}
main .fan-fest .official-card .foot .cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 0 #00BCD4;
}
main .fan-fest {
  /* Unofficial — grid of 3 */
}
main .fan-fest .unofficial-wrap {
  margin-top: 15%;
}
main .fan-fest .unofficial-wrap .sub-kicker {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-bottom: 3%;
}
main .fan-fest .unofficial-wrap .sub-kicker .line {
  display: block;
  width: 4vw;
  height: 4px;
  background: #FF1644;
  flex-shrink: 0;
}
main .fan-fest .unofficial-wrap .sub-kicker h5 {
  font-size: 1rem;
  text-transform: uppercase;
  font-family: var(--font-body);
  font-weight: 300;
  letter-spacing: 4px;
  color: dimgray;
}
main .fan-fest .unofficial-wrap h3.lead {
  font-family: var(--font-body);
  font-weight: 900;
  font-size: 3rem;
  line-height: 0.95;
  letter-spacing: -1px;
  color: #304FFE;
  text-transform: uppercase;
  margin-bottom: 4%;
}
main .fan-fest .unofficial-wrap h3.lead span {
  color: #FF1644;
}
main .fan-fest .unofficial-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
}
main .fan-fest .fest-card {
  background: white;
  border-top: 8px solid var(--card-color);
  border-left: 6px solid var(--card-color);
  border-bottom: 4px solid var(--card-color);
  display: flex;
  flex-direction: row;
  transition: transform 0.2s, box-shadow 0.2s;
  border-right: #C3C3C3 solid 1px;
}
main .fan-fest .fest-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.1);
}
main .fan-fest .fest-card .fest-hero {
  width: 260px;
  min-width: 260px;
  height: auto;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}
main .fan-fest .fest-card .fest-hero figure {
  width: 100%;
  height: 100%;
}
main .fan-fest .fest-card .fest-hero figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  display: block;
}
main .fan-fest .fest-card .fest-body {
  padding: 25px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
main .fan-fest .fest-card .fest-body .tag-row {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
main .fan-fest .fest-card .fest-body .tag-row .pill {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 3px 8px;
  background: var(--card-color);
  color: white;
}
main .fan-fest .fest-card .fest-body h2 {
  font-family: var(--font-body);
  font-weight: 900;
  font-size: 2.2rem;
  line-height: 0.95;
  letter-spacing: -0.5px;
  color: #111;
  text-transform: uppercase;
  margin-bottom: 4px;
}
main .fan-fest .fest-card .fest-body h4 {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.85rem;
  color: var(--card-color);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 18px;
}
main .fan-fest .fest-card .fest-body .marta-line {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: dimgrey;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px dashed #ddd;
}
main .fan-fest .fest-card .fest-body .marta-line .line-pill {
  display: inline-flex;
  padding: 2px 8px;
  font-size: 0.8rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 700;
  color: white;
}
main .fan-fest .fest-card .fest-body .marta-line .line-pill.blue {
  background: #104AE8;
}
main .fan-fest .fest-card .fest-body .marta-line .line-pill.green {
  background: #1F8800;
}
main .fan-fest .fest-card .fest-body .marta-line .line-pill.red {
  background: #DE1B13;
}
main .fan-fest .fest-card .fest-body .marta-line .line-pill.gold {
  background: #FFB100;
  color: #111;
}
main .fan-fest .fest-card .fest-body p.desc {
  font-family: "roboto", sans-serif;
  font-weight: 300;
  font-size: 1.1rem;
  line-height: 1.5;
  color: dimgrey;
  margin-bottom: 16px;
}
main .fan-fest .fest-card .fest-body .highlights {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 18px;
}
main .fan-fest .fest-card .fest-body .highlights p {
  font-family: "roboto", sans-serif;
  font-size: 1rem;
  line-height: 1.4;
  color: #333;
}
main .fan-fest .fest-card .fest-body .highlights p b {
  color: var(--card-color);
}
main .fan-fest .fest-card .fest-body .foot {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px dashed #ddd;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}
main .fan-fest .fest-card .fest-body .foot .address {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: dimgrey;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
main .fan-fest .fest-card .fest-body .foot .address:hover {
  color: var(--card-color);
}
main .fan-fest .fest-card .fest-body .foot .cta {
  font-family: var(--font-body);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.7rem;
  padding: 8px 14px;
  background: var(--card-color);
  color: white;
  text-decoration: none;
  white-space: nowrap;
}
main .fan-fest .fest-card .fest-body .foot .cta:hover {
  background: #111;
}
main .fan-fest {
  /* Totals */
}
main .fan-fest .fan-fest-total {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  background: #1E1E1E;
  border: solid 1px #2E2E2E;
  border-top: 4px solid #00BCD4;
  padding: 3%;
  margin-top: 8%;
}
main .fan-fest .fan-fest-total .frame-even {
  text-align: center;
  flex: 1;
}
main .fan-fest .fan-fest-total .frame-even h3 {
  font-family: var(--font-body);
  font-weight: 900;
  font-size: 3.5rem;
  color: #00BCD4;
  text-align: center;
}
main .fan-fest .fan-fest-total .frame-even h4 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 6px;
}
main .fan-fest {
  /* Know before you go */
}
main .fan-fest .fan-fest-footer {
  margin-top: 6%;
  padding: 2% 3% 4%;
  border: 1px solid rgba(48, 79, 254, 0.2);
  background: #304FFE;
}
main .fan-fest .fan-fest-footer .rule {
  width: 40px;
  height: 3px;
  background: black;
  margin-bottom: 20px;
}
main .fan-fest .fan-fest-footer h4 {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 1.5rem;
  color: white;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
}
main .fan-fest .fan-fest-footer p {
  font-family: "roboto", sans-serif;
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.6;
  color: white;
  max-width: 900px;
}
main {
  /* ── MARTA ── */
}
main .marta {
  padding: 10% 20%;
  background: #ffffff;
  border-top: var(--border-top);
  position: relative;
}
main .marta::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #e5e5f7;
  opacity: 0.1;
  background-image: linear-gradient(-45deg, #e5e5f7, #e5e5f7 50%, #69f0ae 50%, #69f0ae);
  background-size: 15px 15px;
  pointer-events: none;
  z-index: 0;
}
main .marta > * {
  position: relative;
  z-index: 1;
}
main .marta .title-card .container {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-bottom: 2%;
}
main .marta .title-card .container .line {
  display: block;
  width: 4vw;
  height: 4px;
  background: #69f0ae;
  flex-shrink: 0;
}
main .marta .title-card .container h5 {
  font-size: 1.2rem;
  text-transform: uppercase;
  font-family: var(--font-body);
  font-weight: 300;
  letter-spacing: 5px;
  color: #124015;
}
main .marta .title-card h2 {
  display: flex;
  font-family: var(--font-body);
  font-weight: 900;
  flex-direction: column;
  line-height: 0.85;
  font-size: 7vw;
  letter-spacing: -5px;
  padding-bottom: 10%;
}
main .marta .title-card h2 :nth-child(1) {
  color: #69f0ae;
}
main .marta .title-card h2 :nth-child(2) {
  color: #124015;
}
main .marta .title-card h3 {
  font-family: var(--font-body);
  font-style: italic;
  font-weight: 300;
  line-height: 1.5;
  color: black;
  font-size: 1.5rem;
  border-left: 8px solid #69f0ae;
  padding-left: 20px;
}
main .marta .wrap-marta {
  margin: 15% 0;
  background: white;
  border-bottom: #C3C3C3 solid 3px;
  border-left: #C3C3C3 solid 3px;
  border-right: #C3C3C3 solid 3px;
}
main .marta .wrap-marta .lines-wrap {
  display: flex;
}
main .marta .wrap-marta .lines-wrap .color-lines {
  width: 25%;
  height: 5px;
  background: #DE1B13;
}
main .marta .wrap-marta .lines-wrap :nth-child(2) {
  background: #FFB100;
}
main .marta .wrap-marta .lines-wrap :nth-child(3) {
  background: #104AE8;
}
main .marta .wrap-marta .lines-wrap :nth-child(4) {
  background: #1F8800;
}
main .marta .wrap-marta .main-frame {
  padding: 5%;
}
main .marta .wrap-marta .main-frame .row-1 {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
main .marta .wrap-marta .main-frame .frame-title h2 {
  font-family: var(--font-body);
  font-weight: 600;
  font-style: normal;
  font-size: 4rem;
  color: black;
  text-transform: uppercase;
  text-align: left;
  letter-spacing: 10px;
}
main .marta .wrap-marta .main-frame .frame-title h2 span {
  color: #FF1644;
}
main .marta .wrap-marta .main-frame .frame-price h4 {
  font-family: var(--font-body);
  font-weight: 400;
  font-style: normal;
  font-size: 2rem;
  color: white;
  text-transform: uppercase;
  text-align: left;
  background: #5FC341;
  border: #707070 solid 1px;
  padding: 5px 15px;
}
main .marta .wrap-marta h5 {
  font-family: var(--font-body);
  font-weight: 400;
  font-style: normal;
  font-size: 1rem;
  color: dimgrey;
  text-transform: uppercase;
  text-align: left;
  letter-spacing: 5px;
}
main .marta .wrap-marta h5.second {
  font-family: var(--font-body);
  font-weight: 600;
  font-style: normal;
  font-size: 1.3rem;
  color: dimgrey;
  text-transform: uppercase;
  text-align: left;
  letter-spacing: 2px;
  margin: 5% 0 0;
  border-bottom: 2px solid dimgray;
  padding-bottom: 5px;
}
main .marta .wrap-marta .train-line {
  font-family: var(--font-body);
  font-weight: 800;
  font-style: normal;
  font-size: 1rem;
  color: dimgrey;
  text-transform: uppercase;
  text-align: left;
  display: inline-flex;
  align-items: center;
  padding: 5px 15px;
  letter-spacing: 1px;
}
main .marta .wrap-marta .train-line .dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: currentColor;
  flex-shrink: 0;
  margin-right: 10px;
}
main .marta .wrap-marta .train-line.red, main .marta .wrap-marta .train-line:nth-child(1) {
  background: #FDECEB;
  color: #FF0000;
  border: #FF0000 solid 3px;
}
main .marta .wrap-marta .train-line.yellow, main .marta .wrap-marta .train-line:nth-child(2) {
  background: #FFF5DE;
  color: #FFB100;
  border: #FFB100 solid 3px;
}
main .marta .wrap-marta .train-line.blue, main .marta .wrap-marta .train-line:nth-child(3) {
  background: #EAECFF;
  color: #104AE8;
  border: #104AE8 solid 3px;
}
main .marta .wrap-marta .train-line.green, main .marta .wrap-marta .train-line:nth-child(4) {
  background: #E3FDDB;
  color: #1F8800;
  border: #1F8800 solid 3px;
}
main .marta .wrap-marta .row-2 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 90%;
  margin: 5% auto 0;
}
main .marta .wrap-marta .frame-stops .stops {
  display: flex;
  justify-content: space-between;
  border-bottom: #707070 dashed 2px;
  padding: 5% 0 3%;
}
main .marta .wrap-marta .frame-stops .stops .frame-left h3 {
  font-family: var(--font-body);
  font-weight: 600;
  font-style: normal;
  font-size: 2.5rem;
  color: dimgray;
  text-transform: uppercase;
  text-align: left;
  letter-spacing: 2px;
}
main .marta .wrap-marta .frame-stops .stops .frame-left h6 {
  font-family: var(--font-body);
  font-weight: 600;
  font-style: normal;
  font-size: 1rem;
  color: #00BCD4;
  text-transform: capitalize;
  text-align: left;
  letter-spacing: 2px;
}
main .marta .wrap-marta .frame-stops .stops .frame-left .walk {
  font-family: var(--font-body);
  font-weight: 400;
  font-style: normal;
  font-size: 1rem;
  color: #304FFE;
  text-transform: capitalize;
  text-align: left;
}
main .marta .wrap-marta .frame-stops .stops .frame-left .station {
  text-decoration: none;
  color: #00BCD4;
  transition: color 0.2s;
}
main .marta .wrap-marta .frame-stops .stops .frame-left .station:hover {
  color: #4A90D9;
}
main .marta .wrap-marta .frame-stops .stops .frame-right {
  display: grid;
}
main .marta .wrap-marta .frame-stops .stops .frame-right .train-line {
  margin: 10px 0 0;
}
main .marta .wrap-marta .row-3 {
  display: flex;
  background: #D0FCC2;
  border: solid 3px #1F8800;
  border-left: solid 8px #1F8800;
  padding: 2% 5% 2% 0;
  margin: 10% 5% 5%;
}
main .marta .wrap-marta .row-3 .frame-left {
  width: 20%;
  text-align: center;
}
main .marta .wrap-marta .row-3 .frame-left .breeze-emoji {
  font-size: 3rem;
}
main .marta .wrap-marta .row-3 .frame-right {
  width: 80%;
}
main .marta .wrap-marta .row-3 .frame-right h3 {
  font-family: var(--font-body);
  font-weight: 600;
  font-style: normal;
  font-size: 2rem;
  color: #1F8800;
  text-transform: uppercase;
  text-align: left;
}
main .marta .wrap-marta .row-3 .frame-right p {
  font-family: "roboto", sans-serif;
  font-weight: 100;
  font-style: normal;
  font-size: 1.3rem;
  line-height: 1.4;
  width: 100%;
  color: #1F8800;
  padding: 2% 0 5%;
}
main .marta .wrap-marta .row-3 .frame-right button {
  padding: 10px 25px;
  background: #5FC341;
  display: block;
  border: solid #838383 2px;
  cursor: pointer;
}
main .marta .wrap-marta .row-3 .frame-right button a {
  color: white;
  font-size: 1rem;
  text-decoration: none;
}
main .marta .wrap-marta .row-3 .frame-right button {
  margin-left: auto;
}
main .marta .wrap-marta .row-4 {
  margin: 5% 5% 0;
}
main .marta .wrap-marta .row-4 figure img {
  max-width: 100%;
}
main .marta .wrap-marta .row-4 p {
  font-family: "roboto", sans-serif;
  font-weight: 100;
  font-style: normal;
  font-size: 1.2rem;
  line-height: 1.4;
  width: 80%;
  color: dimgray;
  padding: 3% 0 5%;
  margin: 0 auto;
}
main .marta .wrap-marta .row-4 .apps {
  display: flex;
  justify-content: space-between;
  width: 50%;
  margin: 0 auto;
}
main .marta .wrap-marta .row-4 .apps button {
  padding: 10px 25px;
  background: #304FFE;
  display: block;
  border: solid #C3C3C3 2px;
  cursor: pointer;
}
main .marta .wrap-marta .row-4 .apps button a {
  color: white;
  font-size: 1rem;
  text-decoration: none;
}
main .marta .other-ways-wrap h2 {
  font-family: var(--font-body);
  font-weight: 800;
  font-style: normal;
  font-size: 3rem;
  color: #69f0ae;
  text-transform: uppercase;
  text-align: left;
  text-align: center;
}
main .marta .other-ways-wrap .beltline-feature, main .marta .other-ways-wrap .scooter-feature, main .marta .other-ways-wrap .bike-feature, main .marta .other-ways-wrap .marta-bus-feature {
  width: 80%;
  margin: 50px auto 0;
  padding: 4% 5%;
  border: 3px solid;
  border-left-width: 8px;
}
main .marta .other-ways-wrap .beltline-header [class$=-icon], main .marta .other-ways-wrap .scooter-header [class$=-icon], main .marta .other-ways-wrap .mbus-header [class$=-icon], main .marta .other-ways-wrap .bike-left [class$=-icon] {
  font-size: 2.8rem;
  flex-shrink: 0;
  line-height: 1;
  margin-top: 4px;
}
main .marta .other-ways-wrap .beltline-header h3, main .marta .other-ways-wrap .scooter-header h3, main .marta .other-ways-wrap .mbus-header h3, main .marta .other-ways-wrap .bike-left h3 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 2rem;
  text-transform: uppercase;
  margin-bottom: 25px;
}
main .marta .other-ways-wrap .beltline-header p, main .marta .other-ways-wrap .scooter-header p, main .marta .other-ways-wrap .mbus-header p, main .marta .other-ways-wrap .bike-left p {
  font-family: "roboto", sans-serif;
  font-weight: 100;
  font-style: normal;
  font-size: 1.2rem;
  line-height: 1.4;
  width: 100%;
  color: #444;
  line-height: 1.6;
}
main .marta .other-ways-wrap .beltline-header, main .marta .other-ways-wrap .scooter-header, main .marta .other-ways-wrap .mbus-header {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  margin-bottom: 30px;
}
main .marta .other-ways-wrap .beltline-feature {
  background: #F4FBF0;
  border-color: #4CAF50;
}
main .marta .other-ways-wrap .beltline-feature .beltline-header h3 {
  color: #2E7D32;
}
main .marta .other-ways-wrap .beltline-feature .beltline-trails {
  display: flex;
  gap: 0;
  align-items: stretch;
  margin-bottom: 28px;
}
main .marta .other-ways-wrap .beltline-feature .beltline-trails .beltline-trail {
  flex: 1;
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: white;
  border: 1px solid #C8E6C9;
}
main .marta .other-ways-wrap .beltline-feature .beltline-trails .beltline-trail .trail-top {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
main .marta .other-ways-wrap .beltline-feature .beltline-trails .beltline-trail .trail-top h4 {
  font-family: var(--font-body);
  font-weight: 800;
  font-style: normal;
  font-size: 1.5rem;
  color: #1B5E20;
  text-transform: uppercase;
  text-align: left;
  letter-spacing: 0.5px;
}
main .marta .other-ways-wrap .beltline-feature .beltline-trails .beltline-trail .trail-top .trail-tag {
  font-family: var(--font-body);
  font-weight: 600;
  font-style: normal;
  font-size: 0.7rem;
  color: #2E7D32;
  text-transform: uppercase;
  text-align: left;
  background: #E8F5E9;
  border: 1px solid #A5D6A7;
  padding: 3px 8px;
  letter-spacing: 1.5px;
}
main .marta .other-ways-wrap .beltline-feature .beltline-trails .beltline-trail p {
  font-family: "roboto", sans-serif;
  font-weight: 100;
  font-style: normal;
  font-size: 1.1rem;
  line-height: 1.4;
  width: 100%;
  color: #444;
  line-height: 1.6;
}
main .marta .other-ways-wrap .beltline-feature .beltline-trails .beltline-trail .trail-highlights {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-top: auto;
}
main .marta .other-ways-wrap .beltline-feature .beltline-trails .beltline-trail .trail-highlights span {
  font-family: var(--font-body);
  font-weight: 400;
  font-style: normal;
  font-size: 0.95rem;
  color: #555;
  text-transform: none;
  text-align: left;
}
main .marta .other-ways-wrap .beltline-feature .beltline-trails .beltline-divider {
  width: 4px;
  background: #4CAF50;
  flex-shrink: 0;
}
main .marta .other-ways-wrap .beltline-feature .beltline-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  padding-top: 20px;
  border-top: 1px solid #C8E6C9;
}
main .marta .other-ways-wrap .beltline-feature .beltline-foot .beltline-stats {
  display: flex;
  gap: 30px;
}
main .marta .other-ways-wrap .beltline-feature .beltline-foot .beltline-stats .bl-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
}
main .marta .other-ways-wrap .beltline-feature .beltline-foot .beltline-stats .bl-stat .bl-num {
  font-family: var(--font-body);
  font-weight: 900;
  font-style: normal;
  font-size: 2rem;
  color: #2E7D32;
  text-transform: none;
  text-align: left;
  line-height: 1;
}
main .marta .other-ways-wrap .beltline-feature .beltline-foot .beltline-stats .bl-stat .bl-label {
  font-family: var(--font-body);
  font-weight: 400;
  font-style: normal;
  font-size: 0.75rem;
  color: #666;
  text-transform: uppercase;
  text-align: left;
  letter-spacing: 1px;
  margin-top: 3px;
}
main .marta .other-ways-wrap .beltline-feature .beltline-foot .beltline-links {
  display: flex;
  gap: 12px;
  align-items: center;
}
main .marta .other-ways-wrap .beltline-feature .beltline-foot .beltline-links .bl-cta {
  font-family: var(--font-body);
  font-weight: 800;
  font-style: normal;
  font-size: 0.78rem;
  color: white;
  text-transform: uppercase;
  text-align: left;
  background: #2E7D32;
  padding: 10px 20px;
  text-decoration: none;
  letter-spacing: 2px;
  transition: background 0.2s;
}
main .marta .other-ways-wrap .beltline-feature .beltline-foot .beltline-links .bl-cta:hover {
  background: #1B5E20;
}
main .marta .other-ways-wrap .beltline-feature .beltline-foot .beltline-links .bl-site {
  font-family: var(--font-body);
  font-weight: 400;
  font-style: normal;
  font-size: 0.85rem;
  color: #2E7D32;
  text-transform: none;
  text-align: left;
  text-decoration: none;
  border-bottom: 1px solid #A5D6A7;
}
main .marta .other-ways-wrap .beltline-feature .beltline-foot .beltline-links .bl-site:hover {
  color: #1B5E20;
}
main .marta .other-ways-wrap .scooter-feature {
  background: #FAF0D8;
  border-color: #FFB100;
}
main .marta .other-ways-wrap .scooter-feature .scooter-header h3 {
  color: #FFB100;
}
main .marta .other-ways-wrap .scooter-feature .scooter-brands {
  display: flex;
  gap: 0;
  align-items: stretch;
}
main .marta .other-ways-wrap .scooter-feature .scooter-brands .scooter-brand {
  flex: 1;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
main .marta .other-ways-wrap .scooter-feature .scooter-brands .scooter-brand .brand-top {
  display: flex;
  align-items: center;
  gap: 10px;
}
main .marta .other-ways-wrap .scooter-feature .scooter-brands .scooter-brand .brand-top .brand-emoji {
  font-size: 1.4rem;
}
main .marta .other-ways-wrap .scooter-feature .scooter-brands .scooter-brand .brand-top h4 {
  font-family: var(--font-body);
  font-weight: 800;
  font-style: normal;
  font-size: 1.6rem;
  color: #00C853;
  text-transform: uppercase;
  text-align: left;
  letter-spacing: 1px;
}
main .marta .other-ways-wrap .scooter-feature .scooter-brands .scooter-brand p {
  font-family: "roboto", sans-serif;
  font-weight: 100;
  font-style: normal;
  font-size: 1.1rem;
  line-height: 1.4;
  width: 100%;
  color: #555;
  line-height: 1.6;
}
main .marta .other-ways-wrap .scooter-feature .scooter-brands .scooter-brand .brand-tips {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-top: auto;
}
main .marta .other-ways-wrap .scooter-feature .scooter-brands .scooter-brand .brand-tips span {
  font-family: var(--font-body);
  font-weight: 400;
  font-style: normal;
  font-size: 0.95rem;
  color: #777;
  text-transform: none;
  text-align: left;
}
main .marta .other-ways-wrap .scooter-feature .scooter-brands .scooter-brand .brand-cta {
  font-family: var(--font-body);
  font-weight: 800;
  font-style: normal;
  font-size: 0.78rem;
  color: white;
  text-transform: uppercase;
  text-align: left;
  display: inline-block;
  padding: 9px 18px;
  text-decoration: none;
  letter-spacing: 2px;
  margin-top: 8px;
  align-self: flex-start;
  transition: opacity 0.2s;
}
main .marta .other-ways-wrap .scooter-feature .scooter-brands .scooter-brand .brand-cta:hover {
  opacity: 0.8;
}
main .marta .other-ways-wrap .scooter-feature .scooter-brands .scooter-brand .brand-cta.lime {
  background: #00C853;
}
main .marta .other-ways-wrap .scooter-feature .scooter-brands .scooter-brand .brand-cta.bird {
  background: #26ccf0;
  border: 1px solid white;
  color: white;
}
main .marta .other-ways-wrap .scooter-feature .scooter-brands .scooter-brand:last-child .brand-top h4 {
  color: #26ccf0;
}
main .marta .other-ways-wrap .scooter-feature .scooter-brands .scooter-divider {
  width: 1px;
  background: rgba(0, 0, 0, 0.1);
  flex-shrink: 0;
  margin: 10px 0;
}
main .marta .other-ways-wrap .scooter-feature .scooter-tip {
  font-family: var(--font-body);
  font-weight: 400;
  font-style: normal;
  font-size: 1rem;
  color: #888;
  text-transform: none;
  text-align: left;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  line-height: 1.5;
  width: 90%;
  text-align: center;
  margin: auto;
  padding-top: 16px;
  margin-top: 20px;
}
main .marta .other-ways-wrap .bike-feature {
  background: #FDECEB;
  border-color: #DE1B13;
  display: flex;
  gap: 5%;
  align-items: flex-start;
  flex-wrap: wrap;
}
main .marta .other-ways-wrap .bike-feature .bike-left {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  flex: 1;
  min-width: 260px;
}
main .marta .other-ways-wrap .bike-feature .bike-left h3 {
  color: #DE1B13;
}
main .marta .other-ways-wrap .bike-feature .bike-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: space-between;
  min-width: 220px;
}
main .marta .other-ways-wrap .bike-feature .bike-right .bike-includes {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
main .marta .other-ways-wrap .bike-feature .bike-right .bike-includes span {
  font-family: var(--font-body);
  font-weight: 400;
  font-style: normal;
  font-size: 1rem;
  color: #555;
  text-transform: none;
  text-align: left;
  display: flex;
  align-items: center;
  gap: 6px;
}
main .marta .other-ways-wrap .bike-feature .bike-right .bike-meta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
}
main .marta .other-ways-wrap .bike-feature .bike-right .bike-meta .bike-price {
  font-family: var(--font-body);
  font-weight: 800;
  font-style: normal;
  font-size: 2rem;
  color: #DE1B13;
  text-transform: none;
  text-align: left;
}
main .marta .other-ways-wrap .bike-feature .bike-right .bike-meta .bike-price small {
  font-size: 1rem;
  font-weight: 400;
  color: #777;
}
main .marta .other-ways-wrap .bike-feature .bike-right .bike-meta .bike-cta {
  font-family: var(--font-body);
  font-weight: 800;
  font-style: normal;
  font-size: 0.8rem;
  color: white;
  text-transform: uppercase;
  text-align: left;
  background: #DE1B13;
  padding: 10px 20px;
  text-decoration: none;
  letter-spacing: 2px;
  transition: background 0.2s;
}
main .marta .other-ways-wrap .bike-feature .bike-right .bike-meta .bike-cta:hover {
  background: #b01510;
}
main .marta .other-ways-wrap .marta-bus-feature {
  background: #E8EDFF;
  border-color: #304FFE;
}
main .marta .other-ways-wrap .marta-bus-feature .mbus-header h3 {
  color: #304FFE;
}
main .marta .other-ways-wrap .marta-bus-feature .mbus-body {
  display: flex;
  gap: 5%;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
main .marta .other-ways-wrap .marta-bus-feature .mbus-body .mbus-col {
  flex: 1;
  min-width: 240px;
}
main .marta .other-ways-wrap .marta-bus-feature .mbus-body .mbus-col h4 {
  font-family: var(--font-body);
  font-weight: 700;
  font-style: normal;
  font-size: 0.8rem;
  color: #888;
  text-transform: uppercase;
  text-align: left;
  letter-spacing: 3px;
  margin-bottom: 14px;
}
main .marta .other-ways-wrap .marta-bus-feature .mbus-body .mbus-routes {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
main .marta .other-ways-wrap .marta-bus-feature .mbus-body .mbus-routes .mbus-route {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
main .marta .other-ways-wrap .marta-bus-feature .mbus-body .mbus-routes .mbus-route .route-num {
  font-family: var(--font-body);
  font-weight: 900;
  font-style: normal;
  font-size: 0.85rem;
  color: white;
  text-transform: none;
  text-align: center;
  background: #304FFE;
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
main .marta .other-ways-wrap .marta-bus-feature .mbus-body .mbus-routes .mbus-route .route-name {
  font-family: var(--font-body);
  font-weight: 700;
  font-style: normal;
  font-size: 0.95rem;
  color: #111;
  text-transform: none;
  text-align: left;
  display: block;
}
main .marta .other-ways-wrap .marta-bus-feature .mbus-body .mbus-routes .mbus-route .route-note {
  font-family: var(--font-body);
  font-weight: 400;
  font-style: normal;
  font-size: 0.95rem;
  color: dimgrey;
  text-transform: none;
  text-align: left;
  display: block;
  margin-top: 2px;
}
main .marta .other-ways-wrap .marta-bus-feature .mbus-body .mbus-info {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 0;
}
main .marta .other-ways-wrap .marta-bus-feature .mbus-body .mbus-info .mbus-info-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 10px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
main .marta .other-ways-wrap .marta-bus-feature .mbus-body .mbus-info .mbus-info-row .info-label {
  font-family: var(--font-body);
  font-weight: 600;
  font-style: normal;
  font-size: 0.8rem;
  color: #888;
  text-transform: uppercase;
  text-align: left;
  letter-spacing: 1px;
}
main .marta .other-ways-wrap .marta-bus-feature .mbus-body .mbus-info .mbus-info-row .info-val {
  font-family: var(--font-body);
  font-weight: 400;
  font-style: normal;
  font-size: 0.95rem;
  color: #111;
  text-transform: none;
  text-align: left;
  text-align: right;
}
main .marta .other-ways-wrap .marta-bus-feature .mbus-body .mbus-apps {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
main .marta .other-ways-wrap .marta-bus-feature .mbus-body .mbus-apps span {
  font-family: var(--font-body);
  font-weight: 400;
  font-style: normal;
  font-size: 1rem;
  color: #555;
  text-transform: none;
  text-align: left;
}
main .marta .other-ways-wrap .marta-bus-feature .mbus-foot {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
  padding-top: 20px;
  border-top: 1px solid rgba(35, 56, 130, 0.15);
}
main .marta .other-ways-wrap .marta-bus-feature .mbus-foot .mbus-cta {
  font-family: var(--font-body);
  font-weight: 800;
  font-style: normal;
  font-size: 0.9rem;
  color: white;
  text-transform: uppercase;
  text-align: left;
  background: #304FFE;
  padding: 10px 20px;
  text-decoration: none;
  letter-spacing: 2px;
  transition: background 0.2s;
}
main .marta .other-ways-wrap .marta-bus-feature .mbus-foot .mbus-cta:hover {
  background: #1a2a61;
}
main .marta .other-ways-wrap .marta-bus-feature .mbus-foot .mbus-cta.secondary {
  background: #555;
}
main .marta .other-ways-wrap .marta-bus-feature .mbus-foot .mbus-cta.secondary:hover {
  background: #333;
}
main .marta .other-ways-wrap .marta-bus-feature .mbus-foot .mbus-link {
  font-family: var(--font-body);
  font-weight: 400;
  font-style: normal;
  font-size: 0.9rem;
  color: #304FFE;
  text-transform: none;
  text-align: left;
  text-decoration: none;
  border-bottom: 1px solid rgba(35, 56, 130, 0.3);
}
main .marta .other-ways-wrap .marta-bus-feature .mbus-foot .mbus-link:hover {
  color: #1a2a61;
}
main {
  /* ── Neighborhoods ── */
}
main .neighborhoods {
  padding: 10% 20%;
  background: #ffffff;
  border-top: var(--border-top);
  position: relative;
}
main .neighborhoods::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #e5e5f7;
  opacity: 0.1;
  background-size: 16px 16px;
  background-image: repeating-linear-gradient(to right, #444cf7, #444cf7 0.8px, #e5e5f7 0.8px, #e5e5f7);
  opacity: 0.05;
  pointer-events: none;
  z-index: 0;
}
main .neighborhoods > * {
  position: relative;
  z-index: 1;
}
main .neighborhoods .title-card .container {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-bottom: 2%;
}
main .neighborhoods .title-card .container .line {
  display: block;
  width: 4vw;
  height: 4px;
  background: #00BCD4;
  flex-shrink: 0;
}
main .neighborhoods .title-card .container h5 {
  font-size: 1.2rem;
  text-transform: uppercase;
  font-family: var(--font-body);
  font-weight: 300;
  letter-spacing: 5px;
  color: #304FFE;
}
main .neighborhoods .title-card h2 {
  display: flex;
  font-family: var(--font-body);
  font-weight: 900;
  flex-direction: column;
  line-height: 0.85;
  font-size: 7vw;
  letter-spacing: -5px;
  padding-bottom: 10%;
}
main .neighborhoods .title-card h2 :nth-child(1) {
  color: #00BCD4;
}
main .neighborhoods .title-card h2 :nth-child(2) {
  color: #304FFE;
}
main .neighborhoods .title-card h3 {
  font-family: var(--font-body);
  font-style: italic;
  font-weight: 300;
  line-height: 1.5;
  color: black;
  font-size: 1.5rem;
  border-left: #00BCD4 solid 8px;
  padding-left: 20px;
}
main .neighborhoods .title-card {
  position: relative;
  z-index: 2;
}
main .neighborhoods .title-card h3 {
  margin-top: 25%;
}
main .neighborhoods .map {
  position: absolute;
  top: 0;
  left: 0;
  width: 70%;
  margin: 0 15%;
  z-index: 1;
}
main .neighborhoods .map img {
  max-width: 100%;
  opacity: 0.6;
}
main .neighborhoods {
  /* ── Neighborhood nav ── */
}
main .neighborhoods .nav-wrap {
  position: sticky;
  margin: 10% auto 0;
  display: flex;
  align-items: center;
  top: 0;
  z-index: 100;
  background: #ffffff;
  padding: 5px;
  width: 90%;
  overflow: hidden;
  border: #C3C3C3 solid 1px;
}
main .neighborhoods .nav-wrap nav {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  padding: 0 10px;
}
main .neighborhoods .nav-wrap nav ul {
  display: flex;
  overflow-x: auto;
  gap: 10px;
  list-style: none;
  padding: 0;
  scrollbar-width: none;
}
main .neighborhoods .nav-wrap nav ul::-webkit-scrollbar {
  display: none;
}
main .neighborhoods .nav-wrap nav ul li {
  flex-shrink: 0;
}
main .neighborhoods .nav-wrap nav ul li a {
  font-family: var(--font-body);
  font-weight: 400;
  font-style: normal;
  font-size: 1rem;
  color: #575757;
  text-transform: uppercase;
  text-align: left;
  display: inline-flex;
  align-items: center;
  padding: 5px 15px;
  letter-spacing: 1px;
  background: white;
  text-decoration: none;
  white-space: nowrap;
  border: #707070 solid 2px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
main .neighborhoods .nav-wrap .nav-arrow {
  border: none;
  background: transparent;
  cursor: pointer;
  color: gray;
  font-size: 1.3rem;
  width: 35px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s, color 0.2s;
  flex-shrink: 0;
  z-index: 2;
}
main .neighborhoods .nav-wrap .nav-arrow:hover {
  color: #00BCD4;
}
main .neighborhoods .nav-wrap .nav-arrow-left {
  opacity: 0;
}
main .neighborhoods .nav-wrap .nav-arrow-right {
  opacity: 1;
}
main .neighborhoods {
  /* ── Neighborhood slider — horizontal scroll ── */
}
main .neighborhoods .neighborhoods-wrap {
  margin: 5%;
  background: white;
  overflow: hidden;
  border: #C3C3C3 solid 1px;
}
main .neighborhoods .neighborhoods-wrap .neighborhoods-track {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  margin: 20px;
}
main .neighborhoods .neighborhoods-wrap .neighborhoods-track::-webkit-scrollbar {
  display: none;
}
main .neighborhoods .neighborhoods-wrap .neighborhoods-track .card {
  flex: 0 0 100%;
  width: 100%;
  scroll-snap-align: start;
  border: lightgray solid 3px;
  border-top: #304FFE solid 8px;
  border-bottom: #304FFE solid 5px;
  position: relative;
  margin-left: 25px;
}
main .neighborhoods .neighborhoods-wrap .neighborhoods-track .card figure {
  position: relative;
  border-bottom: lightgray solid 3px;
}
main .neighborhoods .neighborhoods-wrap .neighborhoods-track .card figure h2 {
  font-family: var(--font-body);
  font-weight: 800;
  position: absolute;
  color: white;
  text-transform: uppercase;
  font-size: clamp(2.5rem, 6vw, 7rem);
  bottom: 5px;
  left: 20px;
  line-height: 0.8;
  z-index: 2;
  max-width: calc(100% - 40px);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
main .neighborhoods .neighborhoods-wrap .neighborhoods-track .card figure img {
  width: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  max-height: 400px;
}
main .neighborhoods .neighborhoods-wrap .neighborhoods-track .card figure::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to right, rgba(40, 40, 40, 0.75) 0%, rgba(60, 60, 60, 0.3) 25%, rgba(100, 100, 100, 0.1) 100%);
}
main .neighborhoods .neighborhoods-wrap .neighborhoods-track .card .frame {
  padding: 4% 10% 5% 7%;
  background: white;
}
main .neighborhoods .neighborhoods-wrap .neighborhoods-track .card .frame h5 {
  font-family: var(--font-body);
  font-weight: 400;
  font-style: normal;
  font-size: 0.85rem;
  color: var(--card-color);
  text-transform: uppercase;
  text-align: left;
  letter-spacing: 5px;
}
main .neighborhoods .neighborhoods-wrap .neighborhoods-track .card .frame h6 {
  font-family: var(--font-body);
  font-weight: 400;
  font-style: normal;
  font-size: 1.1rem;
  color: grey;
  text-transform: capitalize;
  text-align: left;
  padding: 5px 0 0 0;
}
main .neighborhoods .neighborhoods-wrap .neighborhoods-track .card .frame h6 .red {
  color: #FF1644;
}
main .neighborhoods .neighborhoods-wrap .neighborhoods-track .card .frame h6 .gold {
  color: #FFB100;
}
main .neighborhoods .neighborhoods-wrap .neighborhoods-track .card .frame h6 .blue {
  color: #104AE8;
}
main .neighborhoods .neighborhoods-wrap .neighborhoods-track .card .frame h6 .green {
  color: #1F8800;
}
main .neighborhoods .neighborhoods-wrap .neighborhoods-track .card .frame p {
  font-family: var(--font-body);
  font-weight: 400;
  font-style: normal;
  font-size: 1.3rem;
  color: dimgrey;
  text-transform: capitalize;
  text-align: left;
  padding: 4% 0 4%;
  line-height: 1.6;
  border-bottom: #575757 solid 1px;
  letter-spacing: 1px;
}
main .neighborhoods .neighborhoods-wrap .neighborhoods-track .card .frame .bullet-pts {
  padding: 2% 5% 5%;
}
main .neighborhoods .neighborhoods-wrap .neighborhoods-track .card .frame .bullet-pts p {
  padding: 3% 0 0;
  font-family: var(--font-body);
  font-weight: 400;
  font-style: normal;
  font-size: 1.3rem;
  color: dimgray;
  text-transform: capitalize;
  text-align: left;
  letter-spacing: 1px;
  border: none;
}
main .neighborhoods .neighborhoods-wrap .neighborhoods-track .card .frame .bullet-pts p b {
  color: var(--card-color);
  font-weight: 400;
}
main .neighborhoods .neighborhoods-wrap .neighborhoods-track .card .frame .distance-tag {
  position: absolute;
  bottom: 0;
  right: 0;
}
main .neighborhoods .neighborhoods-wrap .neighborhoods-track .card .frame .distance-tag h6 {
  font-family: var(--font-body);
  font-weight: 600;
  font-style: normal;
  font-size: 0.85rem;
  color: white;
  text-transform: uppercase;
  text-align: left;
  background: #304FFE;
  border: white solid 1px;
  padding: 6px 16px;
  letter-spacing: 2px;
  display: inline-block;
}
main .neighborhoods .accommodation {
  padding: 10% 10%;
  width: 90%;
  background: linear-gradient(307deg, #304FFE 3%, #000000 100%);
}
main .neighborhoods .accommodation .title {
  margin-bottom: 10%;
}
main .neighborhoods .accommodation .title h3 {
  font-family: var(--font-body);
  font-weight: 400;
  font-style: normal;
  font-size: 0.9rem;
  color: lightgray;
  text-transform: uppercase;
  text-align: left;
  letter-spacing: 5px;
  margin-bottom: 1%;
}
main .neighborhoods .accommodation .title h2 {
  display: flex;
  font-family: var(--font-body);
  text-transform: uppercase;
  color: white;
  font-weight: 900;
  font-size: 5vw;
  line-height: 0.85;
}
main .neighborhoods .accommodation .title h2 span {
  color: #00BCD4;
}
main .neighborhoods .accommodation .list {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 0 2%;
  align-items: start;
  padding: 1% 0%;
}
main .neighborhoods .accommodation .list:last-child {
  border-bottom: none;
}
main .neighborhoods .accommodation .list .left .price {
  font-family: var(--font-body);
  font-weight: 800;
  font-style: normal;
  font-size: 2.5rem;
  color: #FF1644;
  text-transform: none;
  text-align: center;
}
main .neighborhoods .accommodation .list .left .red {
  color: #FF1644;
}
main .neighborhoods .accommodation .list .left .blue {
  color: #304FFE;
}
main .neighborhoods .accommodation .list .left .green {
  color: #69F0AE;
}
main .neighborhoods .accommodation .list .right h4 {
  font-family: var(--font-body);
  font-weight: 800;
  font-style: normal;
  font-size: 1.3rem;
  color: white;
  text-transform: uppercase;
  text-align: left;
  letter-spacing: 1px;
}
main .neighborhoods .accommodation .list .right h3 {
  font-family: var(--font-body);
  font-weight: 300;
  font-style: normal;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.5);
  text-transform: none;
  text-align: left;
  line-height: 1.6;
  letter-spacing: 1px;
}
main .neighborhoods .explore-wrap {
  width: 90%;
  margin: 2% auto 0;
  background: black;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 3% 5%;
}
main .neighborhoods .explore-wrap h4 {
  display: inline-block;
  width: 60%;
  font-family: var(--font-body);
  font-weight: 800;
  font-style: normal;
  font-size: 2.2rem;
  color: white;
  text-transform: uppercase;
  text-align: left;
}
main .neighborhoods .explore-wrap h4 a {
  font-family: var(--font-body);
  font-weight: 400;
  font-style: normal;
  font-size: 1rem;
  color: #00BCD4;
  text-transform: uppercase;
  text-align: left;
  letter-spacing: 4px;
  text-decoration: none;
}
main .neighborhoods .explore-wrap .arrow-wrap {
  display: flex;
  align-items: center;
  padding-left: 100px;
  width: 40%;
}
main .neighborhoods .explore-wrap .shaft {
  width: 60px;
  height: 15px;
  background: #00BCD4;
}
main .neighborhoods .explore-wrap .head {
  width: 0;
  height: 0;
  border-top: 20px solid transparent;
  border-bottom: 20px solid transparent;
  border-left: 36px solid #00BCD4;
}
main {
  /* ── Restaurants ── */
}
main .restaurants {
  padding: 10% 20%;
  background: #ffffff;
  border-top: var(--border-top);
  position: relative;
}
main .restaurants::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #e5e5f7;
  background-image: repeating-linear-gradient(45deg, #FF1644 25%, transparent 25%, transparent 75%, #FF1644 75%, #FF1644), repeating-linear-gradient(45deg, #FF1644 25%, #e5e5f7 25%, #e5e5f7 75%, #FF1644 75%, #FF1644);
  background-position: 0 0, 14px 14px;
  background-size: 28px 28px;
  opacity: 0.05;
  pointer-events: none;
  z-index: 0;
}
main .restaurants > * {
  position: relative;
  z-index: 1;
}
main .restaurants .title-card .container {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-bottom: 2%;
}
main .restaurants .title-card .container .line {
  display: block;
  width: 4vw;
  height: 4px;
  background: #FF1644;
  flex-shrink: 0;
}
main .restaurants .title-card .container h5 {
  font-size: 1.2rem;
  text-transform: uppercase;
  font-family: var(--font-body);
  font-weight: 300;
  letter-spacing: 5px;
  color: #304FFE;
}
main .restaurants .title-card h2 {
  display: flex;
  font-family: var(--font-body);
  font-weight: 900;
  flex-direction: column;
  line-height: 0.85;
  font-size: 7vw;
  letter-spacing: -5px;
  padding-bottom: 10%;
}
main .restaurants .title-card h2 :nth-child(1) {
  color: #FF1644;
}
main .restaurants .title-card h2 :nth-child(2) {
  color: #304FFE;
}
main .restaurants .title-card h3 {
  font-family: var(--font-body);
  font-style: italic;
  font-weight: 300;
  line-height: 1.5;
  color: dimgray;
  font-size: 1.5rem;
  border-left: #FF1644 solid 8px;
  padding-left: 20px;
}
main .restaurants .title-card {
  position: relative;
  z-index: 2;
}
main .restaurants .title-card h3 {
  margin-top: 5%;
}
main .restaurants {
  /* ── Restaurant nav ── */
}
main .restaurants .nav-wrap-restaurants {
  position: sticky;
  margin: 10% auto 0;
  width: 90%;
  display: flex;
  align-items: center;
  top: 0;
  z-index: 100;
  background: #ffffff;
  padding: 5px;
  overflow: hidden;
  border: #C3C3C3 solid 1px;
}
main .restaurants .nav-wrap-restaurants nav {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  padding: 0 10px;
}
main .restaurants .nav-wrap-restaurants nav ul {
  display: flex;
  overflow-x: auto;
  gap: 10px;
  list-style: none;
  padding: 0;
  scrollbar-width: none;
}
main .restaurants .nav-wrap-restaurants nav ul::-webkit-scrollbar {
  display: none;
}
main .restaurants .nav-wrap-restaurants nav ul li {
  flex-shrink: 0;
}
main .restaurants .nav-wrap-restaurants nav ul li a {
  font-family: var(--font-body);
  font-weight: 400;
  font-style: normal;
  font-size: 1rem;
  color: #575757;
  text-transform: uppercase;
  text-align: left;
  display: inline-flex;
  align-items: center;
  padding: 5px 15px;
  letter-spacing: 1px;
  background: white;
  text-decoration: none;
  white-space: nowrap;
  border: #707070 solid 2px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
main .restaurants .nav-wrap-restaurants .nav-arrow {
  border: none;
  background: transparent;
  cursor: pointer;
  color: gray;
  font-size: 1.3rem;
  width: 35px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s, color 0.2s;
  flex-shrink: 0;
  z-index: 2;
}
main .restaurants .nav-wrap-restaurants .nav-arrow:hover {
  color: #00BCD4;
}
main .restaurants .nav-wrap-restaurants .nav-arrow-left {
  opacity: 0;
}
main .restaurants .nav-wrap-restaurants .nav-arrow-right {
  opacity: 1;
}
main .restaurants {
  /* ── Restaurant cards ── */
}
main .restaurants .restaurants-main {
  padding: 5% 0;
  background: white;
  width: 90%;
  margin: 0 auto;
  border: #C3C3C3 solid 1px;
}
main .restaurants .restaurants-main .card {
  width: 90%;
  margin: 0 auto 5%;
  border: var(--card-color) solid 3px;
  border-top: var(--card-color) solid 8px;
  border-left: var(--card-color) solid 6px;
  border-bottom: var(--card-color) solid 4px;
  position: relative;
  background: white;
}
main .restaurants .restaurants-main .card::before {
  content: attr(data-rank);
  position: absolute;
  top: 0;
  right: 0;
  background: var(--card-color);
  color: white;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 1.5rem;
  padding: 5px 15px;
  z-index: 2;
}
main .restaurants .restaurants-main .card .frame-body {
  padding: 5% 7%;
}
main .restaurants .restaurants-main .card .frame-body h5 {
  font-family: var(--font-body);
  font-weight: 400;
  font-style: normal;
  font-size: 0.9rem;
  color: #304FFE;
  text-transform: uppercase;
  text-align: left;
  letter-spacing: 4px;
  margin-bottom: 2%;
}
main .restaurants .restaurants-main .card .frame-body h5 span {
  color: white;
  font-size: 1.3rem;
  margin-right: 8px;
  padding: 5px;
}
main .restaurants .restaurants-main .card .frame-body h5 b {
  font-family: var(--font-body);
  font-weight: 800;
  font-style: normal;
  font-size: 1.3rem;
  color: black;
  text-transform: none;
  text-align: left;
  margin-right: 8px;
}
main .restaurants .restaurants-main .card .frame-body h5.rating a {
  color: inherit;
  text-decoration: none;
  display: inline-block;
  transition: transform 0.2s ease;
}
main .restaurants .restaurants-main .card .frame-body h5.rating a:hover {
  transform: scale(1.05);
}
main .restaurants .restaurants-main .card .frame-body .stars {
  color: #FFB100;
  font-size: 1.3rem;
  letter-spacing: 2px;
}
main .restaurants .restaurants-main .card .frame-body h2 {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 4rem);
  color: black;
  text-transform: uppercase;
  line-height: 0.9;
  margin-bottom: 2%;
}
main .restaurants .restaurants-main .card .frame-body a > .card-hero,
main .restaurants .restaurants-main .card .frame-body .card-hero {
  width: 100%;
  overflow: hidden;
  border: 1px solid lightgrey;
  margin-bottom: 4%;
  height: 220px;
}
main .restaurants .restaurants-main .card .frame-body a > .card-hero img,
main .restaurants .restaurants-main .card .frame-body .card-hero img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
  display: block;
  transition: transform 0.4s ease;
}
main .restaurants .restaurants-main .card .frame-body:hover .card-hero img {
  transform: scale(1.04);
}
main .restaurants .restaurants-main .card .frame-body > a:not(:has(.card-hero)) {
  font-family: var(--font-body);
  font-weight: 400;
  font-style: normal;
  font-size: 1rem;
  color: #304FFE;
  text-transform: none;
  text-align: left;
  font-style: italic;
  text-decoration: none;
  display: block;
  margin-bottom: 4%;
}
main .restaurants .restaurants-main .card .frame-body > a:not(:has(.card-hero)):hover {
  text-decoration: underline;
}
main .restaurants .restaurants-main .card .frame-body .container {
  padding: 0 20px;
}
main .restaurants .restaurants-main .card .frame-body .container p {
  font-family: "roboto", sans-serif;
  font-weight: 100;
  font-style: normal;
  font-size: 1.3rem;
  line-height: 1.4;
  width: 100%;
  color: dimgray;
  line-height: 1.7;
  padding: 4% 0;
}
main .restaurants .restaurants-main .card .frame-body .container h6 {
  font-family: var(--font-body);
  font-weight: 400;
  font-style: normal;
  font-size: 1rem;
  color: dimgray;
  text-transform: none;
  text-align: left;
  margin-bottom: 2%;
  transition: transform 0.2s ease;
}
main .restaurants .restaurants-main .card .frame-body .container h6:hover {
  transform: scale(1.03);
}
main .restaurants .restaurants-main .card .frame-body .container h6 a {
  color: dimgray;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
}
main {
  /* ── Nightlife ── */
}
main .nightlife {
  position: relative;
  padding: 10% 10% 60vh;
  background: #0B0B14;
  border-top: var(--border-top);
  overflow: hidden;
}
main .nightlife .title-card .container {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-bottom: 2%;
}
main .nightlife .title-card .container .line {
  display: block;
  width: 4vw;
  height: 4px;
  background: #00BCD4;
  flex-shrink: 0;
}
main .nightlife .title-card .container h5 {
  font-size: 1.2rem;
  text-transform: uppercase;
  font-family: var(--font-body);
  font-weight: 300;
  letter-spacing: 5px;
  color: #00BCD4;
}
main .nightlife .title-card h2 {
  display: flex;
  font-family: var(--font-body);
  font-weight: 900;
  flex-direction: column;
  line-height: 0.85;
  font-size: 7vw;
  letter-spacing: -5px;
  padding-bottom: 10%;
}
main .nightlife .title-card h2 :nth-child(1) {
  color: white;
}
main .nightlife .title-card h2 :nth-child(2) {
  color: #00BCD4;
}
main .nightlife .title-card h3 {
  font-family: var(--font-body);
  font-style: italic;
  font-weight: 300;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.65);
  font-size: 1.5rem;
  border-left: #00BCD4 solid 8px;
  padding-left: 20px;
}
main .nightlife {
  /* Subtle neon background glows */
}
main .nightlife .neon-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(110px);
  opacity: 0.35;
  pointer-events: none;
  z-index: 0;
}
main .nightlife .glow-1 {
  width: 520px;
  height: 520px;
  background: #FF1644;
  top: -10%;
  left: -8%;
}
main .nightlife .glow-2 {
  width: 620px;
  height: 620px;
  background: #304FFE;
  bottom: -15%;
  right: -10%;
  opacity: 0.22;
}
main .nightlife .title-card {
  position: relative;
  z-index: 2;
}
main .nightlife .title-card h3 {
  margin-top: 4%;
}
main .nightlife {
  /* 2×2 grid of category panels */
}
main .nightlife .nightlife-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 8%;
}
main .nightlife .nightlife-grid .panel {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-top: 4px solid var(--cat-color);
  padding: 40px 35px 30px;
  position: relative;
  transition: border-color 0.25s, background 0.25s;
}
main .nightlife .nightlife-grid .panel::after {
  content: "";
  position: absolute;
  top: -4px;
  left: 0;
  width: 60px;
  height: 4px;
  background: var(--cat-color);
  box-shadow: 0 0 18px var(--cat-color);
}
main .nightlife .nightlife-grid .panel:hover {
  background: rgba(255, 255, 255, 0.05);
}
main .nightlife .nightlife-grid .panel .panel-head {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-bottom: 25px;
  margin-bottom: 25px;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.12);
}
main .nightlife .nightlife-grid .panel .panel-head .panel-icon {
  font-size: 2.2rem;
  line-height: 1;
}
main .nightlife .nightlife-grid .panel .panel-head .panel-title {
  flex: 1;
}
main .nightlife .nightlife-grid .panel .panel-head .panel-title h3 {
  font-family: var(--font-body);
  font-weight: 900;
  font-style: normal;
  font-size: 1.3rem;
  color: white;
  text-transform: uppercase;
  text-align: left;
  letter-spacing: 1px;
}
main .nightlife .nightlife-grid .panel .panel-head .panel-title h6 {
  font-family: var(--font-body);
  font-weight: 300;
  font-style: normal;
  font-size: 0.85rem;
  color: var(--cat-color);
  text-transform: uppercase;
  text-align: left;
  letter-spacing: 2px;
  margin-top: 4px;
}
main .nightlife .nightlife-grid .panel .panel-head .panel-count {
  font-family: var(--font-body);
  font-weight: 800;
  font-style: normal;
  font-size: 1rem;
  color: var(--cat-color);
  text-transform: none;
  text-align: center;
  border: 1px solid var(--cat-color);
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
main .nightlife .nightlife-grid .panel .venue-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
main .nightlife .nightlife-grid .panel .venue-list .venue {
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
main .nightlife .nightlife-grid .panel .venue-list .venue:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}
main .nightlife .nightlife-grid .panel .venue-list .venue .venue-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 6px;
  gap: 10px;
}
main .nightlife .nightlife-grid .panel .venue-list .venue .venue-head h4 {
  font-family: var(--font-body);
  font-weight: 800;
  font-style: normal;
  font-size: 2.25rem;
  color: white;
  text-transform: none;
  text-align: left;
  letter-spacing: 0.3px;
}
main .nightlife .nightlife-grid .panel .venue-list .venue .venue-head .price {
  font-family: var(--font-body);
  font-weight: 600;
  font-style: normal;
  font-size: 0.85rem;
  color: var(--cat-color);
  text-transform: none;
  text-align: left;
  letter-spacing: 1px;
}
main .nightlife .nightlife-grid .panel .venue-list .venue .meta {
  font-family: var(--font-body);
  font-weight: 400;
  font-style: normal;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
  text-transform: uppercase;
  text-align: left;
  letter-spacing: 2px;
  margin-bottom: 10px;
}
main .nightlife .nightlife-grid .panel .venue-list .venue .tag {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-style: normal;
  font-size: 0.72rem;
  color: var(--cat-color);
  text-transform: uppercase;
  text-align: left;
  letter-spacing: 2px;
  padding: 4px 10px;
  border: 1px solid var(--cat-color);
  margin-bottom: 12px;
}
main .nightlife .nightlife-grid .panel .venue-list .venue .desc {
  font-family: "roboto", sans-serif;
  font-weight: 100;
  font-style: normal;
  font-size: 1rem;
  line-height: 1.4;
  width: 100%;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin-bottom: 12px;
}
main .nightlife .nightlife-grid .panel .venue-list .venue .venue-foot {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
main .nightlife .nightlife-grid .panel .venue-list .venue .venue-foot a {
  font-family: var(--font-body);
  font-weight: 400;
  font-style: normal;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
  text-transform: none;
  text-align: left;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
}
main .nightlife .nightlife-grid .panel .venue-list .venue .venue-foot a.map span {
  font-size: 0.9rem;
}
main .nightlife .nightlife-grid .panel .venue-list .venue .venue-foot a.site {
  font-style: italic;
  font-size: 1.1rem;
  color: var(--cat-color);
}
main .nightlife .nightlife-grid .panel .venue-list .venue .venue-foot a:hover {
  color: white;
}
main .nightlife .nightlife-footer {
  position: relative;
  z-index: 2;
  margin-top: 8%;
  padding: 4% 3%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(214, 57, 101, 0.06);
}
main .nightlife .nightlife-footer .rule {
  width: 40px;
  height: 3px;
  background: #00BCD4;
  margin-bottom: 20px;
}
main .nightlife .nightlife-footer h4 {
  font-family: var(--font-body);
  font-weight: 800;
  font-style: normal;
  font-size: 1.1rem;
  color: #00BCD4;
  text-transform: uppercase;
  text-align: left;
  letter-spacing: 2px;
  margin-bottom: 12px;
}
main .nightlife .nightlife-footer p {
  font-family: "roboto", sans-serif;
  font-weight: 100;
  font-style: normal;
  font-size: 1rem;
  line-height: 1.4;
  width: 100%;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
}

/* ── Footer ─────────────────────────────── */
.site-footer {
  background: #FF1644;
  border-top: 3px solid #00BCD4;
}
.site-footer .footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 5%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 5% 5% 4%;
}
.site-footer .footer-brand .logo-text {
  font-family: "roboto-condensed", sans-serif;
  font-weight: 800;
  color: white;
  display: inline-flex;
  flex-direction: column;
  line-height: 0.95;
  font-size: 1.3rem;
  margin-bottom: 5%;
}
.site-footer .footer-brand .logo-text .cursive {
  font-family: "Lobster", sans-serif;
  font-weight: 400;
  font-size: 2.2rem;
  letter-spacing: 1px;
  color: #ECFF43;
}
.site-footer .footer-brand p {
  font-family: var(--font-body);
  font-weight: 300;
  font-style: normal;
  font-size: 1rem;
  color: #ffffff;
  text-transform: none;
  text-align: left;
  line-height: 1.6;
  max-width: 320px;
}
.site-footer .footer-nav h6, .site-footer .footer-info h6 {
  font-family: var(--font-body);
  font-weight: 700;
  font-style: normal;
  font-size: 0.8rem;
  color: #ECFF43;
  text-transform: uppercase;
  text-align: left;
  letter-spacing: 4px;
  margin-bottom: 5%;
  padding-bottom: 8px;
  border-bottom: 1px solid #00BCD4;
}
.site-footer .footer-nav ul, .site-footer .footer-info ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.site-footer .footer-nav ul li, .site-footer .footer-info ul li {
  font-family: var(--font-body);
  font-weight: 300;
  font-style: normal;
  font-size: 0.95rem;
  color: white;
  text-transform: none;
  text-align: left;
}
.site-footer .footer-nav ul li a, .site-footer .footer-info ul li a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.2s;
}
.site-footer .footer-nav ul li a:hover, .site-footer .footer-info ul li a:hover {
  color: #00BCD4;
}
.site-footer .footer-bottom {
  border-top: 1px solid #00BCD4;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2.5% 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.site-footer .footer-bottom .disclaimer {
  font-family: var(--font-body);
  font-weight: 300;
  font-style: normal;
  font-size: 0.8rem;
  color: #fff;
  text-transform: none;
  text-align: left;
}
.site-footer .footer-bottom .copyright {
  font-family: var(--font-body);
  font-weight: 300;
  font-style: normal;
  font-size: 0.8rem;
  color: #fff;
  text-transform: none;
  text-align: left;
}

@media (max-width: 1024px) {
  .site-footer .footer-top {
    grid-template-columns: 1fr 1fr;
  }
  .site-footer .footer-top .footer-brand {
    grid-column: 1/-1;
  }
}
@media (max-width: 640px) {
  .site-footer .footer-top {
    grid-template-columns: 1fr;
    gap: 8%;
    padding: 10% 5% 8%;
  }
  .site-footer .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    padding: 5% 5%;
  }
}
/* ── Tablet ─────────────────────────────────── */
@media (max-width: 1024px) {
  main .hero {
    grid-template-columns: 1fr;
  }
  main .hero .frame-one {
    padding: 7% 5% 3%;
  }
  main .hero .frame-one .wrap {
    padding: 0 0 0 3%;
  }
  main .hero .frame-one .wrap .container .line {
    width: 7vw;
  }
  main .hero .frame-one .wrap .container h5 {
    font-size: 1.9vw;
  }
  main .hero .frame-one .wrap h1 {
    font-size: 12vw;
  }
  main .hero .frame-one .wrap h1 :nth-child(3) {
    font-size: 7vw;
    line-height: 0.9;
  }
  main .hero .frame-two {
    overflow: hidden;
  }
  main .hero .frame-two figure img {
    max-height: 50vh;
    -o-object-position: center top;
       object-position: center top;
  }
  main .under-hero {
    grid-template-columns: 1fr;
  }
  main .under-hero .frame-one {
    padding: 8% 8%;
  }
  main .under-hero .frame-one h3 {
    font-size: 1.5rem;
  }
  main .under-hero .frame-two {
    padding: 2% 8% 5%;
  }
  main .under-hero .frame-two figure img {
    max-width: 75%;
  }
  main .match-day {
    padding: 8% 8%;
  }
  main .match-day .title-card .container {
    padding-bottom: 2%;
  }
  main .match-day .title-card .container .line {
    width: 6vw;
  }
  main .match-day .title-card .container h5 {
    font-size: 1.2rem;
  }
  main .match-day .title-card h2 {
    font-size: 9vw;
    padding-bottom: 10%;
  }
  main .match-day .title-card h3 {
    font-family: var(--font-body);
    font-style: italic;
    font-weight: 300;
    line-height: 1.5;
    color: dimgrey;
    font-size: 1.5rem;
    border-left: #304FFE solid 8px;
    padding-left: 20px;
    font-size: 1.3rem;
  }
  main .match-day .wrap-match-day .card {
    padding: 0 0 5%;
  }
  main .match-day .wrap-match-day .card .frame-left h3 {
    font-size: 4.5rem;
    padding-right: 30px;
  }
  main .match-day .wrap-match-day .card .frame-right h4 {
    font-size: 1.8rem;
  }
  main .match-day .wrap-match-day .card .frame-right p {
    font-size: 1.3rem;
    width: 90%;
  }
  main .matches {
    padding: 10% 8%;
  }
  main .matches .title-card .container {
    padding-bottom: 2%;
  }
  main .matches .title-card .container .line {
    width: 6vw;
  }
  main .matches .title-card .container h5 {
    font-size: 1.2rem;
  }
  main .matches .title-card h2 {
    font-size: 9vw;
    padding-bottom: 10%;
  }
  main .matches .title-card h3 {
    font-family: var(--font-body);
    font-style: italic;
    font-weight: 300;
    line-height: 1.5;
    color: dimgrey;
    font-size: 1.5rem;
    border-left: 8px #FF1644 solid;
    padding-left: 20px;
    font-size: 1.3rem;
    color: white;
    border-left: #00BCD4 solid 8px;
  }
  main .fan-fest {
    padding: 12% 8%;
  }
  main .fan-fest .official-card {
    padding: 5%;
  }
  main .fan-fest .official-card .head {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  main .fan-fest .official-card .head .info h2 {
    font-size: 3rem;
  }
  main .fan-fest .official-card .body .zones {
    grid-template-columns: repeat(2, 1fr);
  }
  main .fan-fest .unofficial-grid {
    grid-template-columns: 1fr;
  }
  main .fan-fest .fest-card {
    flex-direction: column;
  }
  main .fan-fest .fest-card .fest-hero {
    width: 100%;
    min-width: unset;
    height: 220px;
  }
  main .marta {
    padding: 10% 8%;
  }
  main .marta .title-card .container {
    padding-bottom: 2%;
  }
  main .marta .title-card .container .line {
    width: 6vw;
  }
  main .marta .title-card .container h5 {
    font-size: 1.2rem;
  }
  main .marta .title-card h2 {
    font-size: 9vw;
    padding-bottom: 10%;
  }
  main .marta .title-card h3 {
    font-family: var(--font-body);
    font-style: italic;
    font-weight: 300;
    line-height: 1.5;
    color: dimgrey;
    font-size: 1.5rem;
    border-left: 8px #FF1644 solid;
    padding-left: 20px;
    font-size: 1.3rem;
    color: black;
    border-left: 8px solid #69f0ae;
  }
  main .marta .wrap-marta .row-2 {
    width: 100%;
  }
  main .marta .wrap-marta .frame-stops .stops .frame-right .train-line {
    margin: 10px 0 0;
  }
  main .marta .other-ways-wrap h2 {
    font-family: var(--font-body);
    font-weight: 800;
    font-style: normal;
    font-size: 2.2rem;
    color: #304FFE;
    text-transform: uppercase;
    text-align: left;
    text-align: center;
  }
  main .marta .other-ways-wrap .other-ways-frame {
    width: 90%;
  }
  main .marta .other-ways-wrap .other-ways-frame .box p {
    font-size: 1.2rem;
  }
  main .marta .other-ways-wrap .beltline-feature, main .marta .other-ways-wrap .scooter-feature, main .marta .other-ways-wrap .bike-feature, main .marta .other-ways-wrap .marta-bus-feature {
    width: 90%;
  }
  main .marta .other-ways-wrap .beltline-feature .beltline-trails {
    flex-direction: column;
  }
  main .marta .other-ways-wrap .beltline-feature .beltline-trails .beltline-divider {
    width: 100%;
    height: 4px;
  }
  main .marta .other-ways-wrap .scooter-feature .scooter-brands {
    flex-direction: column;
  }
  main .marta .other-ways-wrap .scooter-feature .scooter-brands .scooter-divider {
    width: 100%;
    height: 1px;
    margin: 0;
  }
  main .marta .other-ways-wrap .bike-feature {
    flex-direction: column;
    gap: 30px;
  }
  main .marta .other-ways-wrap .marta-bus-feature .mbus-body {
    flex-direction: column;
  }
  main .neighborhoods {
    padding: 10% 8%;
  }
  main .neighborhoods .title-card .container {
    padding-bottom: 2%;
  }
  main .neighborhoods .title-card .container .line {
    width: 6vw;
  }
  main .neighborhoods .title-card .container h5 {
    font-size: 1.2rem;
  }
  main .neighborhoods .title-card h2 {
    font-size: 9vw;
    padding-bottom: 10%;
  }
  main .neighborhoods .title-card h3 {
    font-family: var(--font-body);
    font-style: italic;
    font-weight: 300;
    line-height: 1.5;
    color: dimgrey;
    font-size: 1.5rem;
    border-left: 8px #FF1644 solid;
    padding-left: 20px;
    font-size: 1.3rem;
    color: black;
    border-left: #00BCD4 solid 8px;
  }
  main .neighborhoods .title-card h3 {
    margin-top: 15%;
  }
  main .neighborhoods .nav-wrap {
    width: 100%;
    overflow: hidden;
  }
  main .neighborhoods .nav-wrap nav {
    min-width: 0;
    overflow: hidden;
  }
  main .neighborhoods .neighborhoods-wrap .neighborhoods-track .card figure h2 {
    font-size: clamp(2.2rem, 8vw, 6rem);
  }
  main .neighborhoods .neighborhoods-wrap .neighborhoods-track .card .frame h5 {
    font-size: 0.85rem;
  }
  main .neighborhoods .accommodation {
    padding: 7% 7%;
    width: 95%;
  }
  main .neighborhoods .accommodation .title {
    margin-bottom: 6%;
  }
  main .neighborhoods .accommodation .title h3 {
    font-family: var(--font-body);
    font-weight: 400;
    font-style: normal;
    font-size: 0.8rem;
    color: lightgray;
    text-transform: uppercase;
    text-align: left;
    letter-spacing: 5px;
    margin-bottom: 1%;
  }
  main .neighborhoods .accommodation .title h2 {
    font-size: 3.5rem;
  }
  main .neighborhoods .accommodation .list .left .price {
    font-family: var(--font-body);
    font-weight: 800;
    font-style: normal;
    font-size: 2rem;
    color: #FF1644;
    text-transform: none;
    text-align: center;
  }
  main .neighborhoods .accommodation .list .right h4 {
    font-family: var(--font-body);
    font-weight: 800;
    font-style: normal;
    font-size: 1.2rem;
    color: white;
    text-transform: uppercase;
    text-align: left;
  }
  main .neighborhoods .accommodation .list .right h3 {
    font-family: var(--font-body);
    font-weight: 300;
    font-style: normal;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: none;
    text-align: left;
    line-height: 1.6;
  }
  main .neighborhoods .explore-wrap {
    width: 95%;
  }
  main .neighborhoods .explore-wrap h4 {
    font-family: var(--font-body);
    font-weight: 800;
    font-style: normal;
    font-size: 2.1rem;
    color: white;
    text-transform: uppercase;
    text-align: left;
  }
  main .neighborhoods .explore-wrap h4 a {
    font-family: var(--font-body);
    font-weight: 400;
    font-style: normal;
    font-size: 0.9rem;
    color: #00BCD4;
    text-transform: uppercase;
    text-align: left;
  }
  main .restaurants {
    padding: 10% 8%;
  }
  main .restaurants .title-card .container {
    padding-bottom: 2%;
  }
  main .restaurants .title-card .container .line {
    width: 6vw;
  }
  main .restaurants .title-card .container h5 {
    font-size: 1.2rem;
  }
  main .restaurants .title-card h2 {
    font-size: 9vw;
    padding-bottom: 10%;
  }
  main .restaurants .title-card h3 {
    font-family: var(--font-body);
    font-style: italic;
    font-weight: 300;
    line-height: 1.5;
    color: dimgrey;
    font-size: 1.5rem;
    border-left: 8px #FF1644 solid;
    padding-left: 20px;
    font-size: 1.3rem;
    color: black;
    border-left: #FF1644 solid 8px;
  }
  main .restaurants .nav-wrap-restaurants {
    overflow: hidden;
  }
  main .restaurants .nav-wrap-restaurants nav {
    min-width: 0;
    overflow: hidden;
  }
  main .restaurants .restaurants-main .card {
    width: 90%;
  }
  main .restaurants .restaurants-main .card .frame-body {
    padding: 5% 7%;
  }
  main .restaurants .restaurants-main .card .frame-body h2 {
    font-size: clamp(2rem, 5vw, 4rem);
  }
  main .nightlife {
    padding: 10% 6% 8%;
  }
  main .nightlife .title-card .container {
    padding-bottom: 2%;
  }
  main .nightlife .title-card .container .line {
    width: 6vw;
  }
  main .nightlife .title-card .container h5 {
    font-size: 1.2rem;
  }
  main .nightlife .title-card h2 {
    font-size: 9vw;
    padding-bottom: 10%;
  }
  main .nightlife .title-card h3 {
    font-family: var(--font-body);
    font-style: italic;
    font-weight: 300;
    line-height: 1.5;
    color: dimgrey;
    font-size: 1.5rem;
    border-left: 8px #FF1644 solid;
    padding-left: 20px;
    font-size: 1.3rem;
    color: white;
    border-left: #00BCD4 solid 8px;
  }
  main .nightlife .title-card h2 :nth-child(1) {
    color: white;
  }
  main .nightlife .title-card h2 :nth-child(2) {
    color: #00BCD4;
  }
  main .nightlife .title-card h3 {
    color: rgba(255, 255, 255, 0.65);
  }
  main .nightlife .title-card .container h5 {
    color: #00BCD4;
  }
  main .nightlife .nightlife-grid {
    grid-template-columns: 1fr;
    gap: 25px;
    margin-top: 12%;
  }
  main .nightlife .nightlife-grid .panel {
    padding: 30px 25px 25px;
  }
  main .nightlife .nightlife-grid .panel .panel-head .panel-title h3 {
    font-size: 1.6rem;
  }
  main .nightlife .nightlife-grid .panel .venue-list .venue h4 {
    font-size: 1.15rem;
  }
  main .nightlife .nightlife-grid .panel .venue-list .venue .desc {
    font-size: 0.95rem;
  }
  main .nightlife .nightlife-footer {
    padding: 6% 5%;
  }
}
/* ── Mobile ─────────────────────────────────── */
@media (max-width: 640px) {
  main .hero {
    grid-template-columns: 1fr;
  }
  main .hero .frame-one {
    padding: 10% 3% 5%;
  }
  main .hero .frame-one .wrap .container .line {
    width: 6vw;
  }
  main .hero .frame-one .wrap .container h5 {
    font-size: 2.5vw;
  }
  main .hero .frame-one .wrap h1 {
    font-size: 16vw;
    letter-spacing: -1px;
  }
  main .hero .frame-one .wrap h1 :nth-child(3) {
    font-size: 9vw;
    line-height: 1.1;
  }
  main .hero .frame-two {
    overflow: hidden;
  }
  main .hero .frame-two figure {
    height: 40vh;
    overflow: hidden;
  }
  main .hero .frame-two figure img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center top;
       object-position: center top;
    max-height: unset;
  }
  main .under-hero {
    grid-template-columns: 1fr;
  }
  main .under-hero .frame-one {
    padding: 10% 5%;
  }
  main .under-hero .frame-one h3 {
    font-size: 1.4rem;
  }
  main .under-hero .frame-two {
    padding: 3% 5% 8%;
  }
  main .under-hero .frame-two figure img {
    max-width: 90%;
  }
  main .match-day {
    padding: 20% 5%;
  }
  main .match-day .title-card .container .line {
    width: 6vw;
  }
  main .match-day .title-card .container h5 {
    font-size: 1.1rem;
  }
  main .match-day .title-card h2 {
    font-size: 12vw;
    padding-bottom: 10%;
  }
  main .match-day .title-card h3 {
    font-family: var(--font-body);
    font-style: italic;
    font-weight: 300;
    line-height: 1.5;
    color: dimgrey;
    font-size: 1.5rem;
    border-left: #304FFE solid 8px;
    padding-left: 20px;
    font-size: 1.2rem;
  }
  main .match-day .wrap-match-day .card {
    padding: 0 0 5%;
  }
  main .match-day .wrap-match-day .card .frame-left h3 {
    font-size: 4.5rem;
    padding-right: 30px;
  }
  main .match-day .wrap-match-day .card .frame-right h4 {
    font-size: 1.5rem;
  }
  main .match-day .wrap-match-day .card .frame-right p {
    font-family: "roboto", sans-serif;
    font-weight: 100;
    font-style: normal;
    font-size: 1.1rem;
    line-height: 1.4;
    width: 100%;
    color: dimgray;
    line-height: 1.4;
  }
  main .matches {
    padding: 20% 5%;
  }
  main .matches .title-card .container {
    padding-bottom: 2%;
  }
  main .matches .title-card .container .line {
    width: 6vw;
  }
  main .matches .title-card .container h5 {
    font-size: 1.1rem;
  }
  main .matches .title-card h2 {
    font-size: 12vw;
    padding-bottom: 10%;
  }
  main .matches .title-card h3 {
    font-family: var(--font-body);
    font-style: italic;
    font-weight: 300;
    line-height: 1.5;
    color: dimgrey;
    font-size: 1.5rem;
    border-left: 8px #FF1644 solid;
    padding-left: 20px;
    font-size: 1.2rem;
    color: white;
    border-left: #00BCD4 solid 8px;
  }
  main .matches .main-frame .stage-wrap {
    grid-template-columns: 0.65fr 1fr 0.8fr;
    width: 100%;
  }
  main .matches .main-frame .stage-wrap .frame-left .stage h5 {
    font-family: var(--font-body);
    font-weight: 500;
    font-style: normal;
    font-size: 0.8rem;
    color: white;
    text-transform: none;
    text-align: left;
  }
  main .matches .main-frame .stage-wrap .frame-right .match-dates h6 {
    font-family: var(--font-body);
    font-weight: 400;
    font-style: normal;
    font-size: 0.8rem;
    color: white;
    text-transform: none;
    text-align: right;
  }
  main .matches .main-frame .stage-wrap.stage-32, main .matches .main-frame .stage-wrap.stage-16, main .matches .main-frame .stage-wrap.stage-semi {
    grid-template-columns: 1fr auto 1fr;
  }
  main .matches .main-frame .stage-wrap.stage-32 .frame-central h5, main .matches .main-frame .stage-wrap.stage-16 .frame-central h5, main .matches .main-frame .stage-wrap.stage-semi .frame-central h5 {
    font-family: var(--font-body);
    font-weight: 500;
    font-style: normal;
    font-size: 0.8rem;
    color: white;
    text-transform: none;
    text-align: left;
  }
  main .matches .main-frame .stage-wrap.stage-32 .frame-central h5.round-16, main .matches .main-frame .stage-wrap.stage-16 .frame-central h5.round-16, main .matches .main-frame .stage-wrap.stage-semi .frame-central h5.round-16 {
    background: #00BCD4;
    color: black;
  }
  main .matches .main-frame .stage-wrap.stage-32 .frame-central h5.round-semi, main .matches .main-frame .stage-wrap.stage-16 .frame-central h5.round-semi, main .matches .main-frame .stage-wrap.stage-semi .frame-central h5.round-semi {
    background: #DE1B13;
  }
  main .matches .main-frame .card .row-1 .frame-left h6 {
    font-family: var(--font-body);
    font-weight: 400;
    font-style: normal;
    font-size: 0.9rem;
    color: dimgray;
    text-transform: uppercase;
    text-align: left;
  }
  main .matches .main-frame .card .row-1 .frame-right h6 {
    font-family: var(--font-body);
    font-weight: 400;
    font-style: normal;
    font-size: 0.8rem;
    color: white;
    text-transform: uppercase;
    text-align: right;
  }
  main .matches .main-frame .card .row-1 .frame-right h6 span {
    color: #00BCD4;
  }
  main .matches .main-frame .card .row-2 .frame-left figure, main .matches .main-frame .card .row-2 .frame-right figure {
    width: 40px;
  }
  main .matches .main-frame .card .row-3 .away, main .matches .main-frame .card .row-3 .home {
    width: 45%;
  }
  main .matches .main-frame .card .row-3 .away h3, main .matches .main-frame .card .row-3 .home h3 {
    font-family: var(--font-body);
    font-weight: 800;
    font-style: normal;
    font-size: 1.6rem;
    color: white;
    text-transform: uppercase;
    text-align: left;
  }
  main .matches .main-frame .card .row-3 .away h4, main .matches .main-frame .card .row-3 .home h4 {
    font-family: var(--font-body);
    font-weight: 500;
    font-style: normal;
    font-size: 0.8rem;
    color: dimgray;
    text-transform: none;
    text-align: left;
  }
  main .matches .main-frame .card .row-3 .home h3 {
    text-align: right;
  }
  main .matches .main-frame .card .row-3 .home h4 {
    text-align: right;
  }
  main .matches .main-frame .card .row-3 .vs h4 {
    font-family: var(--font-body);
    font-weight: 500;
    font-style: normal;
    font-size: 1.8rem;
    color: dimgray;
    text-transform: none;
    text-align: center;
    width: 10%;
  }
  main .matches .main-frame .card .row-4 h4 {
    font-family: var(--font-body);
    font-weight: 500;
    font-style: normal;
    font-size: 0.8rem;
    color: #00BCD4;
    text-transform: uppercase;
    text-align: center;
  }
  main .matches .main-frame .total-card {
    padding: 3% 0;
  }
  main .matches .main-frame .total-card .frame-even h3 {
    font-family: var(--font-body);
    font-weight: 800;
    font-style: normal;
    font-size: 2.5rem;
    color: #00BCD4;
    text-transform: none;
    text-align: left;
    text-align: center;
  }
  main .matches .main-frame .total-card .frame-even h4 {
    font-family: var(--font-body);
    font-weight: 600;
    font-style: normal;
    font-size: 0.8rem;
    color: dimgray;
    text-transform: uppercase;
    text-align: left;
  }
  main .fan-fest {
    padding: 15% 5%;
  }
  main .fan-fest .title-card h2 {
    font-size: 12vw;
    padding-bottom: 8%;
  }
  main .fan-fest .official-card {
    padding: 6%;
  }
  main .fan-fest .official-card .head {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  main .fan-fest .official-card .head .info h2 {
    font-size: 2.4rem;
  }
  main .fan-fest .official-card .head .info .tag-row .pill {
    font-size: 0.6rem;
    letter-spacing: 1px;
    padding: 4px 8px;
  }
  main .fan-fest .official-card .head .image-placeholder {
    min-height: 180px;
  }
  main .fan-fest .official-card .body p {
    font-size: 1rem;
  }
  main .fan-fest .official-card .body .zones {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  main .fan-fest .official-card .foot {
    flex-direction: column;
    align-items: flex-start;
  }
  main .fan-fest .official-card .foot .cta {
    width: 100%;
    text-align: center;
  }
  main .fan-fest .unofficial-wrap h3.lead {
    font-size: 2rem;
  }
  main .fan-fest .unofficial-grid {
    grid-template-columns: 1fr;
  }
  main .fan-fest .fest-card {
    flex-direction: column;
  }
  main .fan-fest .fest-card .fest-hero {
    width: 100%;
    min-width: unset;
    height: 160px;
  }
  main .fan-fest .fan-fest-total {
    flex-direction: column;
    gap: 20px;
    padding: 8% 3%;
  }
  main .fan-fest .fan-fest-total .frame-even h3 {
    font-size: 2.5rem;
  }
  main .fan-fest .fan-fest-footer {
    padding: 8% 5%;
  }
  main .fan-fest .fan-fest-footer h4 {
    font-size: 1rem;
  }
  main .fan-fest .fan-fest-footer p {
    font-size: 0.95rem;
  }
  main .marta {
    padding: 10% 5%;
  }
  main .marta .title-card .container {
    padding-bottom: 2%;
  }
  main .marta .title-card .container .line {
    width: 6vw;
  }
  main .marta .title-card .container h5 {
    font-size: 1.1rem;
  }
  main .marta .title-card h2 {
    font-size: 12vw;
    padding-bottom: 10%;
  }
  main .marta .title-card h3 {
    font-family: var(--font-body);
    font-style: italic;
    font-weight: 300;
    line-height: 1.5;
    color: dimgrey;
    font-size: 1.5rem;
    border-left: 8px #FF1644 solid;
    padding-left: 20px;
    font-size: 1.2rem;
    color: black;
    border-left: 8px solid #69f0ae;
  }
  main .marta .wrap-marta .main-frame {
    padding: 5%;
  }
  main .marta .wrap-marta .main-frame .frame-title h2 {
    font-family: var(--font-body);
    font-weight: 600;
    font-style: normal;
    font-size: 3rem;
    color: black;
    text-transform: uppercase;
    text-align: left;
  }
  main .marta .wrap-marta .main-frame .frame-price h4 {
    font-family: var(--font-body);
    font-weight: 400;
    font-style: normal;
    font-size: 1.5rem;
    color: white;
    text-transform: uppercase;
    text-align: left;
  }
  main .marta .wrap-marta h5 {
    font-family: var(--font-body);
    font-weight: 400;
    font-style: normal;
    font-size: 0.8rem;
    color: dimgrey;
    text-transform: uppercase;
    text-align: left;
    letter-spacing: 5px;
    width: 80%;
  }
  main .marta .wrap-marta h5.second {
    font-family: var(--font-body);
    font-weight: 600;
    font-style: normal;
    font-size: 1.1rem;
    color: dimgrey;
    text-transform: uppercase;
    text-align: left;
    width: 100%;
  }
  main .marta .wrap-marta .train-line {
    font-family: var(--font-body);
    font-weight: 800;
    font-style: normal;
    font-size: 0.8rem;
    color: dimgrey;
    text-transform: uppercase;
    text-align: left;
    display: inline-flex;
    align-items: center;
    padding: 5px 10px;
    letter-spacing: 1px;
  }
  main .marta .wrap-marta .train-line .dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: currentColor;
    flex-shrink: 0;
    margin-right: 10px;
  }
  main .marta .wrap-marta .train-line.red, main .marta .wrap-marta .train-line:nth-child(1) {
    background: #FDECEB;
    color: #FF0000;
    border: #FF0000 solid 3px;
  }
  main .marta .wrap-marta .train-line.yellow, main .marta .wrap-marta .train-line:nth-child(2) {
    background: #FFF5DE;
    color: #FFB100;
    border: #FFB100 solid 3px;
  }
  main .marta .wrap-marta .train-line.blue, main .marta .wrap-marta .train-line:nth-child(3) {
    background: #EAECFF;
    color: #104AE8;
    border: #104AE8 solid 3px;
  }
  main .marta .wrap-marta .train-line.green, main .marta .wrap-marta .train-line:nth-child(4) {
    background: #E3FDDB;
    color: #1F8800;
    border: #1F8800 solid 3px;
  }
  main .marta .wrap-marta .row-2 {
    width: 100%;
    margin: 5% auto 0;
  }
  main .marta .wrap-marta .frame-stops .stops .frame-left {
    width: 60%;
  }
  main .marta .wrap-marta .frame-stops .stops .frame-left h3 {
    font-family: var(--font-body);
    font-weight: 600;
    font-style: normal;
    font-size: 2.1rem;
    color: dimgray;
    text-transform: uppercase;
    text-align: left;
  }
  main .marta .wrap-marta .frame-stops .stops .frame-left h6 {
    font-family: var(--font-body);
    font-weight: 600;
    font-style: normal;
    font-size: 0.9rem;
    color: #00BCD4;
    text-transform: capitalize;
    text-align: left;
  }
  main .marta .wrap-marta .frame-stops .stops .frame-left .walk {
    font-family: var(--font-body);
    font-weight: 400;
    font-style: normal;
    font-size: 0.9rem;
    color: #304FFE;
    text-transform: capitalize;
    text-align: left;
  }
  main .marta .wrap-marta .frame-stops .stops .frame-left .station {
    text-decoration: none;
    color: #00BCD4;
    transition: color 0.2s;
  }
  main .marta .wrap-marta .frame-stops .stops .frame-left .station:hover {
    color: #4A90D9;
  }
  main .marta .wrap-marta .frame-stops .stops .frame-right {
    display: grid;
    align-content: start;
    width: -moz-fit-content;
    width: fit-content;
  }
  main .marta .wrap-marta .frame-stops .stops .frame-right .train-line {
    margin: 10px 0 0;
  }
  main .marta .wrap-marta .row-3 {
    padding: 5% 5% 5% 0;
    margin: 10% 0% 5%;
  }
  main .marta .wrap-marta .row-3 .frame-left {
    width: 20%;
  }
  main .marta .wrap-marta .row-3 .frame-left .breeze-emoji {
    font-size: 3rem;
  }
  main .marta .wrap-marta .row-3 .frame-right {
    width: 80%;
  }
  main .marta .wrap-marta .row-3 .frame-right h3 {
    font-family: var(--font-body);
    font-weight: 600;
    font-style: normal;
    font-size: 1.7rem;
    color: #1F8800;
    text-transform: uppercase;
    text-align: left;
  }
  main .marta .wrap-marta .row-3 .frame-right p {
    font-family: "roboto", sans-serif;
    font-weight: 100;
    font-style: normal;
    font-size: 1.2rem;
    line-height: 1.4;
    width: 100%;
    color: #1F8800;
    padding: 3% 0 7%;
  }
  main .marta .wrap-marta .row-3 .frame-right button {
    padding: 10px 25px;
    background: #5FC341;
    display: block;
    border: solid #838383 2px;
    cursor: pointer;
  }
  main .marta .wrap-marta .row-3 .frame-right button a {
    color: white;
    font-size: 1rem;
    text-decoration: none;
  }
  main .marta .wrap-marta .row-3 .frame-right button {
    margin-left: auto;
  }
  main .marta .wrap-marta .row-4 {
    margin: 5% 0% 0;
  }
  main .marta .wrap-marta .row-4 figure img {
    max-width: 100%;
  }
  main .marta .wrap-marta .row-4 p {
    font-family: "roboto", sans-serif;
    font-weight: 100;
    font-style: normal;
    font-size: 1.1rem;
    line-height: 1.4;
    width: 90%;
    color: dimgray;
    padding: 3% 0 5%;
  }
  main .marta .wrap-marta .row-4 .apps {
    width: 80%;
    margin: 0 auto;
  }
  main .marta .wrap-marta .row-4 .apps button {
    padding: 10px 25px;
    background: #304FFE;
    display: block;
    border: solid #C3C3C3 2px;
    cursor: pointer;
  }
  main .marta .wrap-marta .row-4 .apps button a {
    color: white;
    font-size: 1rem;
    text-decoration: none;
  }
  main .marta .other-ways-wrap h2 {
    font-family: var(--font-body);
    font-weight: 800;
    font-style: normal;
    font-size: 2.2rem;
    color: #304FFE;
    text-transform: uppercase;
    text-align: left;
    text-align: center;
  }
  main .marta .other-ways-wrap .other-ways-frame {
    width: 100%;
  }
  main .marta .other-ways-wrap .other-ways-frame .box {
    width: calc(50% - 10px);
    padding: 5%;
  }
  main .marta .other-ways-wrap .other-ways-frame .box p {
    font-family: "roboto", sans-serif;
    font-weight: 100;
    font-style: normal;
    font-size: 1.1rem;
    line-height: 1.4;
    width: 100%;
    color: dimgray;
    margin: 5% 0 10%;
  }
  main .marta .other-ways-wrap .other-ways-frame .box h5 {
    display: inline-block;
    padding: 10px 25px;
  }
  main .marta .other-ways-wrap .beltline-feature, main .marta .other-ways-wrap .scooter-feature, main .marta .other-ways-wrap .bike-feature, main .marta .other-ways-wrap .marta-bus-feature {
    width: 100%;
  }
  main .marta .other-ways-wrap .beltline-feature .beltline-trails {
    flex-direction: column;
  }
  main .marta .other-ways-wrap .beltline-feature .beltline-trails .beltline-divider {
    width: 100%;
    height: 4px;
  }
  main .marta .other-ways-wrap .beltline-feature .beltline-foot {
    flex-direction: column;
    align-items: flex-start;
  }
  main .marta .other-ways-wrap .scooter-feature .scooter-brands {
    flex-direction: column;
  }
  main .marta .other-ways-wrap .scooter-feature .scooter-brands .scooter-divider {
    width: 100%;
    height: 1px;
    margin: 0;
  }
  main .marta .other-ways-wrap .scooter-feature .scooter-brands .scooter-brand {
    padding: 18px 0;
  }
  main .marta .other-ways-wrap .bike-feature {
    flex-direction: column;
    gap: 24px;
    padding: 6% 5%;
  }
  main .marta .other-ways-wrap .bike-feature .bike-right {
    width: 100%;
  }
  main .marta .other-ways-wrap .marta-bus-feature .mbus-body {
    flex-direction: column;
    gap: 30px;
  }
  main .marta .other-ways-wrap .marta-bus-feature .mbus-foot {
    flex-direction: column;
    align-items: flex-start;
  }
  main .neighborhoods {
    padding: 10% 5%;
  }
  main .neighborhoods .title-card .container {
    padding-bottom: 2%;
  }
  main .neighborhoods .title-card .container .line {
    width: 6vw;
  }
  main .neighborhoods .title-card .container h5 {
    font-size: 1.1rem;
  }
  main .neighborhoods .title-card h2 {
    font-size: 12vw;
    padding-bottom: 10%;
  }
  main .neighborhoods .title-card h3 {
    font-family: var(--font-body);
    font-style: italic;
    font-weight: 300;
    line-height: 1.5;
    color: dimgrey;
    font-size: 1.5rem;
    border-left: 8px #FF1644 solid;
    padding-left: 20px;
    font-size: 1.2rem;
    color: black;
    border-left: #00BCD4 solid 8px;
  }
  main .neighborhoods .title-card h3 {
    margin-top: 15%;
  }
  main .neighborhoods .nav-wrap {
    width: 100%;
    overflow: hidden;
  }
  main .neighborhoods .nav-wrap .nav-arrow {
    width: 28px;
  }
  main .neighborhoods .nav-wrap nav {
    min-width: 0;
    overflow: hidden;
  }
  main .neighborhoods .nav-wrap nav ul li a {
    font-size: 0.8rem;
  }
  main .neighborhoods .neighborhoods-wrap {
    margin: 5% 0;
  }
  main .neighborhoods .neighborhoods-wrap .neighborhoods-track .card figure h2 {
    font-size: clamp(1.6rem, 10vw, 3.6rem);
    left: 10px;
    white-space: nowrap;
  }
  main .neighborhoods .neighborhoods-wrap .neighborhoods-track .card .frame {
    padding: 4% 5% 5% 5%;
  }
  main .neighborhoods .neighborhoods-wrap .neighborhoods-track .card .frame h5 {
    font-size: 0.85rem;
    letter-spacing: 4px;
  }
  main .neighborhoods .neighborhoods-wrap .neighborhoods-track .card .frame h6 {
    font-size: 1rem;
  }
  main .neighborhoods .neighborhoods-wrap .neighborhoods-track .card .frame p {
    font-size: 1.1rem;
  }
  main .neighborhoods .neighborhoods-wrap .neighborhoods-track .card .frame .bullet-pts {
    padding: 2% 2% 5%;
  }
  main .neighborhoods .neighborhoods-wrap .neighborhoods-track .card .frame .bullet-pts p {
    font-size: 1.1rem;
  }
  main .neighborhoods .neighborhoods-wrap .neighborhoods-track .card .frame .bullet-pts p:nth-child(3) {
    padding: 3% 0% 5%;
  }
  main .neighborhoods .neighborhoods-wrap .neighborhoods-track .card .frame .distance-tag h6 {
    font-size: 0.8rem;
  }
  main .neighborhoods .accommodation {
    padding: 7% 5%;
    width: 100%;
  }
  main .neighborhoods .accommodation .title {
    margin-bottom: 6%;
  }
  main .neighborhoods .accommodation .title h3 {
    font-family: var(--font-body);
    font-weight: 400;
    font-style: normal;
    font-size: 0.8rem;
    color: lightgray;
    text-transform: uppercase;
    text-align: left;
    letter-spacing: 5px;
    margin-bottom: 1%;
  }
  main .neighborhoods .accommodation .title h2 {
    font-size: 3.2rem;
  }
  main .neighborhoods .accommodation .list .left .price {
    font-family: var(--font-body);
    font-weight: 800;
    font-style: normal;
    font-size: 1.8rem;
    color: #FF1644;
    text-transform: none;
    text-align: center;
  }
  main .neighborhoods .accommodation .list .right h4 {
    font-family: var(--font-body);
    font-weight: 800;
    font-style: normal;
    font-size: 1.1rem;
    color: white;
    text-transform: uppercase;
    text-align: left;
  }
  main .neighborhoods .accommodation .list .right h3 {
    font-family: var(--font-body);
    font-weight: 300;
    font-style: normal;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: none;
    text-align: left;
    line-height: 1.6;
  }
  main .neighborhoods .explore-wrap {
    width: 100%;
    padding: 3% 5%;
  }
  main .neighborhoods .explore-wrap h4 {
    font-family: var(--font-body);
    font-weight: 800;
    font-style: normal;
    font-size: 1.6rem;
    color: white;
    text-transform: uppercase;
    text-align: left;
  }
  main .neighborhoods .explore-wrap h4 a {
    font-family: var(--font-body);
    font-weight: 400;
    font-style: normal;
    font-size: 0.8rem;
    color: #00BCD4;
    text-transform: uppercase;
    text-align: left;
  }
  main .neighborhoods .explore-wrap .arrow-wrap {
    padding-left: 100px;
    width: 40%;
  }
  main .neighborhoods .explore-wrap .shaft {
    width: 50px;
    height: 15px;
  }
  main .neighborhoods .explore-wrap .head {
    border-top: 20px solid transparent;
    border-bottom: 20px solid transparent;
    border-left: 36px solid #00BCD4;
  }
  main {
    /* ── Mobile restaurants ── */
  }
  main .restaurants {
    padding: 10% 5%;
  }
  main .restaurants .title-card .container {
    padding-bottom: 2%;
  }
  main .restaurants .title-card .container .line {
    width: 6vw;
  }
  main .restaurants .title-card .container h5 {
    font-size: 1.1rem;
  }
  main .restaurants .title-card h2 {
    font-size: 12vw;
    padding-bottom: 10%;
  }
  main .restaurants .title-card h3 {
    font-family: var(--font-body);
    font-style: italic;
    font-weight: 300;
    line-height: 1.5;
    color: dimgrey;
    font-size: 1.5rem;
    border-left: 8px #FF1644 solid;
    padding-left: 20px;
    font-size: 1.2rem;
    color: black;
    border-left: #FF1644 solid 8px;
  }
  main .restaurants .nav-wrap-restaurants {
    width: 100%;
    margin: 10% auto 0;
    overflow: hidden;
  }
  main .restaurants .nav-wrap-restaurants nav {
    min-width: 0;
    overflow: hidden;
  }
  main .restaurants .nav-wrap-restaurants nav ul li a {
    font-size: 0.9rem;
  }
  main .restaurants .nav-wrap-restaurants .nav-arrow {
    font-size: 1.1rem;
    width: 30px;
  }
  main .restaurants .restaurants-main {
    padding: 5% 0;
    background: white;
    width: 100%;
    margin: 0 auto;
  }
  main .restaurants .restaurants-main .card {
    width: 95%;
    margin: 0 auto 10%;
  }
  main .restaurants .restaurants-main .card .frame-body {
    padding: 5% 7%;
  }
  main .restaurants .restaurants-main .card .frame-body h5 {
    font-family: var(--font-body);
    font-weight: 400;
    font-style: normal;
    font-size: 0.9rem;
    color: #304FFE;
    text-transform: uppercase;
    text-align: left;
  }
  main .restaurants .restaurants-main .card .frame-body h5 span {
    color: white;
    font-size: 1rem;
    margin-right: 8px;
    display: table;
  }
  main .restaurants .restaurants-main .card .frame-body h5 b {
    font-family: var(--font-body);
    font-weight: 800;
    font-style: normal;
    font-size: 1.3rem;
    color: black;
    text-transform: none;
    text-align: left;
    margin-right: 8px;
  }
  main .restaurants .restaurants-main .card .frame-body h2 {
    font-size: clamp(2.2rem, 6vw, 3.5rem);
  }
  main .restaurants .restaurants-main .card .frame-body .container {
    padding: 0 10px;
  }
  main .restaurants .restaurants-main .card .frame-body .container p {
    font-family: "roboto", sans-serif;
    font-weight: 100;
    font-style: normal;
    font-size: 1.2rem;
    line-height: 1.4;
    width: 100%;
    color: dimgray;
  }
  main .restaurants .restaurants-main .card .frame-body .container h6 {
    font-family: var(--font-body);
    font-weight: 400;
    font-style: normal;
    font-size: 0.9rem;
    color: dimgray;
    text-transform: none;
    text-align: left;
  }
  main {
    /* ── Mobile nightlife ── */
  }
  main .nightlife {
    padding: 15% 5% 12%;
  }
  main .nightlife .title-card .container {
    padding-bottom: 2%;
  }
  main .nightlife .title-card .container .line {
    width: 6vw;
  }
  main .nightlife .title-card .container h5 {
    font-size: 1.1rem;
  }
  main .nightlife .title-card h2 {
    font-size: 12vw;
    padding-bottom: 10%;
  }
  main .nightlife .title-card h3 {
    font-family: var(--font-body);
    font-style: italic;
    font-weight: 300;
    line-height: 1.5;
    color: dimgrey;
    font-size: 1.5rem;
    border-left: 8px #FF1644 solid;
    padding-left: 20px;
    font-size: 1.2rem;
    color: white;
    border-left: #00BCD4 solid 8px;
  }
  main .nightlife .title-card h2 :nth-child(1) {
    color: white;
  }
  main .nightlife .title-card h2 :nth-child(2) {
    color: #00BCD4;
  }
  main .nightlife .title-card h3 {
    color: rgba(255, 255, 255, 0.65);
    font-size: 1.2rem;
  }
  main .nightlife .title-card .container h5 {
    color: #00BCD4;
  }
  main .nightlife .glow-1 {
    width: 300px;
    height: 300px;
  }
  main .nightlife .glow-2 {
    width: 360px;
    height: 360px;
  }
  main .nightlife .nightlife-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 15%;
  }
  main .nightlife .nightlife-grid .panel {
    padding: 25px 20px 20px;
  }
  main .nightlife .nightlife-grid .panel .panel-head {
    gap: 12px;
    padding-bottom: 18px;
    margin-bottom: 18px;
  }
  main .nightlife .nightlife-grid .panel .panel-head .panel-icon {
    font-size: 1.8rem;
  }
  main .nightlife .nightlife-grid .panel .panel-head .panel-title h3 {
    font-size: 1.35rem;
  }
  main .nightlife .nightlife-grid .panel .panel-head .panel-title h6 {
    font-size: 0.7rem;
    letter-spacing: 1.5px;
  }
  main .nightlife .nightlife-grid .panel .panel-head .panel-count {
    width: 30px;
    height: 30px;
    font-size: 0.85rem;
  }
  main .nightlife .nightlife-grid .panel .venue-list {
    gap: 18px;
  }
  main .nightlife .nightlife-grid .panel .venue-list .venue .venue-head h4 {
    font-size: 1.1rem;
  }
  main .nightlife .nightlife-grid .panel .venue-list .venue .meta {
    font-size: 0.7rem;
    letter-spacing: 1.5px;
  }
  main .nightlife .nightlife-grid .panel .venue-list .venue .tag {
    font-size: 0.65rem;
    letter-spacing: 1.5px;
  }
  main .nightlife .nightlife-grid .panel .venue-list .venue .desc {
    font-size: 0.95rem;
    line-height: 1.55;
  }
  main .nightlife .nightlife-grid .panel .venue-list .venue .venue-foot a {
    font-size: 0.78rem;
  }
  main .nightlife .nightlife-footer {
    margin-top: 12%;
    padding: 8% 6%;
  }
  main .nightlife .nightlife-footer h4 {
    font-size: 1rem;
  }
  main .nightlife .nightlife-footer p {
    font-size: 0.95rem;
  }
}/*# sourceMappingURL=main.css.map */