/* SydneyLove new Nightlife + Couples pages
   Add after main stylesheet if page cards need support. */

.sl-guide-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
  margin-bottom: clamp(34px, 5vw, 72px);
}

.sl-guide-hero img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 24px;
  display: block;
}

.sl-location-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(255px, 1fr));
  gap: clamp(16px, 2.4vw, 26px);
  margin: clamp(24px, 4vw, 52px) 0;
}

.sl-location-card {
  border-radius: 22px;
  padding: 20px;
  background: #ffffff;
  box-shadow: 0 14px 36px rgba(6, 47, 69, 0.10);
  border: 1px solid rgba(6, 47, 69, 0.08);
  min-width: 0;
}

.sl-location-card h3 {
  margin: 0 0 8px;
}

.sl-tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 10px 0 14px;
}

.sl-tag {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 6px 10px;
  background: rgba(164, 17, 87, 0.08);
  color: #8f174f;
  font-size: 0.82rem;
  font-weight: 800;
}

.sl-button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.sl-map-button,
.sl-guide-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 14px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 850;
  white-space: nowrap;
}

.sl-map-button {
  background: linear-gradient(90deg,#ff8756,#ff5d78);
  color: #ffffff;
  border: 0;
  box-shadow: 0 10px 26px rgba(0,0,0,.16);
}

.sl-guide-button {
  background: rgba(6, 47, 69, 0.08);
  color: #062f45;
}

.sl-rich-content {
  max-width: 920px;
  margin: clamp(42px, 7vw, 86px) auto 0;
}

.sl-rich-content p {
  line-height: 1.75;
  font-size: clamp(1rem, 1.45vw, 1.12rem);
}

@media (max-width: 780px) {
  .sl-guide-hero {
    grid-template-columns: 1fr;
  }

  .sl-location-grid {
    grid-template-columns: 1fr;
  }

  .sl-button-row {
    flex-direction: column;
  }

  .sl-map-button,
  .sl-guide-button {
    width: 100%;
  }
}`n