/* ==========================================================================
   VTA6 LOCATIONS DIRECTORY & DETAIL STYLES
   ========================================================================== */

/* --------------------------------------------------------------------------
   Locations Hero Section
   -------------------------------------------------------------------------- */
.locations-hero {
  position: relative;
  padding: var(--space-10) 0 var(--space-8);
  background: 
    radial-gradient(circle at 80% 20%, rgba(255, 85, 0, 0.12) 0%, transparent 50%),
    linear-gradient(180deg, rgba(20, 28, 38, 0.6) 0%, var(--color-bg) 100%);
  border-bottom: 1px solid var(--color-border);
  text-align: center;
}

.locations-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
}

.locations-badge {
  display: inline-block;
  background: rgba(255, 85, 0, 0.12);
  border: 1px solid rgba(255, 85, 0, 0.35);
  color: var(--color-accent);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: var(--space-3);
}

.locations-hero h1 {
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: var(--space-3);
  line-height: 1.15;
}

.gradient-text-vc {
  background: var(--gradient-fire);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.locations-hero-subtitle {
  font-size: clamp(16px, 2vw, 19px);
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin: 0 auto;
}


/* --------------------------------------------------------------------------
   Interactive Toolbar (Search & Filter)
   -------------------------------------------------------------------------- */
.locations-toolbar {
  margin: var(--space-6) 0 var(--space-8);
  background: rgba(16, 24, 32, 0.8);
  backdrop-filter: blur(12px);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-4) var(--space-5);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.toolbar-search-row {
  display: flex;
  gap: var(--space-3);
  align-items: center;
  flex-wrap: wrap;
}

.toolbar-search-wrap {
  position: relative;
  flex: 1;
  min-width: 260px;
}

.toolbar-search-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--color-text-muted);
  pointer-events: none;
}

.toolbar-search-input {
  width: 100%;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 10px 14px 10px 42px;
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 15px;
  transition: all 0.2s ease;
}

.toolbar-search-input:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(255, 107, 74, 0.15);
}

.toolbar-search-input::placeholder {
  color: var(--color-text-muted);
}

.toolbar-count-badge {
  color: var(--color-text-secondary);
  font-size: 13px;
  font-weight: 500;
  padding: 6px 12px;
  background: var(--color-surface-elevated);
  border-radius: var(--radius-full);
  border: 1px solid var(--color-border);
  white-space: nowrap;
}

.toolbar-filters-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  align-items: center;
}

.filter-group-label {
  font-size: 12px;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
  margin-right: var(--space-2);
}

.loc-filter-chip {
  padding: 6px 14px;
  border-radius: var(--radius-full);
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  color: var(--color-text-secondary);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  user-select: none;
}

.loc-filter-chip:hover {
  background-color: var(--color-surface-elevated);
  color: var(--color-text);
  border-color: var(--color-text-muted);
}

.loc-filter-chip.active {
  background: var(--gradient-fire);
  border-color: transparent;
  color: #fff;
  font-weight: 600;
  box-shadow: 0 4px 14px rgba(255, 85, 0, 0.35);
}

.loc-filter-chip .chip-count {
  display: inline-block;
  margin-left: 4px;
  font-size: 11px;
  opacity: 0.8;
}

/* --------------------------------------------------------------------------
   Locations Grid & Card UI
   -------------------------------------------------------------------------- */
.locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: var(--space-6);
  margin-bottom: var(--space-10);
}

.loc-card {
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, rgba(21, 31, 40, 0.9) 0%, rgba(15, 22, 30, 0.98) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), 
              border-color 0.25s ease, 
              box-shadow 0.25s ease;
  position: relative;
}

.loc-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 85, 0, 0.45);
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.6),
    0 0 30px rgba(255, 85, 0, 0.15);
}

.loc-card-media {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background-color: var(--color-surface-elevated);
}

.loc-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.loc-card:hover .loc-card-img {
  transform: scale(1.06);
}

.loc-card-overlay-top {
  position: absolute;
  top: 12px;
  left: 12px;
  right: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 2;
}

.loc-card-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 17, 23, 0.5) 0%, transparent 40%, rgba(11, 17, 23, 0.7) 100%);
  pointer-events: none;
}

.loc-card-biome {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(11, 17, 23, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--color-text-secondary);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 3px 8px;
  border-radius: var(--radius-sm);
  z-index: 2;
}

