/* Scoped under .map-box — safe to delete with the map module */

.map-box {
  margin-block: 2rem;
  width: 100%;
  padding: 1rem;
  border-radius: 0.75rem;
  background-color: rgba(var(--color-primary-100), 1);
  border: 1px solid rgba(var(--color-primary-300), 0.5);
}

.map-box__header {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.map-box__icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 9999px;
  background-color: rgba(var(--color-primary-500), 1);
  color: white;
  font-size: 1rem;
}

.map-box__icon .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.25rem;
  height: 1.25rem;
  line-height: 0;
}

.map-box__icon .icon svg {
  width: 1em;
  height: 1em;
  display: block;
}

.map-box__address {
  min-width: 0;
}

.map-box__title {
  margin: 0 0 0.25rem;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: rgba(var(--color-neutral-900), 1);
}

.map-box__venue,
.map-box__street,
.map-box__city {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.45;
  color: rgba(var(--color-neutral-700), 1);
}

.map-box__venue {
  font-weight: 600;
}

.map-box__frame {
  position: relative;
  width: 100%;
  height: 18rem;
  overflow: hidden;
  border-radius: 0.5rem;
  border: 1px solid rgba(var(--color-primary-300), 0.6);
  background-color: rgba(var(--color-neutral-200), 1);
}

.map-box__iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.map-box__footer {
  margin: 0.75rem 0 0;
}

.map-box__link {
  font-size: 0.8125rem;
  font-weight: 600;
  color: rgba(var(--color-primary-600), 1);
  text-decoration: none;
}

.map-box__link:hover {
  text-decoration: underline;
}
