/* ===== SECTION: Location Longform START ===== */
#location-longform {
  position: relative;
  overflow: hidden;
  background-color: var(--bg-colour-2);
}

#location-longform h4 {
  padding-bottom: var(--space-xs);
}

#location-longform .internal {
  color: var(--main-brand-blue);
  text-decoration: underline;
}

#location-longform .container {
  max-width: 1100px;
}

#location-longform h2 {
  font-size: 2rem;
}

#location-longform::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(
      circle at 24% 15%,
      rgba(25, 200, 255, 0.14),
      transparent 34%
    ),
    radial-gradient(
      circle at 80% 52%,
      rgba(25, 200, 255, 0.08),
      transparent 38%
    );
}

.location-longform__layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(12rem, 19rem) minmax(0, 1fr);
  gap: 2rem;
  align-items: start;
}

.location-longform__media {
  position: sticky;
  top: 7rem;
}

.location-longform__media-card {
  overflow: hidden;
  border: 1px solid var(--border-colour-1);
  border-radius: 1.75rem;
  background:
    radial-gradient(
      circle at 50% 0%,
      rgba(25, 200, 255, 0.14),
      transparent 42%
    ),
    rgba(255, 255, 255, 0.035);
  box-shadow: var(--shadow-glow-soft);
}

.location-longform__media-card img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.location-longform__media-content {
  padding: var(--space-sm);
}

.location-longform__media-label {
  margin-bottom: var(--space-xs);
  color: var(--main-brand-blue);
  font-family: var(--headerFont);
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.location-longform__media-content h2 {
  font-size: clamp(1.25rem, 2vw, 1.55rem);
}

.location-longform__media-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-top: var(--space-sm);
  list-style: none;
}

.location-longform__media-list li {
  position: relative;
  padding-left: 1.6rem;
  color: var(--text-colour-1);
}

.location-longform__media-list li::before {
  content: "✓";
  position: absolute;
  top: 0.05rem;
  left: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background-color: var(--main-brand-blue);
  color: var(--bg-colour-1);
  font-size: 0.7rem;
  font-weight: 700;
}

.location-longform__article {
  max-width: 50rem;
}

.location-longform__hero,
.location-longform__block,
.location-longform__highlight,
.location-longform__cta {
  padding-bottom: var(--space-md);
  border-bottom: 1px solid var(--border-colour-2);
}

.location-longform__hero h1 {
  margin-top: var(--space-xs);
  font-size: clamp(2.6rem, 6vw, 5.5rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
}

.location-longform__hero h2 {
  margin-top: var(--space-smmd);
  font-size: clamp(1.7rem, 3vw, 2.4rem);
}

.location-longform__hero p,
.location-longform__block > p,
.location-longform__highlight p,
.location-longform__cta p {
  margin-top: var(--space-sm);
}

.location-longform__hero-actions {
  margin-top: var(--space-smmd);
}

.location-longform__block,
.location-longform__highlight,
.location-longform__cta {
  padding-top: var(--space-md);
}

.location-longform__lead {
  padding: var(--space-sm);
  border-left: 3px solid var(--main-brand-blue);
  border-radius: 0 1rem 1rem 0;
  background: rgba(25, 200, 255, 0.045);
  color: #fff !important;
  font-weight: 500;
  font-size: 1.1rem;
}

.location-longform__feature-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-smmd);
  margin-top: var(--space-smmd);
}

.location-longform__feature {
  padding: var(--space-smmd);
  border-radius: 1.25rem;
  background: rgba(255, 255, 255, 0.03);
}

.location-longform__feature h3 {
  margin-bottom: var(--space-sm);
  font-size: 1.4rem;
}

.location-longform__feature p + p {
  margin-top: var(--space-sm);
}

.location-longform__highlight {
  margin-top: 0;
}

.location-longform__highlight {
  padding-inline: var(--space-smmd);
  border: 1px solid var(--border-colour-1);
  border-radius: 1.5rem;
  background:
    radial-gradient(
      circle at 85% 15%,
      rgba(25, 200, 255, 0.12),
      transparent 38%
    ),
    rgba(25, 200, 255, 0.04);
}

.location-longform__pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-sm);
  margin-top: var(--space-smmd);
  margin-bottom: var(--space-smmd);
}

.location-longform__price-card {
  padding: var(--space-sm);
  border: 1px solid var(--border-colour-1);
  border-radius: 1.25rem;
  background: rgba(255, 255, 255, 0.035);
}

.location-longform__price-card h3 {
  font-size: 1.3rem;
}

.location-longform__price {
  margin-top: var(--space-sm) !important;
  margin-bottom: var(--space-sm);
  color: var(--main-brand-blue) !important;
  font-family: var(--headerFont);
  font-size: 1.25rem !important;
  font-weight: 600;
  line-height: 1.2 !important;
}

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

.location-longform__cta .cta__actions {
  margin-top: var(--space-smmd);
}

@media screen and (max-width: 768px) {
  .location-longform__layout {
    grid-template-columns: 1fr;
  }

  .location-longform__media {
    display: none;
  }

  .location-longform__article {
    max-width: 100%;
  }

  .location-longform__feature,
  .location-longform__highlight,
  .location-longform__stat-card {
    padding: var(--space-sm);
  }

  .location-longform__pricing-grid {
    grid-template-columns: 1fr;
  }
}
/* ===== SECTION: Location Longform END ===== */

/* Longform content lists */
.location-longform__feature ul,
.location-longform__block > ul {
  margin: 1rem 0 1.5rem;
  padding: 0;
  list-style: none;
}

.location-longform__feature li,
.location-longform__block > ul > li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.65rem;
  line-height: 1.6;
}

.location-longform__feature li:last-child,
.location-longform__block > ul > li:last-child {
  margin-bottom: 0;
}

.location-longform__feature li::before,
.location-longform__block > ul > li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--main-brand-blue);
}