/* Category Badges on Cards */
.badge-type-region {
  background: rgba(255, 184, 0, 0.15);
  color: #FFB800;
  border: 1px solid rgba(255, 184, 0, 0.3);
}

.badge-type-city {
  background: rgba(255, 85, 0, 0.15);
  color: #FF6600;
  border: 1px solid rgba(255, 85, 0, 0.3);
}

.badge-type-landmark {
  background: rgba(230, 28, 28, 0.15);
  color: #FF4D4D;
  border: 1px solid rgba(230, 28, 28, 0.3);
}

/* Pulse indicator dots on badges */
.badge-status-confirmed {
  background: rgba(104, 185, 132, 0.2);
  color: #68b984;
  border: 1px solid rgba(104, 185, 132, 0.35);
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.badge-status-confirmed::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #68b984;
  box-shadow: 0 0 6px #68b984;
}

.badge-status-reported {
  background: rgba(66, 133, 244, 0.2);
  color: #60a5fa;
  border: 1px solid rgba(66, 133, 244, 0.35);
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.badge-status-reported::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #60a5fa;
}

.badge-status-speculation {
  background: rgba(245, 158, 11, 0.2);
  color: #fbbf24;
  border: 1px solid rgba(245, 158, 11, 0.35);
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.badge-status-speculation::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #fbbf24;
}

/* Card Body */
.loc-card-body {
  padding: var(--space-5);
  display: flex;
  flex-direction: column;
  flex: 1;
}

.loc-card-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 4px;
  line-height: 1.25;
  transition: color 0.2s ease;
}

.loc-card:hover .loc-card-title {
  color: #ff856b;
}

.loc-card-realworld {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--color-accent-secondary);
  font-weight: 500;
  margin-bottom: var(--space-3);
}

.loc-card-desc {
  font-size: 14px;
  color: var(--color-text-secondary);
  line-height: 1.55;
  margin-bottom: var(--space-4);
  flex-grow: 1;
}

/* Feature tags inside cards */
.loc-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: var(--space-4);
}

.loc-feature-tag {
  font-size: 11px;
  padding: 3px 8px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-sm);
  color: var(--color-text-muted);
}

/* Card Footer CTA */
.loc-card-footer {
  padding-top: var(--space-3);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.loc-card-cta {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-accent);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: transform 0.2s ease, color 0.2s ease;
}

.loc-card:hover .loc-card-cta {
  color: #ff856b;
  transform: translateX(4px);
}

.loc-card-sec-badge {
  font-size: 12px;
  color: var(--color-text-muted);
  font-family: monospace;
}

/* --------------------------------------------------------------------------
   Interactive Map Feature Banner (Locations Hub)
   -------------------------------------------------------------------------- */
.locations-map-feature {
  margin: var(--space-10) 0;
  background: 
    radial-gradient(circle at 10% 50%, rgba(255, 107, 74, 0.15) 0%, transparent 40%),
    radial-gradient(circle at 90% 50%, rgba(0, 229, 255, 0.12) 0%, transparent 40%),
    var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}

.loc-map-feature-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: var(--space-8);
  max-width: 680px;
  margin: 0 auto;
}

.loc-map-feature-content h2 {
  font-size: clamp(26px, 3.5vw, 34px);
  margin-bottom: var(--space-3);
}

.loc-map-feature-content p {
  font-size: 16px;
  color: var(--color-text-secondary);
  margin-bottom: var(--space-5);
  line-height: 1.6;
}

.loc-map-feature-visual {
  position: relative;
  height: 280px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background-image: linear-gradient(180deg, rgba(11, 17, 23, 0.3) 0%, rgba(11, 17, 23, 0.8) 100%), url('../assets/images/vice-city.jpg');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loc-map-radar-ring {
  width: 140px;
  height: 140px;
  border: 2px solid rgba(0, 229, 255, 0.4);
  border-radius: 50%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: radarRotate 8s linear infinite;
}

.loc-map-radar-ring::before {
  content: "";
  position: absolute;
  inset: -16px;
  border: 1px dashed rgba(0, 229, 255, 0.2);
  border-radius: 50%;
}

.loc-map-radar-pin {
  width: 14px;
  height: 14px;
  background-color: var(--color-accent);
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(255, 107, 74, 0.3);
}

@keyframes radarRotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* --------------------------------------------------------------------------
   Leonida Biomes & Ecosystems Section
   -------------------------------------------------------------------------- */
.biomes-section {
  margin: var(--space-10) 0;
}

.biomes-header {
  margin-bottom: var(--space-6);
}

.biomes-header h2 {
  font-size: clamp(24px, 3vw, 30px);
  margin-bottom: var(--space-2);
}

.biomes-header p {
  color: var(--color-text-secondary);
  font-size: 15px;
}

.biomes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--space-4);
}

