/* ================================================================
 * company.css - 회사소개 서브페이지
 *   CEO인사말, 조직도, 인증현황, 연혁, 타임라인, 어워드, 위치, 기업이념
 * Homepage CSS Module
 * ================================================================ */

/* ── ABOUT — IMPACT HISTORY ──────────────────────── */
#about {
  position: relative;
  overflow: hidden;
}
#about .section-label { margin-top:20px; }
.about-bg-year {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-size: clamp(20rem, 38vw, 38rem);
  font-weight: 900;
  color: rgba(255, 107, 0, 0.04);
  letter-spacing: -.05em;
  pointer-events: none;
  user-select: none;
  z-index: 0;
  line-height: 1;
  white-space: nowrap;
}
#about > * { position: relative; z-index: 1; }

/* about-grid */
.about-grid {
  display:grid; grid-template-columns:1fr 1fr; gap:60px; align-items:start;
  margin-top:24px;
  max-width:1100px; margin-left:auto; margin-right:auto; width:100%;
}
@media(max-width:900px) { .about-grid { grid-template-columns:1fr; } }

/* 세로 타임라인 (간단) */
.timeline { position:relative; padding-left:28px; }
.timeline::before {
  content:''; position:absolute; left:0; top:0; bottom:0;
  width:1px; background:var(--border);
}
.tl-item { position:relative; padding-bottom:32px; }
.tl-dot {
  position:absolute; left:-33px; top:4px;
  width:10px; height:10px; border-radius:50%;
  background:var(--accent);
  box-shadow:0 0 12px rgba(255,107,0,0.5);
}
.tl-year {
  font-size:.92rem;
  color:var(--accent); margin-bottom:6px; font-weight:700;
}
.tl-title { font-size:1.08rem; font-weight:700; margin-bottom:6px; }
.tl-desc { font-size:.9rem; color:var(--muted); line-height:1.7; }

/* 경영진 */
.exec-col {
  display:flex; flex-direction:column; gap:20px;
}
.ceo-card {
  background:var(--card); border:1px solid var(--border);
  border-radius:20px; padding:32px;
}
.ceo-photo {
  width:120px; height:120px;
  border-radius:50%;
  overflow:hidden;
  margin-bottom:20px;
  border:4px solid var(--accent);
  box-shadow: 0 0 0 6px rgba(255,107,0,0.12), 0 8px 32px rgba(0,0,0,0.12);
  background: var(--surface-input);
  display:flex; align-items:center; justify-content:center;
}
.ceo-photo img {
  width:100%; height:100%; object-fit:cover;
}
.ceo-photo svg {
  width:100%; height:100%;
}
.ceo-card blockquote {
  font-size:1rem; line-height:1.9; color:var(--muted);
  border-left:2px solid var(--accent); padding-left:20px;
  margin-bottom:24px; font-style:normal;
}
.ceo-name { font-weight:700; font-size:.95rem; }
.ceo-title { font-size:.82rem; color:var(--muted); margin-top:4px; }

/* ── 히스토리 스탯 ──────────────────────── */
.history-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  max-width: 920px;
  margin: 8px auto 36px;
  width: 100%;
}
.hstat {
  text-align: center;
  padding: 18px 14px;
  background: rgba(255,107,0,0.04);
  border: 1px solid rgba(255,107,0,0.18);
  border-radius: 14px;
  transition: transform .3s ease, border-color .3s ease;
}
.hstat:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
}
.hstat b {
  display: inline-block;
  font-size: clamp(2.2rem, 3.2vw, 3rem);
  font-weight: 900;
  background: var(--grad-accent);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}
.hstat .hstat-unit {
  font-size: .9rem;
  font-weight: 700;
  color: var(--accent);
  margin-left: 2px;
}
.hstat em {
  display: block;
  margin-top: 6px;
  font-size: .78rem;
  color: var(--muted);
  font-style: normal;
  letter-spacing: .02em;
}

