/* =========================
   LOCATIONS BANNER SECTION
========================= */

.locations-banner-section{

  position:relative;

  overflow:hidden;

  min-height:360px;

  display:flex;

  align-items:center;

  justify-content:center;

  padding:120px 20px 80px;

  background:

  radial-gradient(
  circle at top left,
  rgba(255,90,140,.20),
  transparent 26%
  ),

  radial-gradient(
  circle at top right,
  rgba(179,0,45,.22),
  transparent 30%
  ),

  radial-gradient(
  circle at bottom left,
  rgba(212,175,55,.08),
  transparent 24%
  ),

  linear-gradient(
  135deg,
  #1a070d 0%,
  #320013 30%,
  #22000d 58%,
  #12060a 100%
  );

}

/* GLOSS OVERLAY */

.locations-banner-section::before{

  content:"";

  position:absolute;

  inset:0;

  background:

  linear-gradient(
  120deg,
  rgba(255,255,255,.04),
  transparent 28%,
  transparent 70%,
  rgba(255,255,255,.03)
  );

  mix-blend-mode:soft-light;

  pointer-events:none;

}

/* CONTAINER */

.locations-banner-container{

  position:relative;

  z-index:2;

  max-width:900px;

  margin:auto;

  text-align:center;

}

/* TAG */

.locations-banner-tag{

  display:inline-block;

  padding:10px 18px;

  border-radius:40px;

  background:
  rgba(255,255,255,.06);

  border:
  1px solid rgba(255,255,255,.08);

  backdrop-filter:blur(14px);

  color:var(--gold);

  font-size:13px;

  letter-spacing:1px;

  margin-bottom:22px;

}

/* BREADCRUMB */

.locations-breadcrumb{

  display:flex;

  align-items:center;

  justify-content:center;

  flex-wrap:wrap;

  gap:10px;

  margin-bottom:24px;

}

.locations-breadcrumb a{

  color:#d6d6d6;

  font-size:14px;

  transition:.3s ease;

}

.locations-breadcrumb a:hover{

  color:var(--gold);

}

.locations-breadcrumb span{

  color:#888;

  font-size:13px;

}

/* CONTENT */

.locations-banner-container p{

  max-width:720px;

  margin:auto;

  color:#d0d0d0;

  font-size:15px;

  line-height:1.9;

}

/* MOBILE */

@media(max-width:576px){

  .locations-banner-section{

    min-height:300px;

    padding:110px 16px 65px;

  }

  .locations-banner-tag{

    font-size:12px;

    padding:9px 16px;

  }

  .locations-breadcrumb{

    gap:8px;

    margin-bottom:20px;

  }

  .locations-breadcrumb a{

    font-size:13px;

  }

  .locations-banner-container p{

    font-size:13px;

  }

}

/* =========================
   LOCATIONS SECTION
========================= */

.locations-section{

  position:relative;

  overflow:hidden;

  padding:95px 20px;

  background:

  radial-gradient(
  circle at top left,
  rgba(179,0,45,.14),
  transparent 30%
  ),

  radial-gradient(
  circle at bottom right,
  rgba(212,175,55,.06),
  transparent 26%
  ),

  linear-gradient(
  135deg,
  #14070c 0%,
  #21000f 48%,
  #0d0d0d 100%
  );

}

/* CONTAINER */

.locations-container{

  max-width:1280px;

  margin:auto;

}

/* HEADING */

.locations-heading{

  text-align:center;

  max-width:760px;

  margin:0 auto 60px;

}

.locations-tag{

  display:inline-block;

  padding:10px 18px;

  border-radius:40px;

  background:
  rgba(255,255,255,.06);

  border:
  1px solid rgba(255,255,255,.08);

  backdrop-filter:blur(14px);

  color:var(--gold);

  font-size:13px;

  letter-spacing:1px;

  margin-bottom:22px;

}

.locations-heading p{

  color:#d0d0d0;

  font-size:15px;

  line-height:1.9;

}

/* GRID */

.locations-grid{

  display:grid;

  grid-template-columns:
  repeat(3,1fr);

  gap:28px;

}

/* CARD */

.location-card{

  position:relative;

  overflow:hidden;

  border-radius:32px;

  min-height:520px;

  transition:.45s ease;

}

.location-card:hover{

  transform:
  translateY(-8px);

}

/* IMAGE */

.location-image{

  position:absolute;

  inset:0;

}

.location-image img{

  width:100%;

  height:100%;

  object-fit:cover;

  transition:1s ease;

}

.location-card:hover img{

  transform:scale(1.06);

}

/* OVERLAY */

.location-overlay{

  position:relative;

  z-index:2;

  height:100%;

  display:flex;

  flex-direction:column;

  justify-content:flex-end;

  padding:34px 28px;

  background:
  linear-gradient(
  to top,
  rgba(0,0,0,.88),
  rgba(0,0,0,.34) 50%,
  transparent
  );

}

/* BADGE */

.location-badge{

  display:inline-flex;

  width:max-content;

  padding:8px 14px;

  border-radius:40px;

  background:
  rgba(255,255,255,.08);

  border:
  1px solid rgba(255,255,255,.08);

  backdrop-filter:blur(12px);

  color:var(--gold);

  font-size:11px;

  letter-spacing:.5px;

  margin-bottom:18px;

}

