@font-face {
  font-family: "AmericanSans Var";
  src: url("../assets/AmericanSansVar.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 1000;
  font-stretch: 75% 125%;
  font-display: swap;
}

@font-face {
  font-family: "AmericanSans Var";
  src: url("../assets/AmericanSansVar-Italic.woff2") format("woff2");
  font-style: italic;
  font-weight: 100 1000;
  font-stretch: 75% 125%;
  font-display: swap;
}

a.external.external-white {
  fill: #fff;
}

a.external.external-blue {
  fill: #006dc0;
}

body {
  font-family: "AmericanSans Var", system-ui, Helvetica, Arial, sans-serif;
  font-variant-numeric: proportional-nums;
  font-weight: 400;
  line-height: 1.5;
  /* -webkit-text-size-adjust: 100%; */
  -webkit-tap-highlight-color: transparent;
}

img {
  border-radius: 6px;
  width: 100%;
}

h1 {
  font-size: 44px;
  font-weight: 700;
  margin: 10px 0 10px 0;
}
h2 {
  font-size: 36px;
  font-weight: 500;
  margin: 10px 0 10px 0;
}
h3 {
  font-size: 28px;
  font-weight: 500;
  margin: 10px 0 10px 0;
}
h4 {
  font-size: 20px;
  font-weight: 500;
  margin: 10px 0 10px 0;
}
h5 {
  font-size: 16px;
  font-weight: 700;
  margin: 10px 0 10px 0;
}
p {
  font-size: 16px;
  font-weight: 400;
  margin: 10px 0 10px 0;
}

.button {
  display: inline-flex;
  padding: 12px 16px;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-weight: 700;
  font-size: 16px;

  border-radius: var(--ads-border-radius-050, 4px);
  background: var(--ads-color-bg-bg-fill-interactive, #006dc0);

  margin-top: 20px;
  transition:
   background-color 0.25s cubic-bezier(.4,0,.2,1),
   transform 0.15s ease;
}
.button:hover {
 background-color: rgb(10, 120, 245);
}

.parentGrid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto;
  margin: 0 auto;
  max-width: 2000px;
}

header {
  grid-column: 2/12;
  grid-row: 2;
  padding-top: 15px;
}

header img {
  width: 100px;
}

footer {
  grid-column: 2/12;
  grid-row: 2;
  padding-top: 25px;
}

.heroVideo {
  /*
  grid-column: 1/13;
  grid-row: 1;
  padding-top: 155px;
  padding-bottom: 155px;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  overflow: hidden;
  background-position: center;
  background-size: cover;
  position: relative;
  background-repeat: no-repeat;
  z-index: 0; */
  position: relative;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-column: 1/13;
  grid-row: 1;
  place-items: center;
  padding-top: 155px;
  padding-bottom: 155px;
  overflow: hidden;
}
.heroVideo::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    270deg,
    rgba(0, 0, 0, 0.25) 0%,
    rgba(0, 0, 0, 0.45) 50%,
    rgba(0, 0, 0, 0.8) 100%
  );
}

.heroVideo video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.heroContent {
  grid-column: 2/7;
  position: relative;
  z-index: 2;
  padding: 2rem;
  max-width: 52rem;
}

.heroPause {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.heroPause:hover {
  background: rgba(0, 0, 0, 0.6);
}

.heroPause:focus-visible {
  outline: 3px solid #4a7cff;
  outline-offset: 3px;
}

.heroPause svg {
  width: 1.125rem;
  height: 1.125rem;
  fill: currentColor;
}

.heroPause .icon-play {
  display: none;
}

.heroPause[aria-pressed="true"] .icon-pause {
  display: none;
}

.heroPause[aria-pressed="true"] .icon-play {
  display: block;
}

.section2 {
  grid-column: 2/12;
  grid-row: 2;
  padding-top: 45px;
}
.experiences {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 10px;
  grid-template-areas:
    "a a a a  b b b b b b b b"
    "a a a a  c c c c d d d d";
  height: 495px;
}
.flagshipExperience {
  grid-area: a;
  overflow: hidden;
  border-radius: 6px;
  background-position: 65% center;
  background-size: cover;
  position: relative;

  display: flex;
  align-items: flex-end;

  padding-bottom: 20px;
}
.flagshipExperience::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.8),
    rgba(0, 0, 0, 0.2) 80%,
    rgba(0, 0, 0, 0) 100%
  );
  z-index: 0;
}
.flagshipExperience .overlay {
  position: relative;
  padding: 0 20px 0 20px;
  z-index: 2;
  color: #fff;
}