@media (max-width: 480px) {
  .history-stats { grid-template-columns: repeat(2, 1fr); }
}

/* about section padding tighter for FHD 1viewport fit */
@media (min-width: 1101px) and (max-width: 1700px) {
  #about { padding: 90px 60px; }
  #about .section-title { font-size: clamp(1.8rem, 2.6vw, 2.3rem); margin-bottom: 12px; }
  #about .section-desc { margin-bottom: 20px; font-size: .9rem; }
  #about .history-stats { margin: 4px auto 18px; }
  .hstat { padding: 14px 12px; }
  .htl { margin: 8px 0 24px; }
  .htl-track { height: 480px; }
}

/* ── HORIZONTAL TIMELINE (HTL) ──────────────────────── */
.htl {
  position: relative;
  width: 100%;
  margin: 12px 0 40px;
}
.htl-viewport {
  overflow-x: auto;
  overflow-y: hidden;
  padding: 0 24px;
  scrollbar-width: none;
  cursor: grab;
  -webkit-mask: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
          mask: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
  user-select: none;
}
.htl-viewport::-webkit-scrollbar { display: none; }
.htl.is-dragging .htl-viewport { cursor: grabbing; }
.htl.is-dragging .htl-card { pointer-events: none; }

.htl-track {
  position: relative;
  display: flex;
  align-items: center;
  height: 520px;
  padding: 0 24px;
  width: max-content;
}
.htl-line {
  position: absolute;
  left: 0; right: 0;
  top: 50%;
  height: 3px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(255,107,0,.35) 4%,
    var(--accent) 50%,
    rgba(255,107,0,.35) 96%,
    transparent 100%);
  transform: translateY(-50%);
  border-radius: 999px;
  z-index: 0;
}

.htl-item {
  flex: 0 0 auto;
  min-width: 240px;
  max-width: 360px;
  width: max-content;
  height: 100%;
  display: grid;
  grid-template-rows: 1fr auto 1fr;
  align-items: center;
  justify-items: center;
  position: relative;
  padding: 0 8px;
  z-index: 1;
}

/* 마커 (가운데 점 + 연도) */
.htl-marker {
  grid-row: 2;
  position: relative;
  text-align: center;
  padding: 14px 0;
  z-index: 2;
}
.htl-marker::before {
  content: "";
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(255,107,0,.2), 0 0 16px rgba(255,107,0,.55);
  z-index: 0;
}
.htl-marker b {
  display: block;
  position: relative;
  font-size: 1.35rem;
  font-weight: 900;
  color: var(--accent);
  background: var(--bg);
  padding: 2px 14px;
  z-index: 1;
  letter-spacing: -.02em;
}

/* 카드 */
.htl-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 18px 20px;
  width: 240px;
  font-size: .88rem;
  line-height: 1.6;
  color: var(--text);
  position: relative;
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
  box-shadow: 0 4px 14px rgba(0,0,0,.08);
  overflow-y: auto;
  max-height: 200px;
}
.htl-card p { margin: 0; }

/* 카드 내 개별 항목 불릿 */
.htl-entry { position: relative; padding-left: 14px; }
.htl-entry + .htl-entry { margin-top: 10px; padding-top: 10px; border-top: 1px dashed rgba(255,107,0,.18); }
.htl-entry::before {
  content: "";
  position: absolute;
  left: 0; top: 6px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent, #ff6b00);
}
.htl-entry + .htl-entry::before { top: 16px; }

.htl-card .ms-badge {
  display: inline-block;
  margin-bottom: 8px;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .03em;
  padding: 3px 8px;
  border-radius: 999px;
  background: var(--grad-accent);
  color: #fff;
  box-shadow: 0 3px 10px rgba(255,107,0,.35);
}
.htl-item:hover .htl-card {
  transform: translateY(-3px);
  border-color: rgba(255,107,0,.5);
  box-shadow: 0 12px 30px rgba(255,107,0,.18);
}
.htl-item:hover .htl-marker::before {
  background: var(--grad-accent);
  width: 18px; height: 18px;
}

