/* ==========================================================================
   Cities & Regions — page-unique styles
   ========================================================================== */

/* Intro split row */
.cr-intro-img {
  border-radius: var(--radius-lg);
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  box-shadow: var(--shadow-card);
}

/* Sectors connected grid */
.sector-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.sector-cell {
  padding: 1.5rem 1.3rem;
  border-inline-end: 1px solid var(--border);
  background: var(--white);
  transition: all 0.25s ease;
}
.sector-cell:last-child {
  border-inline-end: 0;
}
.sector-cell:hover {
  background: var(--bg-soft);
}
.sector-cell.is-active {
  border: 1.5px solid var(--primary);
  border-radius: var(--radius);
  box-shadow: 0 10px 30px rgba(91, 43, 224, 0.15);
}
.sector-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(91, 43, 224, 0.1);
  color: var(--primary);
  display: grid;
  place-items: center;
  font-size: 1.15rem;
  margin-bottom: 0.9rem;
}
.sector-cell.is-active .sector-icon {
  background: var(--primary);
  color: #fff;
}
.sector-cell h3 {
  font-size: 0.98rem;
  margin-bottom: 0.4rem;
}
.sector-cell p {
  font-size: 0.78rem;
  margin: 0;
  line-height: 1.6;
}

/* Filter-by chip */
.filter-by {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 0.4rem 1rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
}

/* Events dark panel */
.cr-events {
  background:
    radial-gradient(800px 400px at 85% 0%, rgba(139, 92, 246, 0.25), transparent),
    linear-gradient(135deg, var(--purple-section), var(--purple-section-2));
  color: #fff;
}
.cr-events h2 {
  color: #fff;
}
.cr-events .filter-by {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.18);
  color: #fff;
}
.event-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.event-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 0.9rem 1.1rem;
  transition: all 0.2s ease;
}
.event-row:hover {
  background: rgba(255, 255, 255, 0.12);
}
.event-row .ev-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(139, 92, 246, 0.25);
  color: #c4b5fd;
  display: grid;
  place-items: center;
  font-size: 1.05rem;
  flex-shrink: 0;
}
.event-row .ev-body {
  flex: 1;
}
.event-row .ev-body strong {
  display: block;
  color: #fff;
  font-size: 0.92rem;
}
.event-row .ev-body span {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.6);
}
.event-row .ev-go {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.1rem;
}
.cr-events-img {
  border-radius: var(--radius-lg);
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

/* Attraction cards */
.attraction-card .thumb {
  aspect-ratio: 16/10;
  object-fit: cover;
  width: 100%;
  border-radius: var(--radius);
  background: linear-gradient(135deg, #cdbff0, #a78bda);
}
.attraction-card h3 {
  font-size: 0.92rem;
  margin-top: 0.7rem;
}