.loungeExperience {
  grid-area: b;
  overflow: hidden;
  border-radius: 6px;
  background-position: 75% center;
  background-size: cover;
  position: relative;

  display: flex;
  align-items: flex-end;

  padding-bottom: 20px;
}
.loungeExperience::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.8),
    rgba(0, 0, 0, 0.2) 80%,
    rgba(0, 0, 0, 0) 100%
  );
  z-index: 0;
}
.loungeExperience .overlay {
  position: relative;
  padding: 0 20px 0 20px;
  z-index: 2;
  color: #fff;
}

.diningExperience {
  grid-area: c;
  overflow: hidden;
  border-radius: 6px;
  background-position: center;
  background-size: cover;
  position: relative;

  display: flex;
  align-items: flex-end;

  padding-bottom: 20px;
}
.diningExperience::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.8),
    rgba(0, 0, 0, 0.2) 80%,
    rgba(0, 0, 0, 0) 100%
  );
  z-index: 0;
}
.diningExperience .overlay {
  position: relative;
  padding: 0 20px 0 20px;
  z-index: 2;
  color: #fff;
}

.entertainmentEperience {
  grid-area: d;
  overflow: hidden;
  border-radius: 6px;
  background-position: center;
  background-size: cover;
  position: relative;

  display: flex;
  align-items: flex-end;

  padding-bottom: 20px;
}
.entertainmentEperience::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.8),
    rgba(0, 0, 0, 0.2) 80%,
    rgba(0, 0, 0, 0) 100%
  );
  z-index: 0;
}
.entertainmentEperience .overlay {
  position: relative;
  padding: 0 20px 0 20px;
  z-index: 2;
  color: #fff;
}
a {
  color: inherit;
  text-decoration: none;
}
a h4 {
  color: #fff;
}

.experiences a {
  text-decoration: none;
  color: inherit;
  transition: color 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.experiences a h4 {
  position: relative;
  display: inline-block;
}

.experiences a h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1) 0.05s;
}

.experiences a:hover h4::after,
.experiences a:focus-visible h4::after {
  transform: scaleX(1);
}

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

.boarding {
  grid-column: 2/12;
  grid-row: 3;
  padding-top: 45px;
  padding-bottom: 45px;
}
.boardingTech {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 10px;
}
.boardingTech img {
  border-radius: 6px;
}
.mobile {
  grid-column-start: 1;
  grid-column-end: 5;
}
.kiosk {
  grid-column-start: 5;
  grid-column-end: 9;
}
.boardingPass {
  grid-column-start: 9;
  grid-column-end: 13;
}

.lounge {
  grid-column: 1/13;
  grid-row: 4;
  overflow: hidden;
  background-position: center 35%;
  background-size: cover;
  position: relative;
  background-repeat: no-repeat;
  padding-top: 45px;

  z-index: 0;
}
.lounge::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(27, 31, 35, 0.9);
  background-blend-mode: multiply;
  z-index: 1;
  box-shadow: 5px 5px 20px 5px rgba(0, 0, 0, 0.25);
}
.overlay {
  position: relative;
  z-index: 2;
  color: #fff;
}

.loungeGrid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto;
  gap: 10px;
}
.loungeDesign {
  grid-column: 2/12;
  grid-row: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  padding-bottom: 50px;
  align-items: center;
}
.loungeText {
  grid-column: 1;
}
.loungeSlides {
  grid-column: 2;
}

.carousel {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  width: 100%;
}

.carouselTrack {
  display: flex;
  width: 100%;
  /* transition: transform 0.4s ease; */
}

.carouselSlide {
  /* width: 100%;
  flex: 0 0 100%; */

  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.01);
  transition:
   opacity 0.6s cubic-bezier(.4,0,.2,1),
   transform 0.8s cubic-bezier(.4,0,.2,1);
}

.carouselSlide.is-active {
 opacity: 1;
 transform: scale(1);
 position: relative;
}

.carouselSlide img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Buttons */

.carouselBtn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0);
  color: #fff;
  border: none;
  font-size: 24px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
}

.carouselBtn.prev {
  left: 10px;
}
.carouselBtn.next {
  right: 10px;
}
.next .arrowIcon {
  transform: rotate(180deg);
}

.arrowIcon {
  width: 14px;
  height: auto;
}

.carouselBtn:focus-visible {
  outline: 2px solid #fff;
}

.carouselDots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 10px;
}

.carouselDot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #fff;
  opacity: 0.7;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: opacity 0.25s ease, background-color 0.25s ease;
}

