/* ========== 오시는 길 (Location) ========== */
.section-location-main .location-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.4fr);
  gap: 32px;
  align-items: flex-start;
}

.location-info .location-address {
  margin-bottom: 10px;
}

.location-info .location-address span {
  color: #777;
}

.location-info .location-contact {
  margin-bottom: 16px;
}

.location-subcards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 8px;
}

.loc-card {
  padding: 12px 14px;
  border-radius: 12px;
  background: #fafafa;
  border: 1px solid #eee;
  line-height: 1.6;
}

.loc-card h3 {
  margin-bottom: 6px;
}

.location-map .map-embed {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #eee;
  box-shadow: 0 8px 24px rgba(0,0,0,0.04);
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

.location-map iframe {
  display: block;
  width: 100%;
  height: 420px;
  border: 0;
}

.map-links {
  margin-top: 14px;
}

.map-links h3 {
  margin-bottom: 8px;
}

.map-link-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 6px;
}

.map-note {
  color: #999;
}

.location-summary-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.loc-summary-card {
  border-radius: 16px;
  padding: 16px 18px;
  background: #fff;
  border: 1px solid #eee3d4;
  box-shadow: 0 6px 20px rgba(0,0,0,0.04);
  line-height: 1.7;
}

.loc-summary-card h3 {
  margin-bottom: 6px;
}

/* ========== Location Visuals (매장 사진/랜드마크/주차 안내) ========== */
.location-visuals .location-visuals-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}

.loc-visual-card {
  border-radius: 16px;
  padding: 16px 18px 18px;
  background: #fff;
  border: 1px solid #eee3d4;
  box-shadow: 0 6px 18px rgba(0,0,0,0.04);
  line-height: 1.7;
}

.loc-visual-card h3 {
  margin-bottom: 6px;
}

.loc-visual-img-wrap {
  margin: 10px 0 8px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #eee;
  background: #f6f6f6;
}

.loc-visual-img-wrap img {
  display: block;
  width: 100%;
  height: auto;
}

.loc-visual-note {
  color: #999;
}

.loc-visual-list {
  margin: 6px 0 0;
  padding-left: 16px;
  color: #666;
}

.loc-visual-list li {
  list-style: disc;
  margin-bottom: 2px;
}

/* Responsive */
@media (max-width: 768px) {
  .section-location-main .location-grid {
    grid-template-columns: 1fr;
  }
  .location-map iframe {
    height: 260px;
  }
  .loc-visual-card {
    padding: 14px 14px 16px;
  }
}
