/* Location Tab Component */
.location-tab {
  width: 100%;
}

.location-tab[hidden] {
  display: none;
}

.location-tab__content {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  padding: 2rem;
  background: var(--layer-layer-01, #f1f3f5);
  border: 1px solid rgba(18, 44, 61, 0.03);
  border-radius: 1rem;
}

@media (min-width: 1024px) {
  .location-tab__content {
    flex-direction: row;
    gap: 2.5rem;
    padding: 4rem 3.5rem;
  }
}

.location-tab__map {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 0.5rem;
  overflow: hidden;
}

@media (min-width: 1024px) {
  .location-tab__map {
    width: 516px;
    min-width: 516px;
    height: 400px;
    aspect-ratio: auto;
  }
}

.location-tab__iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.location-tab__info {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.location-tab__details {
  padding: 1rem;
}

.location-tab__location-name {
  font-family: var(--font-display, 'Booster Next FY', sans-serif);
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.2;
  color: #353535;
  margin: 0 0 1rem 0;
}

.location-tab__contact {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.location-tab__contact-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.location-tab__icon {
  width: 20px;
  height: 18px;
  color: #454545;
  flex-shrink: 0;
}

.location-tab__icon svg {
  width: 100%;
  height: 100%;
}

.location-tab__contact-text {
  font-family: var(--font-body, 'Lato', sans-serif);
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.5;
  color: #353535;
  letter-spacing: 0.02em;
}

.location-tab__divider {
  width: 100%;
  height: 1px;
  background: rgba(18, 44, 61, 0.1);
  margin: 0;
}

.location-tab__description {
  padding: 1rem;
  font-family: var(--font-body, 'Lato', sans-serif);
  font-size: 1rem;
  line-height: 1.5;
  color: #353535;
  letter-spacing: 0.02em;
}

.location-tab__description p {
  margin: 0;
}

.location-tab__description p + p {
  margin-top: 1rem;
}

.location-tab__description a {
  color: #175abd;
  text-decoration: none;
}

.location-tab__description a:hover,
.location-tab__description a:focus {
  text-decoration: underline;
}