/* 카드 위치: 위/아래 */
.htl-up   .htl-card { grid-row: 1; align-self: end;   margin-bottom: 14px; }
.htl-down .htl-card { grid-row: 3; align-self: start; margin-top: 14px; }

/* 카드 -> 마커 연결선 */
.htl-up .htl-card::after,
.htl-down .htl-card::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 2px;
  background: linear-gradient(180deg, var(--accent), rgba(255,107,0,.2));
  transform: translateX(-50%);
}
.htl-up .htl-card::after  { top: 100%; height: 14px; }
.htl-down .htl-card::after { bottom: 100%; height: 14px;
  background: linear-gradient(0deg, var(--accent), rgba(255,107,0,.2)); }

/* 마일스톤 강조 */
.htl-item.milestone .htl-card {
  background: linear-gradient(135deg, rgba(255,107,0,.12), rgba(255,154,60,.05));
  border-color: rgba(255,107,0,.45);
  box-shadow: 0 8px 24px rgba(255,107,0,.18);
}
.htl-item.milestone .htl-marker::before {
  background: var(--grad-accent);
  width: 18px; height: 18px;
  box-shadow: 0 0 0 5px rgba(255,107,0,.22), 0 0 22px rgba(255,107,0,.7);
}
.htl-item.milestone .htl-marker b { color: var(--accent2); font-size: 1.25rem; }
.htl-item.founding .htl-card {
  background: linear-gradient(135deg, rgba(255,107,0,.22), rgba(255,154,60,.08));
  border-color: var(--accent);
}

/* 화이트 테마 보정 (타임라인) */
#about .htl-marker b,
#about .htl-marker i { background: var(--surface); }
#about .htl-card {
  background: var(--surface-card);
  border-color: var(--surface-border);
  color: var(--dark);
  box-shadow: var(--shadow-sm);
}
#about .htl-item.milestone .htl-card {
  background: linear-gradient(135deg, rgba(255,107,0,.09), rgba(255,154,60,.03));
  border-color: rgba(255,107,0,.4);
}
#about .htl-item.founding .htl-card {
  background: linear-gradient(135deg, rgba(255,107,0,.18), rgba(255,154,60,.04));
}

@media (max-width: 768px) {
  .htl-item { min-width: 170px; max-width: 260px; }
  .htl-track { height: 480px; }
  .htl-card { font-size: .78rem; padding: 12px 14px; width: 180px; max-height: 170px; }
}

/* ── CEO 인사말 (카드 스타일) ──────────────────────── */
.greeting-section {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 16px;
}
.greeting-card {
  background: var(--surface-card);
  border-radius: 1.5rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--surface-border);
  position: relative;
  overflow: hidden;
  padding: 48px 64px;
}
.greeting-blob {
  position: absolute;
  z-index: 0;
  top: -10%;
  right: -5%;
  width: 300px;
  height: 300px;
  background: var(--accent);
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.1;
  pointer-events: none;
}
.greeting-inner {
  position: relative;
  z-index: 1;
}
.greeting-photo {
  float: right;
  width: 180px;
  margin: 0 0 20px 32px;
}
.greeting-photo img {
  width: 100%;
  border-radius: 14px;
  object-fit: cover;
  box-shadow: 0 6px 24px rgba(0,0,0,0.1);
}
.greeting-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 32px;
}
.greeting-header-bar {
  width: 40px;
  height: 2px;
  background: var(--accent);
}
.greeting-header-label {
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 2px;
  font-size: .82rem;
  text-transform: uppercase;
}
.greeting-title {
  font-size: 2rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 48px;
  line-height: 1.4;
}
.greeting-title-accent {
  color: var(--accent);
}
.greeting-body {
  line-height: 2;
  margin-bottom: 0;
  color: var(--subtle);
  font-weight: 300;
  font-size: 1.05rem;
  word-break: keep-all;
}
.greeting-body p {
  margin-bottom: 2rem;
}
.greeting-body p:last-child {
  margin-bottom: 0;
}
.greeting-body .highlight {
  color: var(--accent);
  font-weight: 600;
}
.greeting-footer {
  margin-top: 64px;
  padding-top: 32px;
  border-top: 1px solid var(--surface-line);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
}
.greeting-footer-slogan {
  color: var(--surface-muted);
  font-size: .85rem;
  font-weight: 300;
}
.greeting-footer-sign {
  text-align: right;
}
.greeting-sincerely {
  color: var(--muted);
  margin-bottom: 4px;
  font-weight: 300;
  font-style: italic;
  font-size: .92rem;
}
.greeting-sign-name {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--dark);
  letter-spacing: -0.5px;
}
.greeting-sign-accent {
  color: var(--accent);
  font-weight: 300;
}

