/* ============================================================
   page-gyeongsan-sirocco-fan.css — university-town regional page:
   scenario cards, procedure flow, spec glossary(dl), safety
   checklist cards, accordion FAQ. Hover animation only.
   ============================================================ */

:root {
  --cta-primary: #15803D;
  --cta-secondary: #F0FDF4;
  --gs-radius-sm: 8px;
  --gs-radius-md: 14px;
  --gs-radius-lg: 28px;
  --gs-divider: dashed 2px #BBF7D0;
}

body { font-family: 'Noto Sans KR', sans-serif; font-weight: 400; background: #F0FDF4; color: #14301F; }
h1, h2, h3 { font-family: 'Gaegu', sans-serif; font-weight: 700; color: #14532D; letter-spacing: -.01em; }

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

/* ---- hero ---- */
.hero { max-width: 820px; margin: 0 auto; padding: 56px 20px 32px; text-align: center; }
.hero h1 { font-size: clamp(1.8rem, 5vw, 2.5rem); margin-bottom: 14px; }
.hero p { font-size: 1.02rem; color: #2F5A3F; }

/* ---- generic section wrapper ---- */
.section { max-width: 980px; margin: 0 auto; padding: 48px 20px; }
.section h2 { font-size: 1.35rem; margin-bottom: 8px; }
.section h2::after { content: ""; display: block; width: 36px; height: 4px; background: #4ADE80; border-radius: 999px; margin-top: 10px; }
.section > p.lead { color: #2F5A3F; margin-bottom: 20px; max-width: 740px; }
.section p { color: #24462F; }

/* ---- scenario cards (hover lift, sole animation on page) ---- */
.scenario-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 18px; }
.scenario-card {
  background: #fff; border: 1px solid #BBF7D0; border-radius: var(--gs-radius-md);
  padding: 20px; transition: transform .18s ease, box-shadow .18s ease;
}
.scenario-card:hover { transform: translateY(-6px); box-shadow: 0 10px 22px rgba(21,128,61,.15); }
.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: 20px; }
.route-flow__step {
  flex: 1 1 150px; min-width: 140px; text-align: center;
  background: #fff; border: 2px solid #15803D; border-radius: var(--gs-radius-sm); padding: 14px;
}
.route-flow__step b { display: block; color: #14532D; font-size: .86rem; margin-bottom: 4px; }
.route-flow__step span { font-size: .8rem; color: #2F5A3F; }
.route-flow__arrow { font-size: 1.2rem; color: #15803D; font-weight: 700; flex: none; }

/* ---- spec / accessory glossary (dl) ---- */
.env-dl { margin-top: 18px; }
.env-dl dt { color: #14532D; font-weight: 700; font-size: 1rem; margin-top: 16px; }
.env-dl dt:first-child { margin-top: 0; }
.env-dl dd { color: #24462F; 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: 18px; }
.safety-card {
  background: #fff; border: 1px solid #BBF7D0; border-radius: var(--gs-radius-md);
  padding: 18px; transition: transform .18s ease, box-shadow .18s ease;
}
.safety-card:hover { transform: translateY(-6px); box-shadow: 0 10px 22px rgba(21,128,61,.15); }
.safety-card svg { color: #15803D; 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 #BBF7D0; border-radius: var(--gs-radius-sm);
  margin-bottom: 10px; padding: 14px 18px;
}
.loc-faq summary { font-weight: 700; color: #14532D; 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: 36px 16px; }
  .safety-grid { grid-template-columns: 1fr; }
  .route-flow__arrow { transform: rotate(90deg); }
}
