/*.scroll-pane {
  max-height: 80vh;
  overflow-y: auto;
  padding-right: 6px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
  position: relative;
}

.scroll-pane::-webkit-scrollbar {
  width: 8px;
}
.scroll-pane::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #cbd5e1 0%, #94a3b8 100%);
  border-radius: 8px;
}
.scroll-pane::-webkit-scrollbar-track {
  background: transparent;
}

.scroll-pane {
  scrollbar-width: thin;
  scrollbar-color: #94a3b8 transparent;
}

.scroll-pane::before,
.scroll-pane::after {
  content: "";
  position: sticky;
  left: 0;
  right: 0;
  height: 18px;
  pointer-events: none;
  z-index: 1;
}

.scroll-pane::before {
  top: 0;
  background: linear-gradient(to bottom, #f8fafc 80%, rgba(248, 250, 252, 0));
}

.scroll-pane::after {
  bottom: 0;
  background: linear-gradient(to top, #f8fafc 80%, rgba(248, 250, 252, 0));
}
*/
.location-news-magazine {
  display: grid;
  gap: 18px;
}

.location-news-lead {
  position: relative;
  overflow: hidden;
  border: 1px solid #dbe7f3;
  border-radius: 22px;
  padding: 26px 24px;
  background:
    radial-gradient(circle at top right, rgba(14, 165, 233, 0.16), transparent 30%),
    linear-gradient(135deg, #f8fbff 0%, #eef6ff 45%, #ffffff 100%);
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.08);
}

.location-news-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(14, 165, 233, 0.12);
  color: #0f5f92;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.location-news-date {
  color: #2563eb;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.location-news-lead-title {
  margin: 10px 0 12px;
  color: #0f172a;
  font-size: 1.55rem;
  line-height: 1.2;
  font-weight: 800;
}

.location-news-lead-snippet {
  margin: 0;
  color: #334155;
  font-size: 1rem;
  line-height: 1.75;
  max-width: 70ch;
}

.location-news-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.location-news-card {
  border: 1px solid #e5edf5;
  border-radius: 18px;
  padding: 18px 18px 20px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
}

.location-news-card-title {
  margin: 8px 0 10px;
  color: #111827;
  font-size: 1rem;
  line-height: 1.35;
  font-weight: 700;
}

.location-news-card-snippet {
  margin: 0;
  color: #4b5563;
  font-size: 0.94rem;
  line-height: 1.65;
}

@media (max-width: 767px) {
  .location-news-lead {
    padding: 22px 18px;
  }

  .location-news-lead-title {
    font-size: 1.25rem;
  }

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