/* TITLE */

.location-overlay h3{

  margin-bottom:14px;

}

/* TEXT */

.location-overlay p{

  color:#d0d0d0;

  font-size:14px;

  line-height:1.8;

  margin-bottom:22px;

}

/* BUTTON */

.location-btn{

  display:inline-flex;

  align-items:center;

  justify-content:center;

  width:max-content;

  height:48px;

  padding:0 24px;

  border-radius:40px;

  background:
  linear-gradient(
  135deg,
  #7a0019,
  #b3002d
  );

  color:#fff;

  font-size:14px;

  font-weight:600;

  transition:.35s ease;

}

.location-btn:hover{

  transform:
  translateY(-3px);

}

/* TABLET */

@media(max-width:992px){

  .locations-grid{

    grid-template-columns:
    repeat(2,1fr);

  }

}

/* MOBILE */

@media(max-width:576px){

  .locations-section{

    padding:65px 16px;

  }

  .locations-grid{

    grid-template-columns:1fr;

    gap:22px;

  }

  .location-card{

    min-height:460px;

  }

  .location-overlay{

    padding:26px 22px;

  }

  .location-overlay p{

    font-size:13px;

  }

}
/* =========================
   LOCATIONS EDITORIAL SECTION
========================= */

.locations-editorial-section{

  position:relative;

  overflow:hidden;

  padding:95px 20px;

  background:

  radial-gradient(
  circle at top right,
  rgba(179,0,45,.14),
  transparent 30%
  ),

  radial-gradient(
  circle at bottom left,
  rgba(212,175,55,.06),
  transparent 26%
  ),

  linear-gradient(
  135deg,
  #14070c 0%,
  #21000f 48%,
  #0d0d0d 100%
  );

}

/* CONTAINER */

.locations-editorial-container{

  max-width:1200px;

  margin:auto;

  display:grid;

  grid-template-columns:
  1fr 1fr;

  gap:60px;

  align-items:center;

}

/* CONTENT */

.locations-editorial-content{

  position:relative;

  z-index:2;

}

/* TAG */

.locations-editorial-tag{

  display:inline-block;

  padding:10px 18px;

  border-radius:40px;

  background:
  rgba(255,255,255,.06);

  border:
  1px solid rgba(255,255,255,.08);

  color:var(--gold);

  font-size:13px;

  letter-spacing:1px;

  margin-bottom:22px;

}

/* TEXT */

.locations-editorial-content p{

  color:#d0d0d0;

  font-size:15px;

  line-height:1.9;

  margin-bottom:20px;

}

/* FEATURES */

.locations-editorial-features{

  display:grid;

  grid-template-columns:
  repeat(2,1fr);

  gap:16px;

  margin-top:34px;

}

.locations-editorial-feature{

  display:flex;

  align-items:center;

  gap:12px;

  color:#fff;

  font-size:14px;

}

.locations-editorial-feature i{

  color:var(--gold);

  font-size:13px;

}

/* IMAGE */

.locations-editorial-image-wrapper{

  position:relative;

}

.locations-editorial-image{

  position:relative;

  overflow:hidden;

  border-radius:32px;

}

.locations-editorial-image img{

  width:100%;

  height:520px;

  object-fit:cover;

  object-position:center;

  display:block;

}

.locations-editorial-image:hover img{

  transform:scale(1.05);

}

/* OVERLAY */

.locations-editorial-image::after{

  content:"";

  position:absolute;

  inset:0;

  background:
  linear-gradient(
  to top,
  rgba(0,0,0,.72),
  transparent 50%
  );

}

/* BADGE */

.locations-editorial-badge{

  position:absolute;

  left:22px;
  bottom:22px;

  z-index:5;

  padding:16px 18px;

  border-radius:22px;

  background:
  rgba(255,255,255,.08);

  border:
  1px solid rgba(255,255,255,.08);

  backdrop-filter:blur(14px);

}

.locations-editorial-badge span{

  display:block;

  color:#d8d8d8;

  font-size:12px;

  margin-bottom:6px;

}

.locations-editorial-badge strong{

  color:#fff;

  font-size:16px;

  font-weight:600;

}

/* TABLET */

@media(max-width:992px){

  .locations-editorial-section{

    padding:75px 20px;

  }

  .locations-editorial-container{

    grid-template-columns:1fr;

    gap:50px;

  }

  .locations-editorial-image img{

    height:520px;

  }

}

/* MOBILE */

@media(max-width:576px){

  .locations-editorial-section{

    padding:65px 16px;

  }

  .locations-editorial-tag{

    font-size:12px;

    padding:9px 16px;

  }

  .locations-editorial-content p{

    font-size:13px;

  }

  .locations-editorial-features{

    grid-template-columns:1fr;

    gap:14px;

  }

  .locations-editorial-image{

    border-radius:24px;

  }

  .locations-editorial-image img{

    height:420px;

  }

  .locations-editorial-badge{

    left:16px;
    bottom:16px;

    padding:14px 16px;

  }

}