/* ============================================================
   page-gimhae-sirocco-fan.css — industrial-complex & airport-adjacent
   logistics regional page: scenario cards, procedure flow,
   spec glossary(dl), safety checklist cards, accordion FAQ.
   Hover animation only.
   ============================================================ */

:root {
  --cta-primary: #0369A1;
  --cta-secondary: #F0F9FF;
  --gh-radius-sm: 10px;
  --gh-radius-md: 16px;
  --gh-radius-lg: 30px;
  --gh-divider: solid 1px #BAE6FD;
}

body { font-family: 'Nanum Gothic', sans-serif; font-weight: 400; background: #F0F9FF; color: #0C2A3D; }
h1, h2, h3 { font-family: 'Nanum Gothic', sans-serif; font-weight: 800; color: #0C4A6E; letter-spacing: -.01em; }

main section + section { border-top: var(--gh-divider); }

/* ---- hero ---- */
.hero { max-width: 840px; margin: 0 auto; padding: 60px 20px 34px; text-align: center; }
.hero h1 { font-size: clamp(1.8rem, 5vw, 2.55rem); margin-bottom: 16px; }
.hero p { font-size: 1.02rem; color: #155E75; }

/* ---- generic section wrapper ---- */
.section { max-width: 1000px; margin: 0 auto; padding: 50px 20px; }
.section h2 { font-size: 1.36rem; margin-bottom: 8px; }
.section h2::after { content: ""; display: block; width: 42px; height: 4px; background: #38BDF8; border-radius: var(--gh-radius-sm); margin-top: 10px; }
.section > p.lead { color: #155E75; margin-bottom: 22px; max-width: 760px; }
.section p { color: #0F3A52; }

/* ---- scenario cards (hover lift, sole animation on page) ---- */
.scenario-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 20px; }
.scenario-card {
  background: #fff; border: 1px solid #BAE6FD; border-radius: var(--gh-radius-md);
  padding: 22px; transition: transform .18s ease, box-shadow .18s ease;
}
.scenario-card:hover { transform: translateY(-6px); box-shadow: 0 12px 24px rgba(3,105,161,.16); }
.scenario-card h3 { font-size: 1.08rem; margin-bottom: 8px; }
.scenario-card p { font-size: .92rem; }

/* ---- procedure flow ---- */
.route-flow { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; justify-content: center; margin-top: 22px; }
.route-flow__step {
  flex: 1 1 150px; min-width: 140px; text-align: center;
  background: #fff; border: 2px solid #0369A1; border-radius: var(--gh-radius-sm); padding: 15px;
}
.route-flow__step b { display: block; color: #0C4A6E; font-size: .86rem; margin-bottom: 4px; }
.route-flow__step span { font-size: .8rem; color: #155E75; }
.route-flow__arrow { font-size: 1.2rem; color: #0369A1; font-weight: 700; flex: none; }

/* ---- spec / accessory glossary (dl) ---- */
.env-dl { margin-top: 20px; }
.env-dl dt { color: #0C4A6E; font-weight: 700; font-size: 1rem; margin-top: 18px; }
.env-dl dt:first-child { margin-top: 0; }
.env-dl dd { color: #0F3A52; margin: 6px 0 0; font-size: .95rem; }

/* ---- safety checklist cards with SVG icons ---- */
.safety-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 20px; }
.safety-card {
  background: #fff; border: 1px solid #BAE6FD; border-radius: var(--gh-radius-md);
  padding: 18px; transition: transform .18s ease, box-shadow .18s ease;
}
.safety-card:hover { transform: translateY(-6px); box-shadow: 0 12px 24px rgba(3,105,161,.16); }
.safety-card svg { color: #0369A1; margin-bottom: 8px; }
.safety-card h3 { font-size: .98rem; margin-bottom: 6px; }
.safety-card p { font-size: .86rem; }

/* ---- accordion FAQ ---- */
.loc-faq details {
  background: #fff; border: 1px solid #BAE6FD; border-radius: var(--gh-radius-sm);
  margin-bottom: 10px; padding: 15px 20px;
}
.loc-faq summary { font-weight: 700; color: #0C4A6E; font-size: .98rem; cursor: pointer; }
.loc-faq p { margin-top: 8px; font-size: .92rem; }

/* ---- cta override (keep page bg on cta strip) ---- */
.cta { background: #fff; }

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

@media (max-width: 640px) {
  .scenario-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .section { padding: 38px 16px; }
  .safety-grid { grid-template-columns: 1fr; }
  .route-flow__arrow { transform: rotate(90deg); }
}
