.location {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(28px, 3.3vw, 48px);
  width: 100%;
  padding: clamp(40px, 6.7vw, 96px) clamp(16px, 6.7vw, 96px);
  background: #fff;
}

.location__split {
  display: flex;
  align-items: flex-start;
  gap: clamp(24px, 3.9vw, 56px);
  width: 100%;
}

.location__map {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1.6;
  min-width: 0;
  aspect-ratio: 700 / 440;
  border-radius: 12px;
  background: #e7eff6;
  text-decoration: none;
  transition: background 0.15s ease;
}

.location__map:hover {
  background: #dce9f5;
}

.location__map span {
  font-size: 14px;
  font-weight: 600;
  color: #1a6df5;
}

.location__info {
  display: flex;
  flex-direction: column;
  gap: 18px;
  flex: 1;
  min-width: 0;
}

.location__addr {
  font-size: clamp(17px, 1.7vw, 24px);
  font-weight: 700;
  letter-spacing: -0.12px;
  color: #171b1e;
}

.location__tel {
  font-size: clamp(20px, 2.1vw, 30px);
  font-weight: 800;
  color: #1a6df5;
}

.hours-table {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  padding: 12px clamp(16px, 1.9vw, 28px);
  border: 1px solid #e3e7ea;
  border-radius: 8px;
  background: #fff;
}

.hours-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 13px 0;
  font-size: clamp(12px, 1.05vw, 15px);
}

.hours-day {
  font-weight: 500;
  color: #171b1e;
  white-space: nowrap;
}

.hours-time {
  font-weight: 400;
  color: #3d474f;
  text-align: right;
}

.hours-row--highlight .hours-day,
.hours-row--highlight .hours-time {
  font-weight: 600;
  color: #1b4b7e;
}

.hours-row--muted .hours-day,
.hours-row--muted .hours-time {
  color: #6b7680;
}

.hours-divider {
  height: 1px;
  background: #e3e7ea;
}

/* Mobile — node 65:1916 (stacked, tel centered above map) */
@media (max-width: 900px) {
  .location {
    padding: 48px 20px;
    gap: 24px;
  }

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

  .location__addr {
    display: none;
  }

  .location__tel {
    text-align: center;
  }

  .location__map {
    width: 100%;
    aspect-ratio: 327 / 180;
  }
}