@media (max-width: 768px) {
  .greeting-card {
    padding: 32px 24px;
  }
  .greeting-photo {
    float: none;
    width: 140px;
    margin: 0 auto 20px;
  }
  .greeting-title {
    font-size: 1.4rem;
  }
  .greeting-footer {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }
  .greeting-footer-sign {
    text-align: right;
  }
  .greeting-sign-name {
    font-size: 1.4rem;
  }
}

/* ── 연혁 서브페이지 ──────────────────────── */
.history-page-wrap {
  max-width: 900px;
  margin: 0 auto;
}

/* 연도 필터 탭 */
.history-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin: 32px 0 40px;
  flex-wrap: wrap;
}
.htab {
  padding: 8px 20px;
  border: 1px solid var(--surface-border);
  border-radius: 20px;
  background: var(--surface-card);
  color: var(--surface-muted);
  font-size: .88rem;
  font-weight: 600;
  cursor: pointer;
  transition: all .2s;
}
.htab:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.htab.active {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

/* ── 세로 타임라인 (좌우 교차, 모던) ──────────────────────── */
.vtl {
  position: relative;
  padding: 40px 0 60px;
  max-width: 1100px;
  margin: 0 auto;
}
/* 중앙 세로선 */
.vtl::before {
  content: '';
  position: absolute;
  left: 50%; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, transparent 0%, var(--accent) 5%, var(--accent) 95%, transparent 100%);
  transform: translateX(-50%);
}
/* 한 행 = 3컬럼 그리드 */
.vtl-row {
  display: grid;
  grid-template-columns: 1fr 60px 1fr;
  align-items: start;
  margin-bottom: 16px;
}
.vtl-row.vtl-hidden { display: none; }

/* 왼쪽 / 오른쪽 영역 */
.vtl-side { padding: 8px 0; }
.vtl-side-l { text-align: right; padding-right: 20px; }
.vtl-side-r { text-align: left; padding-left: 20px; }

/* 연도 표시 (카드 반대편) */
.vtl-year-box {
  display: flex;
  align-items: center;
  height: 100%;
  min-height: 60px;
}
.vtl-left .vtl-side-r .vtl-year-box { justify-content: flex-start; }
.vtl-right .vtl-side-l .vtl-year-box { justify-content: flex-end; }
.vtl-year {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--accent);
  letter-spacing: -1px;
  line-height: 1;
}

/* 가운데 점 */
.vtl-center {
  display: flex;
  justify-content: center;
  padding-top: 14px;
  position: relative;
  z-index: 2;
}
.vtl-dot {
  width: 14px; height: 14px;
  background: var(--surface-card);
  border: 3px solid var(--surface-muted);
  border-radius: 50%;
  transition: all .35s;
  flex-shrink: 0;
}
.vtl-dot-major {
  width: 18px; height: 18px;
  background: var(--accent);
  border-color: var(--accent);
  box-shadow: 0 0 0 5px rgba(255,107,0,0.12);
}
.vtl-row:hover .vtl-dot {
  border-color: var(--accent);
  transform: scale(1.3);
}

