.elementor-288 .elementor-element.elementor-element-1bbbd3e{--display:flex;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}/* Start custom CSS for html, class: .elementor-element-d80f526 *//* ==============================
   LOCATION SECTION
   ============================== */

.location-section {
  padding: 96px 24px;
  background: #fafaf9;
}

.location-container {
  max-width: 1200px;
  margin: 0 auto;
}

.location-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
}

/* ==============================
   LEFT CONTENT
   ============================== */

/* Eyebrow (Address) */
.location-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #78716c;
  margin-bottom: 18px;
  position: relative;
}

.location-eyebrow::after {
  content: "";
  display: block;
  width: 48px;
  height: 2px;
  margin-top: 10px;
  background: linear-gradient(
    135deg,
    var(--accent-start),
    var(--accent-end)
  );
  border-radius: 2px;
}

/* Title */
.location-title {
  font-size: clamp(2rem, 3.5vw, 2.6rem);
  font-weight: 500;
  margin-bottom: 24px;
  color: #1c1917;
}

/* Rating */
.location-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
}

.location-rating .stars {
  color: #facc15;
  font-size: 1.1rem;
  letter-spacing: 1px;
}

.location-rating .rating-text {
  font-size: 0.9rem;
  color: #57534e;
}

/* Text */
.location-description {
  font-size: 1rem;
  line-height: 1.75;
  color: #57534e;
  margin-bottom: 18px;
  max-width: 560px;
}

/* Link */
.location-link {
  display: inline-block;
  margin-top: 18px;
  font-weight: 600;
  text-decoration: none;
  background: linear-gradient(
    135deg,
    var(--accent-start),
    var(--accent-end)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ==============================
   RIGHT IMAGE
   ============================== */

.location-media {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.location-media img {
  width: 100%;
  max-width: 420px;
  height: auto;
  border-radius: 24px;
  object-fit: cover;
  box-shadow: 0 24px 60px rgba(0,0,0,0.14);
}

/* Gradient accent line under image */
.location-media-accent {
  display: block;
  width: 44px;
  height: 2px;
  margin: 16px auto 10px;
  background: linear-gradient(
    135deg,
    var(--accent-start),
    var(--accent-end)
  );
  border-radius: 2px;
}

/* Image eyebrow */
.location-media-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #78716c;
  text-align: center;
}

/* ==============================
   RESPONSIVE
   ============================== */

@media (max-width: 900px) {
  .location-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .location-content {
    text-align: center;
  }

  .location-eyebrow::after {
    margin-left: auto;
    margin-right: auto;
  }

  .location-rating {
    justify-content: center;
  }

  .location-media img {
    max-width: 100%;
  }
}/* End custom CSS */