.tas-dest-city-why-map {
  --tas-content-gutter: 20px;
  padding: clamp(10px, 5vw, 24px) 0;
  background: var(--white);
}

.tas-dest-city-why-map__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(24px, 4vw, 40px);
  align-items: start;
  width: min(100% - calc(var(--tas-content-gutter) * 2), var(--layout-max-width));
  margin: 0 auto;
}

.tas-dest-city-why-map__heading {
  margin: 0 0 16px;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 600;
  line-height: 1.25;
  color: var(--primary);
}

.tas-dest-city-why-map__heading-accent {
  display: inline-flex;
  align-items: center;
  margin-left: 8px;
  color: var(--accent);
  font-size: 0.85em;
  vertical-align: middle;
}

.tas-dest-city-why-map__intro {
  margin: 0 0 clamp(24px, 3vw, 32px);
  max-width: 760px;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--text-muted);
}

.tas-dest-city-why-map__features {
  display: grid;
  gap: 28px 20px;
}

.tas-dest-city-why-map__features.cols-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.tas-dest-city-why-map__features.cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.tas-dest-city-why-map__features.cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.tas-dest-city-why-map__feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
}

.tas-dest-city-why-map__feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--accent-glow-sm, rgba(var(--accent-rgb), 0.12));
}

.tas-dest-city-why-map__icon,
.tas-dest-city-why-map__icon svg,
.tas-dest-city-why-map__icon .e-font-icon-svg,
.tas-dest-city-why-map__icon i,
.tas-dest-city-why-map__icon.tas-icon-img {
  display: block;
  width: 2.5rem;
  height: 2rem;
  font-size: 2rem;
  line-height: 1;
  color: var(--accent);
  fill: currentColor;
}
.tas-dest-city-why-map span.tas-dest-city-why-map__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
/* Beat tas-blocks-common 1em rule + Elementor inline size on uploaded SVG */
.tas-dest-city-why-map span.tas-dest-city-why-map__icon > svg:not(.e-font-icon-svg) {
  width: 2.95rem;
  height: 2.95rem;
  line-height: 2.85;
}

.tas-dest-city-why-map__icon.tas-icon-img {
  object-fit: contain;
  object-position: center;
}

/* True vector SVG paths — force accent */
.tas-dest-city-why-map__icon svg *:not([fill="none"]) {
  fill: currentColor !important;
}

.tas-dest-city-why-map__icon svg *[stroke]:not([stroke="none"]) {
  stroke: currentColor !important;
}

.tas-dest-city-why-map__feature-title {
  margin: 0;
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--primary);
}

.tas-dest-city-why-map__feature-desc {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.5;
  color: var(--text-muted);
}

.tas-dest-city-why-map__card {
  width: min(100%, 360px);
  margin-left: auto;
  padding: clamp(16px, 2.5vw, 22px);
  border: 1px solid rgba(var(--primary-rgb), 0.08);
  border-radius: 16px;
  background: var(--white);
  box-shadow: 0 8px 24px rgba(var(--primary-rgb), 0.06);
}

.tas-dest-city-why-map__card-title {
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.3;
  color: var(--primary);
}

.tas-dest-city-why-map__map {
  position: relative;
  width: 100%;
  aspect-ratio: 1123 / 942;
  margin: 0 auto 12px;
}

.tas-dest-city-why-map__map-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.tas-dest-city-why-map__pin {
  position: absolute;
  z-index: 1;
  transform: translate(-50%, -50%);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 8px;
  border-radius: 6px;
  background: rgba(var(--accent-rgb), 0.14);
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 600;
  white-space: nowrap;
}

.tas-dest-city-why-map__pin i {
  color: var(--accent);
}

.tas-dest-city-why-map__location {
  margin: 0 0 16px;
  text-align: center;
  font-size: 0.8125rem;
  line-height: 1.5;
  color: var(--text-muted);
}

.tas-dest-city-why-map__btn {
  width: 100%;
  justify-content: center;
}

@media (max-width: 991px) {
  .tas-dest-city-why-map__inner {
    grid-template-columns: 1fr;
  }

  .tas-dest-city-why-map__card {
    width: min(100%, 380px);
    margin-inline: auto;
  }

  .tas-dest-city-why-map__features.cols-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 575px) {
  .tas-dest-city-why-map__features.cols-4,
  .tas-dest-city-why-map__features.cols-3,
  .tas-dest-city-why-map__features.cols-2 {
    grid-template-columns: 1fr;
  }
}