.carouselDot.is-active {
  background-color: #006dc0;
  opacity: 1;
}

.carouselDot:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

.loungeMenu {
  grid-column: 2/12;
  grid-row: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  padding-bottom: 50px;
  align-items: center;
}
.menuText {
  grid-column: 2;
}
.menuImage {
  grid-column: 1;
}

.locationsText {
  grid-column: 2/7;
  grid-row: 3;
}

.locationsMap {
  grid-column: 1/14;
  grid-row: 5;
}

.locationsMapControls {
  margin-top: 20px;
  grid-column: 2/12;
  grid-row: 4;
  display: flex;
  align-content: center;
  justify-content: space-between;
  border-bottom: 1px solid #aaa;
  border-top: 1px solid #aaa;
}

.loungeMapLegend {
  display: flex;
  flex-direction: row;
  gap: 20px;
  padding: 0;
}
.legendItem {
  display: flex;
  align-items: center;
  gap: 8px;
}

.legendItem img {
  width: 24px;
  height: 24px;
  display: block;
  /* filter: drop-shadow(1px 0 0 #fff) drop-shadow(-1px 0 0 #fff)
    drop-shadow(0 1px 0 #fff) drop-shadow(0 -1px 0 #fff); */
}

.suiteSeats {
  grid-column: 2/12;
  grid-row: 5;
  padding-top: 45px;
  padding-bottom: 45px;
}
.suiteSeatsIntro {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  padding-bottom: 25px;
}
.introTitle {
  grid-column: 1;
}
.introContent {
  grid-column-start: 2;
  grid-column-end: 4;
}
.suiteSeatsTabs,
.mapViewToggle {
  display: flex;
  gap: 24px;
  margin-bottom: 24px;
}
.tabBtn,
.mapViewBtn {
  background: none;
  border: none;

  font-family: "AmericanSans Var";
  font-size: 20px;
  font-weight: 500;
  color: #3c4e5f;

  cursor: pointer;
  padding-bottom: 6px;
}
.tabBtn.is-active,
.mapViewBtn.is-active {
  color: #000;
  border-bottom: 2px solid #0078d4;
}
.suiteSeatsTabContent {
  position: relative;
}
.suiteSeatsTabContent {
 position: relative;
}

.suiteSeatsGrid {
 position: absolute;
 inset: 0;
 display: grid;
 grid-template-columns: repeat(3, 1fr);
 grid-template-rows: auto auto;
 grid-template-areas:
   "a b d"
   "a c e";
 gap: 10px;
 opacity: 0;
 transform: translateY(8px);
 pointer-events: none;
 transition:
   opacity 0.45s cubic-bezier(.4,0,.2,1),
   transform 0.45s cubic-bezier(.4,0,.2,1);
}

.suiteSeatsGrid.is-active {
 position: relative;
 opacity: 1;
 transform: translateY(0);
 pointer-events: auto;
}
.a {
  grid-area: a;
}
.b {
  grid-area: b;
}
.c {
  grid-area: c;
}
.d {
  grid-area: d;
}
.e {
  grid-area: e;
}

.tileImage:not(.a) {
  aspect-ratio: 16 / 9;
  background-size: cover;
  background-position: center;
  border-radius: 6px;
}

.a {
  background-size: cover;
  background-position: 65% center;
  border-radius: 6px;
}

.dining {
  grid-column: 1/13;
  grid-row: 6;
  background-color: #f3f5f7;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto;
  gap: 10px;
  padding-top: 45px;
  padding-bottom: 45px;
}
.diningContent {
  grid-column: 2 / 12;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: center;
}
.diningText {
  grid-column: 1;
}
.diningSlides {
  grid-column: 2;
}

.WiFi {
  grid-column: 1/13;
  grid-row: 7;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto;
  gap: 10px;
  padding-top: 45px;
  padding-bottom: 45px;
  overflow: hidden;
  background-position: center;
  background-size: cover;
  position: relative;
  background-repeat: no-repeat;
  z-index: 0;
}
.WiFi::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(27, 31, 35, 0.9);
  background-blend-mode: multiply;
  z-index: 1;
  box-shadow: 5px 5px 20px 5px rgba(0, 0, 0, 0.25);
}
.overlay {
  position: relative;
  z-index: 2;
  color: #fff;
}
.wifiContent {
  grid-column: 2 / 12;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: center;
}
.wifiText {
  grid-column: 1;
}
.wifiSlides {
  grid-column: 2;
}