.biome-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-4);
  transition: all 0.2s ease;
}

.biome-card:hover {
  background: var(--color-surface-elevated);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.biome-icon {
  font-size: 28px;
  margin-bottom: var(--space-2);
}

.biome-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 4px;
}

.biome-desc {
  font-size: 13px;
  color: var(--color-text-muted);
  line-height: 1.4;
  margin-bottom: 0;
}

/* --------------------------------------------------------------------------
   Location Detail Pages Layout & Profile Matrix
   -------------------------------------------------------------------------- */
.location-hero-header {
  margin-bottom: var(--space-6);
}

.location-breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--color-text-muted);
  margin-bottom: var(--space-3);
}

.location-breadcrumbs a {
  color: var(--color-accent-secondary);
}

.location-breadcrumbs a:hover {
  color: var(--color-accent);
}

.location-breadcrumbs-sep {
  opacity: 0.4;
}

.location-title-row {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-3);
  flex-wrap: wrap;
}

.location-title-row h1 {
  margin-bottom: 0;
  font-size: clamp(32px, 5vw, 48px);
}

.location-lead-text {
  font-size: clamp(16px, 2.2vw, 19px);
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin-bottom: var(--space-6);
}

/* Detail Featured Media */
.location-featured-media-wrap {
  position: relative;
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
  margin-bottom: var(--space-8);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
}

.location-featured-media-wrap img {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
}

.location-media-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-3) var(--space-5);
  background: linear-gradient(180deg, transparent 0%, rgba(11, 17, 23, 0.9) 100%);
  color: var(--color-text-secondary);
  font-size: 13px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Profile Matrix Box (Detail Page) */
.location-profile-matrix {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  margin-bottom: var(--space-8);
}

.location-profile-matrix-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: var(--space-4);
  display: flex;
  align-items: center;
  gap: var(--space-2);
  color: var(--color-text);
}

.profile-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-4);
}

.profile-item {
  background: var(--color-surface-elevated);
  padding: var(--space-3) var(--space-4);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.profile-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-text-muted);
  font-weight: 600;
  margin-bottom: 2px;
}

.profile-value {
  font-size: 15px;
  font-weight: 600;
  color: var(--color-text);
}

/* Nearby Locations Section */
.nearby-locations-section {
  margin-top: var(--space-10);
  padding-top: var(--space-8);
  border-top: 1px solid var(--color-border);
}

.nearby-locations-section h3 {
  font-size: 22px;
  margin-bottom: var(--space-5);
}

/* --------------------------------------------------------------------------
   Location Hub Articles & Guides Grid
   -------------------------------------------------------------------------- */
.location-articles-section {
  margin-top: var(--space-8);
  margin-bottom: var(--space-10);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
}

.location-articles-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: var(--space-6);
  flex-wrap: wrap;
  gap: var(--space-3);
  padding-bottom: var(--space-4);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.location-articles-title-group h2 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.location-articles-title-group p {
  color: var(--color-text-secondary);
  font-size: 14px;
  margin-bottom: 0;
}

.location-articles-count {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-accent);
  background: rgba(255, 85, 0, 0.1);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 85, 0, 0.25);
}

.location-articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-5);
}

.loc-article-card {
  display: flex;
  flex-direction: column;
  background: var(--color-surface-elevated);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.loc-article-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 85, 0, 0.4);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.4);
}

.loc-article-thumb-wrap {
  position: relative;
  width: 100%;
  height: 180px;
  overflow: hidden;
  background: #141c26;
}

.loc-article-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.loc-article-card:hover .loc-article-thumb {
  transform: scale(1.05);
}

.loc-article-badge-wrap {
  position: absolute;
  top: var(--space-3);
  left: var(--space-3);
  display: flex;
  gap: 6px;
}

