.areas {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.service-areas {
  display: grid;
  gap: 2rem;
  align-items: stretch;
}

.service-areas__map {
  width: 100%;
  height: 100%;
  max-width: 403px;
  object-fit: contain;
  display: block;
}

.map {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  height: 100%;
}

@media (max-width: 1200px) {
  .map {
    min-width: 0;
    min-height: 0;
  }
}

.area-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 180px), 1fr));
  gap: 0.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.area-list__link {
  display: block;
  padding: 0.9rem 1rem;
  background: var(--blaze-color-grey);
  border-left: 4px solid var(--blaze-color-primary);
  text-decoration: none;
  font-weight: 800;
}

.area-lists {
  display: flex;
  flex-direction: column;

  padding: 0;
  list-style: none;
}

.area-lists li {
  display: flex;
  align-items: center;
  gap: 5px;
  max-height: 30px;
  border-radius: 0.25rem;
  flex: 1 1 180px;
  min-width: 180px;
}

.area-icon {
  width: 24px;
  height: 24px;
  object-fit: contain;
  flex-shrink: 0;
}
.section-header {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section-header .section-header__eyebrow {
  margin: 0;
  color: var(--blaze-color-black);
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: uppercase;
}

.section-header__description {
  color: var(--blaze-color-muted);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .area-lists li {
    flex: 1 1 100%;
    min-width: 100%;
  }
}

@media (max-width: 992px) {
  .service-areas {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .map {
    justify-content: center;
  }

  .service-areas__map {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .split__content {
    gap: 16px;
  }

  .section--why .container {
    padding: 16px 0;
  }

  .section-header {
    gap: 16px;
  }

  .split__text p {
    text-align: justify;
  }
}