.entertainment {
  grid-column: 2/12;
  grid-row: 8;
  padding-top: 45px;
  padding-bottom: 45px;
}
.entertainmentOffers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.entertainmentButton {
  display: flex;
  justify-content: flex-end;
}
.callout p {
  margin: 5px 0 5px 0;
}
.options {
  grid-column: 1;
  display: flex;
  flex-direction: column;
}
.options img {
  width: 100%;
  display: block;
}
.updates {
  grid-column: 2;
  display: flex;
  flex-direction: column;
}
.updates img {
  width: 100%;
  display: block;
}
.access {
  grid-column: 3;
  display: flex;
  flex-direction: column;
}
.access img {
  width: 100%;
  display: block;
}
.callout {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 20px 5px 0 5px;
}
.blueSideBar {
  width: 3px;
  background-color: #0078d4;
  align-self: stretch;
}

.latest {
  grid-column: 1/13;
  grid-row: 9;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto;
  gap: 10px;
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #f3f5f7;
}
.latestHeader {
  grid-column: 2 / 12;
}
.latestContent {
  grid-column: 2 / 12;
  position: relative;
}

.latestContent button {
  position: absolute;
  height: 100%;
  padding: 10px;
}

.latestContent .customSlick-next svg {
  transform: rotate(180deg);
}

.latestContent .customSlick-next {
  right: -5%;
}

.latestContent .customSlick-prev {
  left: -5%;
}