/* 카드 */
.vtl-card {
  background: var(--surface-card);
  border: 1px solid var(--surface-border);
  border-radius: 16px;
  padding: 24px 28px;
  box-shadow: var(--shadow-sm);
  transition: all .35s cubic-bezier(.22,1,.36,1);
  text-align: left;
}
.vtl-card.vtl-highlight {
  border-left: 3px solid var(--accent);
}
.vtl-right .vtl-card.vtl-highlight {
  border-left: 3px solid var(--accent);
}
.vtl-left .vtl-card.vtl-highlight {
  border-left: none;
  border-right: 3px solid var(--accent);
}
.vtl-row:hover .vtl-card {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
  border-color: rgba(255,107,0,0.2);
}
.vtl-left .vtl-row:hover .vtl-card,
.vtl-left:hover .vtl-card {
  transform: translateY(-3px);
}
.vtl-card p {
  font-size: 1.05rem;
  color: var(--surface-text);
  line-height: 1.7;
  margin: 0;
}
.vtl-badge {
  display: inline-block;
  padding: 3px 14px;
  background: var(--accent);
  color: #fff;
  font-size: .75rem;
  font-weight: 700;
  border-radius: 20px;
  margin-bottom: 10px;
  letter-spacing: .3px;
}

/* 모바일: 단일 컬럼 */
@media (max-width: 768px) {
  .vtl::before { left: 24px; }
  .vtl-row {
    grid-template-columns: 48px 1fr;
    margin-bottom: 12px;
  }
  .vtl-side-l { display: none; }
  .vtl-side-r { display: block !important; padding-left: 16px; text-align: left; }
  .vtl-right .vtl-side-l { display: none; }
  .vtl-right .vtl-side-r .vtl-card { display: block; }
  .vtl-left .vtl-side-r { display: block; }
  .vtl-left .vtl-side-r .vtl-year-box { display: none; }
  .vtl-center { padding-top: 18px; }
  .vtl-year-box { min-height: auto; }
  .vtl-card::before {
    content: attr(data-year);
    display: block;
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 6px;
  }
  .vtl-left .vtl-card.vtl-highlight { border-left: 3px solid var(--accent); border-right: none; }
}

/* ── 연혁 리스트형 ──────────────────────── */
/* 연도 필터 박스 탭 */
.htab-box {
  display: inline-block;
  padding: 14px 28px;
  font-size: 1.05rem;
  font-weight: 700;
  border: 2px solid var(--surface-line);
  background: var(--surface-card);
  color: var(--surface-muted);
  cursor: pointer;
  transition: all .2s;
  border-radius: 8px;
}
.htab-box:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.htab-box.active {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

/* ── 빅넘버형 연혁 ──────────────────────── */
.history-list.bignum {
  max-width: 900px;
  margin: 0 auto;
  padding: 20px 0;
}
.history-list.bignum .history-group {
  position: relative;
  display: flex;
  align-items: flex-start;
  padding: 48px 0 40px;
  border-bottom: 1px solid var(--surface-border);
}
.history-list.bignum .history-group:first-child { padding-top: 24px; }
.history-list.bignum .history-group:last-child { border-bottom: none; }
.history-list.bignum .history-group.history-hidden { display: none; }

/* 빅넘버 연도 */
.history-bignum {
  width: 220px;
  flex-shrink: 0;
  padding-right: 32px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
}
.history-bignum-year {
  font-size: 4.5rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -3px;
  color: var(--accent);
  white-space: nowrap;
}

/* 아이템 목록 */
.history-list.bignum .history-items {
  flex: 1;
  padding-left: 24px;
  border-left: 2px solid rgba(81,168,168,0.2);
}
.history-list.bignum .history-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 6px 0;
}
.history-item-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  margin-top: 8px;
}
.history-list.bignum .history-item p {
  font-size: 1.02rem;
  color: var(--subtle);
  line-height: 1.8;
  margin: 0;
}