.loc-article-readtime {
  position: absolute;
  bottom: var(--space-3);
  right: var(--space-3);
  background: rgba(11, 17, 23, 0.85);
  backdrop-filter: blur(6px);
  color: #E6EDF3;
  font-size: 11px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.loc-article-body {
  padding: var(--space-5);
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.loc-article-title {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.35;
  color: var(--color-text);
  margin-bottom: var(--space-2);
  transition: color 0.2s ease;
}

.loc-article-card:hover .loc-article-title {
  color: var(--color-accent);
}

.loc-article-excerpt {
  font-size: 13px;
  color: var(--color-text-secondary);
  line-height: 1.55;
  margin-bottom: var(--space-4);
  flex-grow: 1;
}

.loc-article-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--space-3);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 12px;
  color: var(--color-text-muted);
}

.loc-article-read-btn {
  color: var(--color-accent);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 4px;
}

/* --------------------------------------------------------------------------
   Sub-Article Layout, E-E-A-T & Google SEO Elements
   -------------------------------------------------------------------------- */
.article-author-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-4);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-4) var(--space-5);
  margin-bottom: var(--space-6);
}

.author-meta-group {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.author-avatar-img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--color-accent);
  background: #1d2633;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 16px;
  color: var(--color-accent);
}

.author-info-text {
  display: flex;
  flex-direction: column;
}

.author-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-text);
}

.author-role {
  font-size: 12px;
  color: var(--color-text-muted);
}

.article-updated-date {
  font-size: 12px;
  color: var(--color-text-secondary);
  display: flex;
  align-items: center;
  gap: 6px;
}

.article-toc-box {
  background: var(--color-surface-elevated);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-5);
  margin-bottom: var(--space-6);
}

.article-toc-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--space-3);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 8px;
}

.article-toc-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}

.article-toc-list a {
  color: var(--color-text-secondary);
  text-decoration: none;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.15s ease, transform 0.15s ease;
}

.article-toc-list a:hover {
  color: var(--color-accent);
  transform: translateX(4px);
}

.article-key-takeaways {
  background: linear-gradient(135deg, rgba(255, 85, 0, 0.08) 0%, rgba(20, 28, 38, 0.95) 100%);
  border: 1px solid rgba(255, 85, 0, 0.3);
  border-left: 4px solid var(--color-accent);
  border-radius: var(--radius-md);
  padding: var(--space-5);
  margin: var(--space-6) 0;
}

.article-key-takeaways h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--color-accent);
  margin-bottom: var(--space-3);
}

.article-key-takeaways ul {
  margin: 0;
  padding-left: var(--space-5);
  color: var(--color-text);
}

.article-key-takeaways li {
  margin-bottom: 6px;
  font-size: 14px;
  line-height: 1.5;
}

/* FAQ Accordion Styling */
.article-faq-section {
  margin-top: var(--space-8);
  padding-top: var(--space-6);
  border-top: 1px solid var(--color-border);
}

.faq-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-3);
  overflow: hidden;
}

.faq-card details {
  width: 100%;
}

.faq-card summary {
  padding: var(--space-4) var(--space-5);
  font-weight: 700;
  font-size: 15px;
  color: var(--color-text);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
}

.faq-card summary::-webkit-details-marker {
  display: none;
}

.faq-card summary::after {
  content: "+";
  font-size: 20px;
  font-weight: 700;
  color: var(--color-accent);
  transition: transform 0.2s ease;
}

.faq-card details[open] summary::after {
  content: "−";
  transform: rotate(180deg);
}

.faq-content {
  padding: 0 var(--space-5) var(--space-4);
  color: var(--color-text-secondary);
  font-size: 14px;
  line-height: 1.6;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

/* Directory Atlas badge */
.loc-card-articles-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 600;
  color: #FF9433;
  background: rgba(255, 85, 0, 0.12);
  border: 1px solid rgba(255, 85, 0, 0.3);
  padding: 3px 8px;
  border-radius: 4px;
  margin-top: var(--space-3);
}

/* --------------------------------------------------------------------------
   Responsive Breakpoints
   -------------------------------------------------------------------------- */
@media (max-width: 900px) {
  .loc-map-feature-inner {
    grid-template-columns: 1fr;
  }
  .loc-map-feature-visual {
    height: 200px;
  }
  .location-articles-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .locations-grid {
    grid-template-columns: 1fr;
  }
  .locations-stats-bar {
    grid-template-columns: 1fr 1fr;
  }
  .toolbar-search-row {
    flex-direction: column;
    align-items: stretch;
  }
  .toolbar-search-wrap {
    min-width: 100%;
  }
  .location-articles-section {
    padding: var(--space-5);
  }
}