.latestNews {
  overflow: hidden;
}
.latestNews .slick-track {
  align-items: baseline;
  gap: 10px;
}
.slick-showing {
  display: none;
}
.AAdvantage {
  grid-column: 1/13;
  grid-row: 10;
  background-color: #005ca4;
  padding-top: 50px;
  padding-bottom: 50px;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 10px;
}
.AAdvantageContent {
  grid-column: 2 / 12;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: center;
  color: #fff;
}
.AAdvantageText {
  grid-column: 1;
}
.AAdvantageImg {
  grid-column: 2;
}
.AAdvantagebutton {
  display: inline-flex;
  padding: 12px 16px;
  justify-content: center;
  align-items: center;
  color: #006dc0;
  font-weight: 700;
  font-size: 16px;

  border-radius: var(--ads-border-radius-050, 4px);
  background: var(--ads-color-bg-bg-fill-interactive, #fff);

  margin-top: 20px;
}

footer {
  grid-column: 2/12;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #f3f5f7;
  text-align: center;
}
footer nav {
  justify-content: space-between;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
.footerLink {
  color: #006dc0;
  padding: 0 7px 0 7px;
}
.footerLink:hover {
  color: #acdcff;
  text-decoration: underline;
}
.footerLink:visited{
  color: #006dc0;
}
.PreviewToolBar {
  display: none;
}

@media (max-width: 768px) {
  h1 {
    font-size: 36px;
  }
  h2 {
    font-size: 28px;
  }
  h3 {
    font-size: 24px;
  }
  h4 {
    font-size: 20px;
  }
  h5 {
    font-size: 16px;
  }

  .parentGrid,
  .suiteSeatsGrid,
  .dining,
  .WiFi,
  .entertainmentOffers {
    display: grid;
    grid-template-columns: 20px 1fr 20px;
  }
  .heroVideo {
    display: flex;
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .heroContent {
    grid-column: 2;
    padding: 0 20px;
  }
  .section2 {
    grid-column: 2;
  }
  .experiences {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto auto;
    grid-template-areas:
      "a a"
      "b b"
      "c d";
  }
  .boarding {
    grid-column: 2;
  }
  .boardingTech {
    display: flex;
    flex-direction: column;
  }
  .lounge {
    background-position: 70% center;
  }
  .loungeGrid {
    /* display: grid; */
    /* grid-template-columns: 20px 1fr 20px; */
    /* grid-template-rows: auto; */
  }

  .loungeDesign {
    /* grid-column: 2; */
    display: flex;
    flex-direction: column;
  }

  .loungeMenu {
    /* grid-column: 2; */
    display: flex;
    flex-direction: column-reverse;
  }

  .locationsText {
    grid-column: 2/12;
  }

  .leaflet-marker-icon {
    width: 8px !important;
    height: 8px !important;
    margin-left: -4px !important;
    margin-top: -8px !important;
  }

  .suiteSeats {
    grid-column: 2;
  }
  .suiteSeatsIntro {
    display: flex;
    flex-direction: column;
  }
  .suiteSeatsGrid {
    display: none;
  }
  .suiteSeatsGrid.is-active {
    display: flex;
    flex-direction: column;
  }
  .a,
  .b,
  .c,
  .d,
  .e {
    grid-area: auto;
    aspect-ratio: 16 / 9;
  }
  .dining {
    display: flex;
  }
  .diningContent {
    display: flex;
    flex-direction: column;
    padding: 0 20px 0 20px;
  }
  .WiFi {
    display: flex;
  }
  .wifiContent {
    display: flex;
    flex-direction: column;
    padding: 0 20px 0 20px;
  }
  .entertainment {
    grid-column: 2;
    display: flex;
    flex-direction: column;
  }
  .entertainmentOffers {
    display: flex;
    flex-direction: column;
  }
  .entertainmentButton {
    justify-content: flex-start;
  }
  .AAdvantage {
    display: flex;
    flex-direction: column;
  }
  .AAdvantageContent {
    display: flex;
    flex-direction: column;
    padding: 0 20px 0 20px;
  }

  .locationsMapControls {
    flex-wrap: wrap;
  }

  .loungeMapLegend {
    display: flex;
    flex-wrap: wrap;
  }
  .legendItem {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 80%;
  }

  .legendItem img {
    width: 24px;
    height: 24px;
    display: block;
    filter: drop-shadow(1px 0 0 #fff) drop-shadow(-1px 0 0 #fff)
      drop-shadow(0 1px 0 #fff) drop-shadow(0 -1px 0 #fff);
  }
}

.PreviewToolBar {
  display: none;
}

/* Map View Toggle */

.mapViewToggle button {
  color: #bbb;
}

.mapViewToggle button.is-active {
  color: #fff;
}

.mapViewBtn {
  cursor: pointer;
  text-decoration: none;
}

.mapViewBtn.is-active {
  font-weight: bold;
}

/* Leaflet Map */

#leaflet-map {
  width: 100%;
  background-color: #fff;
  aspect-ratio: 20 / 9;
  background: transparent;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 8%);
  mask-image: linear-gradient(to bottom, transparent 0%, black 8%);
}

.mapViewToggle {
  margin-top: 20px;
}

/* Leaflet marker pin shadow */
/* .leaflet-marker-icon {
  filter: drop-shadow(1px 0 0 #fff) drop-shadow(-1px 0 0 #fff)
    drop-shadow(0 1px 0 #fff) drop-shadow(0 -1px 0 #fff);
} */

.leaflet-marker-icon:hover {
  filter: brightness(1.2);
}

/* drop-shadow(1px 0 0 #fff) drop-shadow(-1px 0 0 #fff)
    drop-shadow(0 1px 0 #fff) drop-shadow(0 -1px 0 #fff) */

/* Leaflet popup overrides */
.map-custom-popup .leaflet-popup-content-wrapper {
  border-radius: 8px;
  padding: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.map-custom-popup .leaflet-popup-content {
  margin: 0;
  width: 250px !important;
}

.map-popup-content {
  display: flex;
  gap: 10px;
  padding: 15px;
  text-align: left;
}

.map-popup-image-container {
  width: 40%;
  flex-shrink: 0;
}

.map-popup-image {
  width: 100%;
  height: auto;
  border-radius: 4px;
  display: block;
}

.map-popup-body {

}

.map-popup-title {
  margin: 0 0 10px 0;
  font-size: 16px;
  line-height: 1.3;
  color: #333;
}

.map-popup-text {
  margin: 0 0 10px 0;
  font-size: 14px;
  color: #666;
  line-height: 1.4;
}

.map-popup-link {
  color: #0066cc;
  text-decoration: none;
  font-size: 14px;
  display: none;
}

.map-popup-link:hover {
  text-decoration: underline;
}

/* MarkerCluster styles */
.marker-cluster {
  background: #333;
  border-radius: 50%;
  color: white;
  font-weight: bold;
  text-align: center;
  font-size: 12px;
  width: 32px;
  height: 32px;
  line-height: 32px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
  filter: drop-shadow(1px 0 0 #fff) drop-shadow(-1px 0 0 #fff)
    drop-shadow(0 1px 0 #fff) drop-shadow(0 -1px 0 #fff);
}

.marker-cluster div {
  background: transparent;
  border: none;
}

.marker-cluster span {
  line-height: 32px;
}

@media (max-width: 768px) {
  .marker-cluster {
    width: 16px;
    height: 16px;
    font-size: 10px;
    line-height: 16px;
  }
  .marker-cluster span {
    line-height: 16px;
  }
}