@media (max-width: 768px) {
  .history-tabs { flex-wrap: wrap; }
  .htab-box { padding: 10px 16px; font-size: 0.9rem; }
  .history-list.bignum .history-group {
    flex-direction: column;
    gap: 12px;
    padding: 32px 0;
  }
  .history-bignum { width: auto; position: relative; height: 50px; }
  .history-bignum-year { font-size: 3.5rem; top: -8px; }
  .history-list.bignum .history-items { padding-left: 16px; }
}

/* ── 조직도 ──────────────────────── */
.org-chart-wrap {
  max-width: 1100px;
  margin: 0 auto;
}
.org-chart-img {
  margin-top: 32px;
  text-align: center;
}
.org-chart-img img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}

/* ── 인증현황 ──────────────────────── */
.certification-wrap {
  max-width: 1200px;
  margin: 0 auto;
}
.cert-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 24px;
  margin-top: 40px;
}
.cert-card {
  background: var(--surface-card);
  border: 1px solid var(--surface-line);
  border-radius: 12px;
  padding: 16px;
  text-align: center;
  transition: transform .3s, box-shadow .3s;
  cursor: pointer;
}
.cert-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.1);
}
.cert-img {
  width: 100%;
  height: 280px;
  object-fit: contain;
  border-radius: 8px;
  cursor: pointer;
}

/* ── 기업 이념 ──────────────────────── */
.philosophy-wrap {
  max-width: 1200px;
  margin: 0 auto;
}
.phil-section {
  margin-bottom: 56px;
  text-align: center;
  scroll-snap-align: none;
  min-height: auto;
  padding: 0;
  display: block;
}
.phil-title {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: 2px;
  margin-bottom: 24px;
  position: relative;
  display: inline-block;
}
.phil-title::after {
  content: '';
  display: block;
  width: 40px;
  height: 3px;
  background: var(--accent);
  margin: 10px auto 0;
  border-radius: 2px;
}
.phil-img-wrap {
  background: var(--surface-card);
  border: 1px solid var(--surface-border);
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.phil-img-wrap img {
  width: 100%;
  height: auto;
  display: block;
}

/* ── 오시는길 ──────────────────────── */
.location-page-wrap {
  max-width: 1000px;
  margin: 0 auto;
}
.location-map-page {
  width: 100%;
  height: 420px;
  border-radius: 16px;
  overflow: hidden;
  background: #e8e8e8;
  margin-top: 24px;
}
.location-map-page iframe {
  display: block;
  width: 100%;
  height: 100%;
}
.location-map-actions {
  text-align: right;
  margin-top: 12px;
}
.map-link-page {
  display: inline-block;
  padding: 10px 22px;
  background: var(--surface-card);
  color: var(--accent);
  font-size: .88rem;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  border: 1px solid rgba(255,107,0,0.2);
  transition: all .2s;
}
.map-link-page:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.location-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.loc-info-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 28px;
  background: var(--surface-card);
  border: 1px solid var(--surface-border);
  border-radius: 14px;
  box-shadow: var(--shadow-sm);
  transition: all .2s;
}
.loc-info-card:hover {
  border-color: rgba(255,107,0,0.25);
  transform: translateY(-2px);
}
.loc-info-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,107,0,0.1);
  color: var(--accent);
  flex-shrink: 0;
}
.loc-info-card h4 {
  font-size: .88rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--dark);
}
.loc-info-card p {
  font-size: .84rem;
  color: var(--muted);
  line-height: 1.7;
}
.loc-info-card a {
  color: var(--accent);
  text-decoration: none;
}
@media (max-width: 768px) {
  .location-info-grid { grid-template-columns: 1fr; }
  .location-map-page { height: 300px; }
}
