/* 联系 page-contact.css */

.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 2.6rem; align-items: start; }
.contact-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 2rem; box-shadow: var(--shadow-soft); }
.contact-card h2, .contact-card h3 { margin-bottom: 1rem; }

/* 地图占位 */
.map-card { background: var(--warm); border: 1px solid var(--line); border-radius: var(--radius); padding: 2rem; margin-top: 2rem; }
.map-card .map-pin { width: 46px; height: 46px; border-radius: 12px; background: rgba(165,132,76,.12); color: var(--brass-deep); display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; }
.map-card .map-pin svg { width: 22px; height: 22px; }

/* 信息行 */
.info-rows { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: .4rem 1.3rem; }
.info-label { display: block; font-size: .8rem; color: var(--muted); margin-bottom: .1rem; }
.info-value { font-size: .95rem; color: var(--ink); }
.info-note { color: var(--muted); font-size: .85rem; margin-top: 1.2rem; line-height: 1.75; }

/* 位置 / 到访卡片 */
.location-card { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: center; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.4rem; box-shadow: var(--shadow-soft); }
.location-map img { width: 100%; border-radius: var(--radius-sm); border: 1px solid var(--line); aspect-ratio: 4 / 3; object-fit: cover; }
.location-body h3 { font-size: 1.15rem; margin-bottom: .6rem; }
.location-body > p { color: var(--muted); margin: 0 0 1.4rem; }

@media (max-width: 960px) {
  .contact-grid { grid-template-columns: 1fr; }
  .location-card { grid-template-columns: 1fr; }
}
