/* ============================================================
   O Eyecare — 2026 UI Renewal · "Insurance" page styles
   New file (never edit the shared oeyecare-2026.css). Loaded in
   addition to the base design system by layout_insurance.jsp.
   Design source: claude-design-2026/insurance.html · insurance-page.jsx
   ============================================================ */

/* ------------------------------------------------------------
   Solid header over the colored hero (design: <OEHeader solid />).
   Same technique as the doctor page: replicate the base
   `.oe-header.is-solid` look, scoped to the page body class, so the
   shared header.jsp / base CSS stay untouched.
   ------------------------------------------------------------ */
.oe-ins-page .oe-header {
  background: rgba(246, 241, 233, .92);
  backdrop-filter: saturate(140%) blur(10px);
  box-shadow: 0 1px 0 var(--border-subtle);
}
.oe-ins-page .oe-header .oe-nav__link,
.oe-ins-page .oe-header .oe-nav__caret,
.oe-ins-page .oe-header .oe-header__phone,
.oe-ins-page .oe-header .oe-lang__toggle,
.oe-ins-page .oe-header .oe-header__burger {
  color: var(--ink-900);
}
.oe-ins-page .oe-header .oe-brand__tag { color: var(--text-muted); }
.oe-ins-page .oe-header .oe-brand__logo--white { display: none; }
.oe-ins-page .oe-header .oe-brand__logo--ink { display: block; }
.oe-ins-page .oe-header .oe-header__book { color: var(--ink-900); border-color: var(--ink-900); }
.oe-ins-page .oe-header .oe-header__book:hover { background: var(--ink-900); color: #fff; }

/* ------------------------------------------------------------
   Hero — clay band with a faint repeating insurance-logo pattern
   ------------------------------------------------------------ */
.oe-ins-hero {
  position: relative;
  overflow: hidden;
  background: var(--clay-500);
  color: #fff;
}
.oe-ins-hero__pattern {
  position: absolute;
  inset: 0;
  background-image: url(/oeyecare/images/insurance_logos_white.png);
  background-repeat: repeat;
  background-size: 360px auto;
  opacity: .12;
}
.oe-ins-hero__inner {
  position: relative;
  padding-top: 128px;
  padding-bottom: 88px;
  max-width: 860px;
}
.oe-ins-hero__eyebrow {
  font-family: var(--font-label);
  font-size: 13px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .72);
  margin: 0 0 22px;
}
.oe-ins-hero__title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 52px;
  line-height: 1.05;
  letter-spacing: -.02em;
  color: #fff;
}
.oe-ins-hero__lead {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255, 255, 255, .9);
  margin: 26px 0 0;
  max-width: 620px;
}
.oe-ins-hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

/* ------------------------------------------------------------
   Accepted plans — logo / name cards, 3-up grid
   ------------------------------------------------------------ */
.oe-ins-accepted {
  background: var(--surface-card);
  padding: 72px 0;
}
.oe-ins-accepted__head { margin-bottom: 44px; }
.oe-ins-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.oe-ins-card {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 128px;
  padding: 22px 28px;
  background: var(--surface-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
}
.oe-ins-card img {
  width: 100%;
  height: auto;
  max-height: 96px;
  object-fit: contain;
  display: block;
}
.oe-ins-card__name {
  font-family: var(--font-label);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--ink-900);
}
.oe-ins-note {
  margin-top: 32px;
}
.oe-ins-note p {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-muted);
  margin: 0;
  /* 컨테이너(.oe-wrap ~1160px) 폭까지 사용 → PC에서 한 줄. 좁은 화면은 자연 줄바꿈. */
}
.oe-ins-note a {
  color: var(--ink-900);
  font-weight: 600;
  white-space: nowrap;
}

/* ------------------------------------------------------------
   Closing CTA band (dark)
   ------------------------------------------------------------ */
.oe-ins-cta {
  background: var(--ink-900);
  color: #fff;
  padding: 80px 0;
}
.oe-ins-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.oe-ins-cta__title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 38px;
  line-height: 1.1;
  letter-spacing: -.01em;
  margin: 0;
}
.oe-ins-cta__sub {
  font-family: var(--font-body);
  font-size: 17px;
  opacity: .82;
  margin-top: 12px;
}

/* ------------------------------------------------------------
   Responsive ( <= 760px ) — mirrors insurance.html mobile rules
   ------------------------------------------------------------ */
@media (max-width: 760px) {
  .oe-ins-hero__inner { padding-top: 118px; }
  .oe-ins-hero__title { font-size: 36px; }
  .oe-ins-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .oe-ins-cta__title { font-size: 30px; }
}
