#ysEmergencyGuideV2,
#ysEmergencyGuideV2 * {
  box-sizing: border-box;
}

#ysEmergencyGuideV2 {
  --ys-bg: #F8F5EC;
  --ys-deep: #223226;
  --ys-green: #718a5e;
  --ys-green-dark: #506c44;
  --ys-sage: #c7d8a8;
  --ys-ivory: #F8F5EC;

  --ys-red: #A73A32;
  --ys-red-dark: #7E2924;
  --ys-red-soft: rgba(167, 58, 50, 0.12);
  --ys-red-line: rgba(167, 58, 50, 0.32);

  --ys-text: rgba(34, 50, 38, 0.82);
  --ys-muted: rgba(34, 50, 38, 0.62);
  --ys-soft: rgba(34, 50, 38, 0.42);
  --ys-line: rgba(34, 50, 38, 0.11);

  --ys-container: 1760px;
  --ys-page-gutter: clamp(30px, 4vw, 76px);
  --ys-inner-width: min(var(--ys-container), calc(100% - (var(--ys-page-gutter) * 2)));

  --fs-kicker: 11px;
  --fs-body: clamp(15px, 0.96vw, 17px);
  --fs-title: clamp(34px, 2.65vw, 48px);
  --fs-title-lg: clamp(36px, 3vw, 56px);
  --fs-card-title: clamp(20px, 1.42vw, 26px);

  position: relative;
  width: 100vw;
  min-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);

  overflow: visible;
  isolation: isolate;

  color: var(--ys-deep);
  font-family: "Pretendard", "Noto Sans KR", sans-serif;

  background: var(--ys-bg);
}

#ysEmergencyGuideV2 a {
  color: inherit;
  text-decoration: none;
}

#ysEmergencyGuideV2 img,
#ysEmergencyGuideV2 svg {
  display: block;
}

#ysEmergencyGuideV2 p,
#ysEmergencyGuideV2 h2,
#ysEmergencyGuideV2 h3,
#ysEmergencyGuideV2 strong,
#ysEmergencyGuideV2 li,
#ysEmergencyGuideV2 span,
#ysEmergencyGuideV2 em {
  word-break: keep-all;
  overflow-wrap: break-word;
}

@supports (text-wrap: balance) {
  #ysEmergencyGuideV2 h2,
  #ysEmergencyGuideV2 h3,
  #ysEmergencyGuideV2 .ys-section-head p,
  #ysEmergencyGuideV2 .ys-emergency-board-head p {
    text-wrap: balance;
  }
}

/* =========================================================
  BACKGROUND
========================================================= */

#ysEmergencyGuideV2 .ys-emergency-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

#ysEmergencyGuideV2 .ys-emergency-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.035;
  background-image: linear-gradient(to right, rgba(34, 50, 38, 0.045) 1px, transparent 1px);
  background-size: 19.2% 100%;
}

#ysEmergencyGuideV2 .ys-emergency-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.02;
  mix-blend-mode: multiply;
  background-image:
    radial-gradient(circle at 18% 20%, rgba(53,68,50,0.28) 0 1px, transparent 1px),
    radial-gradient(circle at 80% 70%, rgba(167,58,50,0.22) 0 1px, transparent 1px);
  background-size: 36px 42px, 58px 64px;
}

#ysEmergencyGuideV2 .ys-emergency-orb {
  position: absolute;
  display: block;
  border-radius: 999px;
  filter: blur(58px);
}

#ysEmergencyGuideV2 .orb-01 {
  width: 660px;
  height: 660px;
  left: 42%;
  top: -4%;
  background: rgba(184, 219, 166, 0.06);
}

#ysEmergencyGuideV2 .orb-02 {
  width: 620px;
  height: 620px;
  right: -190px;
  top: 23%;
  background: rgba(167, 58, 50, 0.07);
}

#ysEmergencyGuideV2 .orb-03 {
  width: 620px;
  height: 420px;
  left: -180px;
  bottom: 3%;
  background: rgba(224, 232, 198, 0.075);
}

#ysEmergencyGuideV2 .ys-emergency-inner {
  position: relative;
  z-index: 2;
  width: var(--ys-inner-width);
  margin: 0 auto;
  padding: clamp(84px, 7vw, 128px) 0 clamp(100px, 8vw, 150px);
}

/* =========================================================
  REVEAL
========================================================= */

#ysEmergencyGuideV2 .ys-emergency-reveal {
  opacity: 0;
  transform: translateY(34px);
  filter: blur(10px);
  transition:
    opacity 0.9s cubic-bezier(.22, 1, .36, 1),
    transform 0.9s cubic-bezier(.22, 1, .36, 1),
    filter 0.9s cubic-bezier(.22, 1, .36, 1);
}

#ysEmergencyGuideV2 .ys-emergency-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

/* =========================================================
  COMMON
========================================================= */

#ysEmergencyGuideV2 .ys-emergency-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(34, 50, 38, 0.48);
  letter-spacing: 0.22em;
  font-size: var(--fs-kicker);
  font-weight: 760;
  line-height: 1.3;
  text-transform: uppercase;
  white-space: nowrap;
}

#ysEmergencyGuideV2 .ys-emergency-kicker::before {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
  opacity: 0.72;
}

#ysEmergencyGuideV2 .ys-section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.55fr) minmax(360px, 0.45fr);
  gap: 40px;
  align-items: end;
  margin-bottom: clamp(36px, 4vw, 72px);
}

#ysEmergencyGuideV2 .ys-section-head h2,
#ysEmergencyGuideV2 .ys-info-copy h2,
#ysEmergencyGuideV2 .ys-night-copy h2,
#ysEmergencyGuideV2 .ys-gateway-copy h2 {
  margin: 0;
  color: var(--ys-deep);
  font-family: "Noto Serif KR", "Nanum Myeongjo", serif;
  font-size: var(--fs-title);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.064em;
}

#ysEmergencyGuideV2 .ys-section-head p {
  margin: 0;
  max-width: 600px;
  color: var(--ys-muted);
  font-size: var(--fs-body);
  line-height: 1.78;
  letter-spacing: -0.03em;
}

/* =========================================================
  MAIN
========================================================= */

#ysEmergencyGuideV2 .ys-emergency-main {
  display: grid;
  grid-template-columns: minmax(410px, 0.38fr) minmax(0, 0.62fr);
  gap: clamp(24px, 3vw, 52px);
  align-items: stretch;
}

#ysEmergencyGuideV2 .ys-emergency-summary {
  position: relative;
  min-height: 640px;
  padding: clamp(32px, 3vw, 54px);

  display: flex;
  flex-direction: column;
  justify-content: space-between;

  color: #F8F5EC;

  background:
    radial-gradient(circle at 14% 12%, rgba(199, 216, 168, 0.22), transparent 34%),
    radial-gradient(circle at 92% 90%, rgba(167, 58, 50, 0.18), transparent 40%),
    linear-gradient(145deg, #1f2d22 0%, #2d3d2d 50%, #151f18 100%);

  border-radius: 38px;
  overflow: hidden;
  isolation: isolate;

  box-shadow:
    0 34px 120px rgba(34, 50, 38, 0.20),
    inset 0 1px 0 rgba(255,255,255,0.10);
}

#ysEmergencyGuideV2 .ys-emergency-summary-photo {
  position: absolute;
  inset: 0;
  z-index: -2;

  background-image:
    linear-gradient(
      90deg,
      rgba(31,45,34,0.98) 0%,
      rgba(31,45,34,0.90) 42%,
      rgba(31,45,34,0.62) 100%
    ),
    url("https://bienamc.com/wp-content/uploads/2026/05/menu_bg_002.jpg");
  background-size: cover;
  background-position: center center;

  opacity: 0.34;
}

#ysEmergencyGuideV2 .ys-emergency-summary::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.08;
  background-image:
    linear-gradient(to right, rgba(245,241,232,0.16) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(245,241,232,0.10) 1px, transparent 1px);
  background-size: 72px 72px;
}

#ysEmergencyGuideV2 .ys-emergency-logo-wrap {
  width: min(250px, 82%);
}

#ysEmergencyGuideV2 .ys-emergency-logo-wrap img {
  width: 100%;
  height: auto;
}

#ysEmergencyGuideV2 .ys-emergency-summary-top p {
  margin: 26px 0 0;
  max-width: 370px;
  color: rgba(245, 241, 232, 0.68);
  font-size: 15px;
  line-height: 1.72;
  letter-spacing: -0.035em;
}

#ysEmergencyGuideV2 .ys-emergency-summary-main {
  margin-top: clamp(42px, 6vw, 92px);
}

#ysEmergencyGuideV2 .ys-emergency-summary-main span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  color: rgba(245, 241, 232, 0.58);
  font-size: 12px;
  font-weight: 820;
  letter-spacing: 0.22em;
}

#ysEmergencyGuideV2 .ys-emergency-summary-main span::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--ys-red);
  box-shadow: 0 0 0 8px rgba(167,58,50,0.12);
}

#ysEmergencyGuideV2 .ys-emergency-summary-main strong {
  display: block;
  color: #F8F5EC;
  font-size: clamp(30px, 2.45vw, 46px);
  font-weight: 760;
  line-height: 1.18;
  letter-spacing: -0.065em;
}

#ysEmergencyGuideV2 .ys-emergency-summary-main p {
  margin: 20px 0 0;
  max-width: 430px;
  color: rgba(245, 241, 232, 0.72);
  font-size: 15px;
  line-height: 1.76;
  letter-spacing: -0.035em;
}

#ysEmergencyGuideV2 .ys-emergency-call-box {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 34px;
}

#ysEmergencyGuideV2 .ys-emergency-call-box a {
  padding: 19px 20px;
  border-radius: 22px;
  background: rgba(245, 241, 232, 0.08);
  border: 1px solid rgba(245, 241, 232, 0.12);
  transition:
    background 0.28s ease,
    border-color 0.28s ease,
    transform 0.28s ease;
}

#ysEmergencyGuideV2 .ys-emergency-call-box a:first-child {
  border-color: rgba(167,58,50,0.38);
  background:
    linear-gradient(135deg, rgba(167,58,50,0.18), rgba(245,241,232,0.08));
}

#ysEmergencyGuideV2 .ys-emergency-call-box a:hover {
  background: rgba(245, 241, 232, 0.15);
  border-color: rgba(245, 241, 232, 0.30);
  transform: translateY(-2px);
}

#ysEmergencyGuideV2 .ys-emergency-call-box span {
  display: block;
  margin-bottom: 8px;
  color: rgba(245, 241, 232, 0.66);
  font-size: 15px;
  font-weight: 760;
  letter-spacing: -0.035em;
}

#ysEmergencyGuideV2 .ys-emergency-call-box strong {
  display: block;
  color: #F8F5EC;
  font-family: "Manrope", "Pretendard", sans-serif;
  font-size: 23px;
  font-weight: 780;
  line-height: 1.15;
  letter-spacing: -0.025em;
}

/* BOARD */
#ysEmergencyGuideV2 .ys-emergency-board {
  position: relative;
  min-height: 640px;
  height: 100%;
  padding: clamp(34px, 3.4vw, 58px);
  border-radius: 38px;
  overflow: hidden;
  isolation: isolate;

  background:
    radial-gradient(circle at 18% 8%, rgba(255,255,255,0.72), transparent 42%),
    linear-gradient(135deg, rgba(255,255,255,0.62), rgba(255,255,255,0.30));

  border: 1px solid rgba(255,255,255,0.64);

  box-shadow:
    0 34px 120px rgba(34, 50, 38, 0.13),
    inset 0 1px 0 rgba(255,255,255,0.82);
}

#ysEmergencyGuideV2 .ys-emergency-board-photo {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: min(44%, 460px);
  z-index: -1;

  background-image:
    linear-gradient(
      90deg,
      rgba(248,245,236,1) 0%,
      rgba(248,245,236,0.88) 22%,
      rgba(248,245,236,0.44) 62%,
      rgba(248,245,236,0.08) 100%
    ),
    url("https://bienamc.com/wp-content/uploads/2026/05/menu_bg_002.jpg");
  background-size: cover;
  background-position: center center;

  opacity: 0.52;
}

#ysEmergencyGuideV2 .ys-emergency-board::before {
  content: "";
  position: absolute;
  right: -130px;
  top: -130px;
  z-index: -2;
  width: 390px;
  height: 390px;
  border-radius: 999px;
  background: rgba(167, 58, 50, 0.10);
  filter: blur(40px);
}

#ysEmergencyGuideV2 .ys-emergency-signal {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  margin-bottom: 24px;
  padding: 10px 14px;

  border-radius: 999px;
  border: 1px solid rgba(167, 58, 50, 0.22);
  background: rgba(167, 58, 50, 0.08);
}

#ysEmergencyGuideV2 .ys-emergency-signal span,
#ysEmergencyGuideV2 .ys-emergency-signal em {
  color: var(--ys-red-dark);
  font-family: "Manrope", "Pretendard", sans-serif;
  font-size: 11px;
  font-style: normal;
  font-weight: 820;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

#ysEmergencyGuideV2 .ys-emergency-signal i {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--ys-red);
}

#ysEmergencyGuideV2 .ys-emergency-board-head span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(34, 50, 38, 0.48);
  letter-spacing: 0.22em;
  font-size: var(--fs-kicker);
  font-weight: 760;
  line-height: 1.3;
  text-transform: uppercase;
}

#ysEmergencyGuideV2 .ys-emergency-board-head span::before {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
  opacity: 0.72;
}

#ysEmergencyGuideV2 .ys-emergency-board-head h2 {
  margin: 16px 0 0;
  max-width: 760px;
  color: var(--ys-deep);
  font-family: "Noto Serif KR", "Nanum Myeongjo", serif;
  font-size: var(--fs-title-lg);
  font-weight: 500;
  line-height: 1.16;
  letter-spacing: -0.064em;
}

#ysEmergencyGuideV2 .ys-emergency-board-head h2::first-line {
  color: var(--ys-red-dark);
}

#ysEmergencyGuideV2 .ys-emergency-board-head p {
  margin: 20px 0 0;
  max-width: 760px;
  color: var(--ys-muted);
  font-size: var(--fs-body);
  line-height: 1.78;
  letter-spacing: -0.03em;
}

#ysEmergencyGuideV2 .ys-emergency-board-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: clamp(34px, 4vw, 60px);
  max-width: 850px;
}

#ysEmergencyGuideV2 .ys-emergency-board-grid article {
  min-height: 150px;
  padding: 23px;
  border-radius: 26px;
  background: rgba(255,255,255,0.46);
  border: 1px solid rgba(34,50,38,0.08);
  transition:
    background 0.28s ease,
    border-color 0.28s ease,
    box-shadow 0.28s ease,
    transform 0.28s ease;
}

#ysEmergencyGuideV2 .ys-emergency-board-grid article:hover {
  background: rgba(255,255,255,0.74);
  border-color: var(--ys-red-line);
  box-shadow: 0 18px 48px rgba(34,50,38,0.07);
  transform: translateY(-3px);
}

#ysEmergencyGuideV2 .ys-emergency-board-grid span {
  display: block;
  margin-bottom: 26px;
  color: rgba(167, 58, 50, 0.44);
  font-family: "Manrope", "Pretendard", sans-serif;
  font-size: 36px;
  font-weight: 760;
  line-height: 1;
  transition: color 0.28s ease;
}

#ysEmergencyGuideV2 .ys-emergency-board-grid article:hover span {
  color: var(--ys-red);
}

#ysEmergencyGuideV2 .ys-emergency-board-grid strong {
  display: block;
  color: var(--ys-deep);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: -0.055em;
}

#ysEmergencyGuideV2 .ys-emergency-board-grid p {
  margin: 10px 0 0;
  color: var(--ys-muted);
  font-size: 14px;
  line-height: 1.62;
  letter-spacing: -0.03em;
}

#ysEmergencyGuideV2 .ys-emergency-board-note {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 20px;
  align-items: center;

  max-width: 850px;
  margin-top: 18px;
  padding: 22px 24px;

  border-radius: 24px;
  color: #F8F5EC;

  background:
    linear-gradient(145deg, rgba(34,50,38,0.96) 0%, rgba(45,61,45,0.96) 100%);
}

#ysEmergencyGuideV2 .ys-emergency-board-note span {
  color: rgba(245, 241, 232, 0.52);
  font-size: 11px;
  font-weight: 820;
  letter-spacing: 0.2em;
}

#ysEmergencyGuideV2 .ys-emergency-board-note p {
  margin: 0;
  color: rgba(245, 241, 232, 0.78);
  font-size: 14.5px;
  line-height: 1.65;
  letter-spacing: -0.035em;
}

/* =========================================================
  PRINCIPLE
========================================================= */

#ysEmergencyGuideV2 .ys-emergency-principle,
#ysEmergencyGuideV2 .ys-symptom-section,
#ysEmergencyGuideV2 .ys-info-section,
#ysEmergencyGuideV2 .ys-emergency-process {
  padding-top: clamp(96px, 8vw, 152px);
}

#ysEmergencyGuideV2 .ys-principle-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr 1fr;
  gap: clamp(18px, 1.6vw, 28px);
}

#ysEmergencyGuideV2 .ys-principle-card {
  position: relative;
  min-height: 330px;
  padding: clamp(28px, 2.4vw, 42px);
  border-radius: 34px;
  overflow: hidden;

  background:
    radial-gradient(circle at 18% 8%, rgba(255,255,255,0.72), transparent 42%),
    linear-gradient(135deg, rgba(255,255,255,0.62), rgba(255,255,255,0.30));

  border: 1px solid rgba(255,255,255,0.64);
  box-shadow:
    0 22px 64px rgba(86,104,74,0.06),
    inset 0 1px 0 rgba(255,255,255,0.82);

  transition:
    transform 0.28s ease,
    background 0.28s ease,
    border-color 0.28s ease,
    box-shadow 0.28s ease;
}

#ysEmergencyGuideV2 .ys-principle-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0;
  background-image:
    linear-gradient(
      180deg,
      rgba(248,245,236,0.80),
      rgba(248,245,236,0.95)
    ),
    url("https://bienamc.com/wp-content/uploads/2026/05/menu_bg_002.jpg");
  background-size: cover;
  background-position: center;
  transition: opacity 0.28s ease;
}

#ysEmergencyGuideV2 .ys-principle-card:hover {
  transform: translateY(-5px);
  border-color: rgba(80,108,68,0.20);
  background:
    radial-gradient(circle at 18% 8%, rgba(255,255,255,0.84), transparent 42%),
    linear-gradient(135deg, rgba(255,255,255,0.74), rgba(255,255,255,0.38));
  box-shadow: 0 26px 72px rgba(34,50,38,0.09);
}

#ysEmergencyGuideV2 .ys-principle-card:hover .ys-principle-bg {
  opacity: 0.26;
}

#ysEmergencyGuideV2 .ys-principle-card > *:not(.ys-principle-bg) {
  position: relative;
  z-index: 2;
}

#ysEmergencyGuideV2 .ys-principle-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 54px;
  height: 54px;
  border-radius: 999px;

  color: #F8F5EC;
  background: var(--ys-deep);

  font-family: "Manrope", "Pretendard", sans-serif;
  font-size: 16px;
  font-weight: 800;
}

#ysEmergencyGuideV2 .ys-principle-card.is-red span {
  background: var(--ys-red);
}

#ysEmergencyGuideV2 .ys-principle-card strong {
  display: block;
  margin-top: clamp(62px, 5vw, 88px);
  color: var(--ys-deep);
  font-size: clamp(24px, 1.9vw, 34px);
  font-weight: 820;
  line-height: 1.18;
  letter-spacing: -0.065em;
}

#ysEmergencyGuideV2 .ys-principle-card p {
  margin: 20px 0 0;
  color: var(--ys-muted);
  font-size: 15px;
  line-height: 1.72;
  letter-spacing: -0.035em;
}

/* =========================================================
  SYMPTOM
========================================================= */

#ysEmergencyGuideV2 .ys-symptom-board {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 1.5vw, 24px);
  align-items: stretch;
}

#ysEmergencyGuideV2 .ys-symptom-card {
  position: relative;
  min-height: 330px;
  padding: clamp(28px, 2.4vw, 40px);
  border-radius: 34px;
  overflow: hidden;

  background:
    radial-gradient(circle at 18% 8%, rgba(255,255,255,0.72), transparent 42%),
    linear-gradient(135deg, rgba(255,255,255,0.62), rgba(255,255,255,0.30));

  border: 1px solid rgba(255,255,255,0.64);
  box-shadow:
    0 22px 64px rgba(86,104,74,0.06),
    inset 0 1px 0 rgba(255,255,255,0.82);

  transition:
    background 0.34s ease,
    border-color 0.34s ease,
    box-shadow 0.34s ease,
    transform 0.34s ease,
    color 0.34s ease;
}

#ysEmergencyGuideV2 .ys-symptom-card:hover {
  color: #F8F5EC;
  transform: translateY(-5px);
  background:
    radial-gradient(circle at 18% 10%, rgba(167,58,50,0.16), transparent 36%),
    linear-gradient(145deg, #1f2d22 0%, #2d3d2d 56%, #151f18 100%);
  border-color: rgba(245,241,232,0.16);
  box-shadow:
    0 32px 96px rgba(34,50,38,0.18),
    inset 0 1px 0 rgba(255,255,255,0.10);
}

#ysEmergencyGuideV2 .ys-symptom-photo {
  position: absolute;
  inset: 0;
  z-index: 0;

  background-image:
    linear-gradient(
      180deg,
      rgba(248,245,236,0.84) 0%,
      rgba(248,245,236,0.94) 100%
    ),
    url("https://bienamc.com/wp-content/uploads/2026/05/menu_bg_002.jpg");
  background-size: cover;
  background-position: center center;

  opacity: 0.18;
  transition: opacity 0.34s ease;
}

#ysEmergencyGuideV2 .ys-symptom-card:hover .ys-symptom-photo {
  opacity: 0.16;
  background-image:
    linear-gradient(
      180deg,
      rgba(31,45,34,0.72) 0%,
      rgba(31,45,34,0.94) 100%
    ),
    url("https://bienamc.com/wp-content/uploads/2026/05/menu_bg_002.jpg");
}

#ysEmergencyGuideV2 .ys-symptom-card > *:not(.ys-symptom-photo) {
  position: relative;
  z-index: 2;
}

#ysEmergencyGuideV2 .ys-symptom-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

#ysEmergencyGuideV2 .ys-symptom-top span {
  width: 54px;
  height: 54px;
  border-radius: 999px;

  display: flex;
  align-items: center;
  justify-content: center;

  color: rgba(34, 50, 38, 0.62);
  background: rgba(34, 50, 38, 0.08);

  font-family: "Manrope", "Pretendard", sans-serif;
  font-size: 16px;
  font-weight: 800;

  transition:
    color 0.28s ease,
    background 0.28s ease;
}

#ysEmergencyGuideV2 .ys-symptom-card:hover .ys-symptom-top span {
  color: #F8F5EC;
  background: var(--ys-red);
}

#ysEmergencyGuideV2 .ys-symptom-top em {
  color: rgba(167,58,50,0.55);
  font-style: normal;
  font-family: "Manrope", "Pretendard", sans-serif;
  font-size: 11px;
  font-weight: 820;
  letter-spacing: 0.18em;
  transition: color 0.28s ease;
}

#ysEmergencyGuideV2 .ys-symptom-card:hover .ys-symptom-top em {
  color: rgba(245,241,232,0.58);
}

#ysEmergencyGuideV2 .ys-symptom-card h3 {
  margin: clamp(48px, 4vw, 72px) 0 0;
  color: var(--ys-deep);
  font-size: clamp(22px, 1.75vw, 32px);
  font-weight: 800;
  line-height: 1.24;
  letter-spacing: -0.065em;
  transition: color 0.28s ease;
}

#ysEmergencyGuideV2 .ys-symptom-card:hover h3 {
  color: #F8F5EC;
}

#ysEmergencyGuideV2 .ys-symptom-card p {
  margin: 20px 0 0;
  color: var(--ys-muted);
  font-size: 15px;
  line-height: 1.72;
  letter-spacing: -0.035em;
  transition: color 0.28s ease;
}

#ysEmergencyGuideV2 .ys-symptom-card:hover p {
  color: rgba(245,241,232,0.74);
}

#ysEmergencyGuideV2 .ys-symptom-note {
  display: grid;
  grid-template-columns: 130px minmax(0, 1fr);
  gap: 20px;
  align-items: center;

  margin-top: 24px;
  padding: 22px 24px;

  border-radius: 24px;
  background: rgba(255,255,255,0.42);
  border: 1px solid rgba(167,58,50,0.18);
}

#ysEmergencyGuideV2 .ys-symptom-note span {
  color: var(--ys-red-dark);
  font-size: 11px;
  font-weight: 820;
  letter-spacing: 0.2em;
}

#ysEmergencyGuideV2 .ys-symptom-note p {
  margin: 0;
  color: var(--ys-muted);
  font-size: 14.5px;
  line-height: 1.65;
  letter-spacing: -0.035em;
}

/* =========================================================
  INFO
========================================================= */

#ysEmergencyGuideV2 .ys-info-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(360px, 0.38fr) minmax(0, 0.62fr);
  gap: clamp(30px, 4vw, 76px);
  align-items: start;

  padding: clamp(34px, 4vw, 64px);
  border-radius: 38px;

  background:
    radial-gradient(circle at 14% 16%, rgba(255,255,255,0.70), transparent 38%),
    linear-gradient(135deg, rgba(255,255,255,0.64), rgba(255,255,255,0.32));

  border: 1px solid rgba(255,255,255,0.66);
  box-shadow:
    0 34px 120px rgba(34,50,38,0.10),
    inset 0 1px 0 rgba(255,255,255,0.86);

  overflow: hidden;
}

#ysEmergencyGuideV2 .ys-info-bg-photo {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: min(48%, 620px);
  z-index: 0;

  background-image:
    linear-gradient(
      90deg,
      rgba(248,245,236,1) 0%,
      rgba(248,245,236,0.88) 20%,
      rgba(248,245,236,0.48) 58%,
      rgba(248,245,236,0.12) 100%
    ),
    url("https://bienamc.com/wp-content/uploads/2026/05/menu_bg_002.jpg");
  background-size: cover;
  background-position: center center;

  opacity: 0.54;
}

#ysEmergencyGuideV2 .ys-info-copy,
#ysEmergencyGuideV2 .ys-info-list {
  position: relative;
  z-index: 2;
}

#ysEmergencyGuideV2 .ys-info-copy p {
  margin: 22px 0 0;
  color: var(--ys-muted);
  font-size: var(--fs-body);
  line-height: 1.78;
  letter-spacing: -0.035em;
}

#ysEmergencyGuideV2 .ys-info-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

#ysEmergencyGuideV2 .ys-info-list article {
  display: grid;
  grid-template-columns: 58px minmax(0, 0.36fr) minmax(0, 0.64fr);
  gap: 16px;
  align-items: center;

  padding: 20px 22px;
  border-radius: 24px;
  background: rgba(255,255,255,0.52);
  border: 1px solid rgba(34,50,38,0.08);

  transition:
    background 0.28s ease,
    border-color 0.28s ease,
    transform 0.28s ease,
    box-shadow 0.28s ease;
}

#ysEmergencyGuideV2 .ys-info-list article:hover {
  background: rgba(255,255,255,0.76);
  border-color: rgba(167,58,50,0.22);
  box-shadow: 0 18px 54px rgba(34,50,38,0.08);
  transform: translateY(-2px);
}

#ysEmergencyGuideV2 .ys-info-list span {
  width: 42px;
  height: 42px;
  border-radius: 999px;

  display: flex;
  align-items: center;
  justify-content: center;
  align-self: center;

  color: #F8F5EC;
  background: var(--ys-deep);

  font-family: "Manrope", "Pretendard", sans-serif;
  font-size: 13px;
  font-weight: 800;
  transition: background 0.28s ease;
}

#ysEmergencyGuideV2 .ys-info-list article:hover span {
  background: var(--ys-red);
}

#ysEmergencyGuideV2 .ys-info-list strong {
  display: flex;
  align-items: center;
  min-height: 42px;
  color: var(--ys-deep);
  font-size: 16px;
  font-weight: 820;
  line-height: 1.45;
  letter-spacing: -0.045em;
}

#ysEmergencyGuideV2 .ys-info-list p {
  margin: 0;
  display: flex;
  align-items: center;
  min-height: 42px;
  color: var(--ys-muted);
  font-size: 14.5px;
  line-height: 1.65;
  letter-spacing: -0.035em;
}

/* =========================================================
  FLOW
========================================================= */

#ysEmergencyGuideV2 .ys-flow-stage {
  display: flex;
  gap: 12px;
  min-width: 0;
}

#ysEmergencyGuideV2 .ys-flow-stage article {
  position: relative;
  flex: 1 1 0;
  min-width: 0;
  min-height: 500px;
  padding: clamp(24px, 2.2vw, 34px);

  display: flex;
  flex-direction: column;

  border-radius: 30px;
  overflow: hidden;

  background:
    radial-gradient(circle at 18% 8%, rgba(255,255,255,0.72), transparent 42%),
    linear-gradient(135deg, rgba(255,255,255,0.62), rgba(255,255,255,0.30));

  border: 1px solid rgba(255,255,255,0.64);

  box-shadow:
    0 22px 64px rgba(86,104,74,0.06),
    inset 0 1px 0 rgba(255,255,255,0.82);

  transition:
    flex 0.42s cubic-bezier(.22, 1, .36, 1),
    background 0.28s ease,
    border-color 0.28s ease,
    box-shadow 0.28s ease,
    transform 0.28s ease;
}

#ysEmergencyGuideV2 .ys-flow-stage article:hover {
  flex: 2.15 1 0;
  transform: translateY(-3px);
  background:
    radial-gradient(circle at 18% 8%, rgba(255,255,255,0.84), transparent 42%),
    linear-gradient(135deg, rgba(255,255,255,0.72), rgba(255,255,255,0.40));
  border-color: rgba(167,58,50,0.22);
  box-shadow:
    0 26px 72px rgba(34,50,38,0.09),
    inset 0 1px 0 rgba(255,255,255,0.90);
}

#ysEmergencyGuideV2 .ys-flow-photo {
  position: absolute;
  inset: 0;
  z-index: 0;

  background-image:
    linear-gradient(
      180deg,
      rgba(248,245,236,0.86) 0%,
      rgba(248,245,236,0.72) 42%,
      rgba(248,245,236,0.96) 100%
    ),
    url("https://bienamc.com/wp-content/uploads/2026/05/menu_bg_002.jpg");
  background-size: cover;
  background-position: center center;

  opacity: 0;
  transition: opacity 0.32s ease;
}

#ysEmergencyGuideV2 .ys-flow-stage article:hover .ys-flow-photo {
  opacity: 0.24;
}

#ysEmergencyGuideV2 .ys-flow-stage article > *:not(.ys-flow-photo) {
  position: relative;
  z-index: 2;
}

#ysEmergencyGuideV2 .ys-flow-stage article span {
  width: 48px;
  height: 48px;
  border-radius: 999px;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #F8F5EC;
  background: var(--ys-deep);

  font-family: "Manrope", "Pretendard", sans-serif;
  font-size: 14px;
  font-weight: 800;

  transition:
    background 0.28s ease,
    color 0.28s ease;
}

#ysEmergencyGuideV2 .ys-flow-stage article:hover span {
  background: var(--ys-red);
}

#ysEmergencyGuideV2 .ys-flow-stage article strong {
  display: block;
  margin-top: auto;
  color: var(--ys-deep);
  font-size: clamp(21px, 1.55vw, 28px);
  font-weight: 800;
  line-height: 1.26;
  letter-spacing: -0.065em;
  white-space: nowrap;
}

#ysEmergencyGuideV2 .ys-flow-stage article p {
  max-width: 300px;
  max-height: 0;
  margin: 0;
  opacity: 0;
  overflow: hidden;
  color: var(--ys-muted);
  font-size: 14.5px;
  line-height: 1.66;
  letter-spacing: -0.035em;

  transition:
    max-height 0.34s ease,
    opacity 0.28s ease,
    margin 0.28s ease;
}

#ysEmergencyGuideV2 .ys-flow-stage article:hover p {
  max-height: 130px;
  margin-top: 18px;
  opacity: 1;
}

/* =========================================================
  NIGHT CTA
========================================================= */

#ysEmergencyGuideV2 .ys-night-emergency {
  position: relative;
  display: grid;
  grid-template-columns: minmax(170px, 0.18fr) minmax(0, 1fr) auto;
  gap: clamp(24px, 3vw, 54px);
  align-items: center;

  margin-top: clamp(96px, 8vw, 152px);
  padding: clamp(34px, 3.4vw, 54px);

  border-radius: 34px;
  overflow: hidden;
  isolation: isolate;

  color: #F8F5EC;
  background:
    radial-gradient(circle at 12% 20%, rgba(167,58,50,0.22), transparent 34%),
    linear-gradient(145deg, #1f2d22 0%, #2d3d2d 56%, #151f18 100%);

  box-shadow:
    0 32px 96px rgba(34,50,38,0.18),
    inset 0 1px 0 rgba(255,255,255,0.10);
}

#ysEmergencyGuideV2 .ys-night-bg-photo {
  position: absolute;
  inset: 0;
  z-index: -2;

  background-image:
    linear-gradient(
      90deg,
      rgba(31,45,34,0.98) 0%,
      rgba(31,45,34,0.82) 50%,
      rgba(31,45,34,0.58) 100%
    ),
    url("https://bienamc.com/wp-content/uploads/2026/05/menu_bg_002.jpg");
  background-size: cover;
  background-position: center center;
  opacity: 0.32;
}

#ysEmergencyGuideV2 .ys-night-emergency::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 6px;
  border-radius: 0;
  background: var(--ys-red);
}

#ysEmergencyGuideV2 .ys-night-label span {
  display: block;
  color: rgba(245,241,232,0.58);
  font-family: "Manrope", "Pretendard", sans-serif;
  font-size: clamp(18px, 1.4vw, 24px);
  font-weight: 760;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

#ysEmergencyGuideV2 .ys-night-copy h2 {
  color: #F8F5EC;
  font-size: clamp(28px, 2.2vw, 42px);
}

#ysEmergencyGuideV2 .ys-night-copy p {
  margin: 14px 0 0;
  max-width: 820px;
  color: rgba(245,241,232,0.72);
  font-size: var(--fs-body);
  line-height: 1.76;
  letter-spacing: -0.03em;
}

#ysEmergencyGuideV2 .ys-night-actions {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: flex-end;
}

#ysEmergencyGuideV2 .ys-night-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-width: 142px;
  height: 50px;
  padding: 0 22px;

  border-radius: 999px;

  font-size: 14px;
  font-weight: 800;
  letter-spacing: -0.03em;

  transition:
    transform 0.28s ease,
    background 0.28s ease,
    border-color 0.28s ease,
    color 0.28s ease,
    box-shadow 0.28s ease;
}

#ysEmergencyGuideV2 .ys-night-call:hover {
  transform: translateY(-2px);
}

#ysEmergencyGuideV2 .ys-night-call.is-primary {
  color: #F8F5EC;
  background: var(--ys-red);
  box-shadow: 0 18px 48px rgba(167,58,50,0.22);
}

#ysEmergencyGuideV2 .ys-night-call.is-primary:hover {
  background: var(--ys-red-dark);
}

#ysEmergencyGuideV2 .ys-night-call.is-secondary {
  color: #F8F5EC;
  background: rgba(245,241,232,0.10);
  border: 1px solid rgba(245,241,232,0.20);
}

#ysEmergencyGuideV2 .ys-night-call.is-secondary:hover {
  background: rgba(245,241,232,0.16);
  border-color: rgba(245,241,232,0.34);
}

/* =========================================================
  GATEWAY
========================================================= */

#ysEmergencyGuideV2 .ys-emergency-gateway {
  margin-top: clamp(92px, 7vw, 132px);
  padding-top: clamp(78px, 6vw, 118px);
  border-top: 1px solid var(--ys-line);
}

#ysEmergencyGuideV2 .ys-gateway-copy {
  margin-bottom: 32px;
}

#ysEmergencyGuideV2 .ys-gateway-copy h2 {
  margin: 16px 0 0;
}

#ysEmergencyGuideV2 .ys-gateway-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

#ysEmergencyGuideV2 .ys-gateway-card {
  position: relative;
  overflow: hidden;
  min-height: 164px;
  padding: 26px;

  display: flex;
  flex-direction: column;
  justify-content: space-between;

  border-radius: 28px;
  border: 1px solid rgba(255,255,255,0.64);

  background:
    radial-gradient(circle at 18% 8%, rgba(255,255,255,0.72), transparent 42%),
    linear-gradient(135deg, rgba(255,255,255,0.62), rgba(255,255,255,0.30));

  box-shadow:
    0 22px 64px rgba(86,104,74,0.06),
    inset 0 1px 0 rgba(255,255,255,0.82);

  color: var(--ys-deep);
  text-decoration: none;

  transition:
    transform 0.24s ease,
    background 0.24s ease,
    border-color 0.24s ease,
    box-shadow 0.24s ease;
}

#ysEmergencyGuideV2 .ys-gateway-card::after {
  content: "→";
  position: absolute;
  right: 24px;
  bottom: 22px;
  color: var(--ys-green-dark);
  font-size: 22px;
  line-height: 1;
  opacity: 0;
  transform: translateX(-10px);
  transition:
    opacity 0.22s ease,
    transform 0.22s ease;
}

#ysEmergencyGuideV2 .ys-gateway-card:hover {
  transform: translateY(-5px);
  border-color: rgba(80,108,68,0.20);
  background:
    radial-gradient(circle at 18% 8%, rgba(255,255,255,0.84), transparent 42%),
    linear-gradient(135deg, rgba(255,255,255,0.74), rgba(255,255,255,0.38));
  box-shadow: 0 26px 72px rgba(34,50,38,0.09);
}

#ysEmergencyGuideV2 .ys-gateway-card:hover::after {
  opacity: 1;
  transform: translateX(0);
}

#ysEmergencyGuideV2 .ys-gateway-card strong {
  color: var(--ys-deep);
  font-size: var(--fs-card-title);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.045em;
}

#ysEmergencyGuideV2 .ys-gateway-card em {
  color: rgba(34, 50, 38, 0.48);
  font-style: normal;
  font-size: 13px;
  font-weight: 650;
  letter-spacing: 0.02em;
}

/* =========================================================
  TABLET
========================================================= */

@media (max-width: 1200px) {
  #ysEmergencyGuideV2 .ys-emergency-main,
  #ysEmergencyGuideV2 .ys-info-panel {
    grid-template-columns: 1fr;
  }

  #ysEmergencyGuideV2 .ys-emergency-summary,
  #ysEmergencyGuideV2 .ys-emergency-board {
    min-height: auto;
  }

  #ysEmergencyGuideV2 .ys-principle-grid,
  #ysEmergencyGuideV2 .ys-symptom-board {
    grid-template-columns: 1fr;
  }

  #ysEmergencyGuideV2 .ys-principle-card,
  #ysEmergencyGuideV2 .ys-symptom-card {
    min-height: auto;
  }

  #ysEmergencyGuideV2 .ys-info-list article {
    grid-template-columns: 52px minmax(190px, 0.34fr) minmax(0, 0.66fr);
    align-items: center;
  }

  #ysEmergencyGuideV2 .ys-flow-stage {
    display: grid;
    grid-template-columns: 1fr;
  }

  #ysEmergencyGuideV2 .ys-flow-stage article {
    min-height: 220px;
  }

  #ysEmergencyGuideV2 .ys-flow-stage article,
  #ysEmergencyGuideV2 .ys-flow-stage article:hover {
    flex: none;
  }

  #ysEmergencyGuideV2 .ys-flow-stage article p {
    max-width: none;
    max-height: none;
    margin-top: 18px;
    opacity: 1;
  }

  #ysEmergencyGuideV2 .ys-flow-photo {
    opacity: 0.18;
  }

  #ysEmergencyGuideV2 .ys-night-emergency {
    grid-template-columns: 1fr;
  }

  #ysEmergencyGuideV2 .ys-night-actions {
    justify-content: flex-start;
  }

  #ysEmergencyGuideV2 .ys-gateway-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* =========================================================
  MOBILE
========================================================= */

@media (max-width: 767px) {
  #ysEmergencyGuideV2 {
    --ys-page-gutter: 18px;
    --fs-title: clamp(31px, 8.4vw, 40px);
    --fs-title-lg: 32px;
    --fs-card-title: 20px;
    --fs-body: 14.5px;
  }

  #ysEmergencyGuideV2 .ys-emergency-inner {
    padding: 64px 0 86px;
  }

  #ysEmergencyGuideV2 .ys-emergency-main {
    gap: 20px;
  }

  #ysEmergencyGuideV2 .ys-emergency-summary {
    padding: 28px 24px;
    border-radius: 28px;
  }

  #ysEmergencyGuideV2 .ys-emergency-logo-wrap {
    width: min(220px, 86%);
  }

  #ysEmergencyGuideV2 .ys-emergency-summary-top p {
    margin-top: 22px;
    font-size: 14.5px;
  }

  #ysEmergencyGuideV2 .ys-emergency-summary-main {
    margin-top: 48px;
  }

  #ysEmergencyGuideV2 .ys-emergency-summary-main strong {
    font-size: 31px;
  }

  #ysEmergencyGuideV2 .ys-emergency-call-box span {
    font-size: 14px;
  }

  #ysEmergencyGuideV2 .ys-emergency-call-box strong {
    font-size: 20px;
  }

  #ysEmergencyGuideV2 .ys-emergency-board {
    padding: 28px 24px;
    border-radius: 28px;
  }

  #ysEmergencyGuideV2 .ys-emergency-board-photo {
    width: 100%;
    height: 190px;
    opacity: 0.34;
    background-image:
      linear-gradient(
        180deg,
        rgba(248,245,236,0.10) 0%,
        rgba(248,245,236,1) 100%
      ),
      url("https://bienamc.com/wp-content/uploads/2026/05/menu_bg_002.jpg");
  }

  #ysEmergencyGuideV2 .ys-emergency-signal {
    margin-bottom: 20px;
  }

  #ysEmergencyGuideV2 .ys-emergency-board-head h2 {
    font-size: 32px;
  }

  #ysEmergencyGuideV2 .ys-emergency-board-grid {
    grid-template-columns: 1fr;
  }

  #ysEmergencyGuideV2 .ys-emergency-board-note {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  #ysEmergencyGuideV2 .ys-section-head {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 34px;
  }

  #ysEmergencyGuideV2 .ys-section-head p {
    max-width: none;
  }

  #ysEmergencyGuideV2 .ys-emergency-principle,
  #ysEmergencyGuideV2 .ys-symptom-section,
  #ysEmergencyGuideV2 .ys-info-section,
  #ysEmergencyGuideV2 .ys-emergency-process {
    padding-top: 86px;
  }

  #ysEmergencyGuideV2 .ys-principle-card,
  #ysEmergencyGuideV2 .ys-symptom-card {
    min-height: 280px;
    padding: 26px 24px;
    border-radius: 28px;
  }

  #ysEmergencyGuideV2 .ys-principle-card:hover,
  #ysEmergencyGuideV2 .ys-symptom-card:hover {
    transform: none;
  }

  #ysEmergencyGuideV2 .ys-principle-card strong {
    margin-top: 52px;
  }

  #ysEmergencyGuideV2 .ys-symptom-card h3 {
    margin-top: 46px;
  }

  #ysEmergencyGuideV2 .ys-symptom-note {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  #ysEmergencyGuideV2 .ys-info-panel {
    padding: 28px 24px;
    border-radius: 28px;
  }

  #ysEmergencyGuideV2 .ys-info-bg-photo {
    width: 100%;
    height: 220px;
    opacity: 0.34;
    background-image:
      linear-gradient(
        180deg,
        rgba(248,245,236,0.18) 0%,
        rgba(248,245,236,1) 100%
      ),
      url("https://bienamc.com/wp-content/uploads/2026/05/menu_bg_002.jpg");
  }

  #ysEmergencyGuideV2 .ys-info-list article {
    grid-template-columns: 1fr;
    gap: 10px;
    align-items: start;
    padding: 22px 20px;
  }

  #ysEmergencyGuideV2 .ys-info-list span {
    width: 40px;
    height: 40px;
  }

  #ysEmergencyGuideV2 .ys-info-list strong,
  #ysEmergencyGuideV2 .ys-info-list p {
    min-height: 0;
    display: block;
  }

  #ysEmergencyGuideV2 .ys-flow-stage article {
    min-height: 210px;
    padding: 24px;
    border-radius: 26px;
  }

  #ysEmergencyGuideV2 .ys-flow-stage article strong {
    white-space: normal;
  }

  #ysEmergencyGuideV2 .ys-night-emergency {
    margin-top: 86px;
    padding: 30px 24px;
    border-radius: 28px;
  }

  #ysEmergencyGuideV2 .ys-night-emergency::before {
    top: 0;
    bottom: 0;
    width: 5px;
  }

  #ysEmergencyGuideV2 .ys-night-actions {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }

  #ysEmergencyGuideV2 .ys-night-call {
    width: 100%;
  }

  #ysEmergencyGuideV2 .ys-emergency-gateway {
    margin-top: 70px;
    padding-top: 54px;
  }

  #ysEmergencyGuideV2 .ys-gateway-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  #ysEmergencyGuideV2 .ys-gateway-card {
    min-height: 132px;
    padding: 24px;
    border-radius: 26px 32px 24px 36px;
  }

  #ysEmergencyGuideV2 .ys-gateway-card:hover {
    transform: none;
  }
}


/* =========================================================
  EMERGENCY GUIDE - MOBILE TITLE ONLY FIX
  제목 블록만 카드 내부 텍스트 시작선에 맞춤
  카드/리스트/본문 구조는 건드리지 않음
========================================================= */

@media (max-width: 767px) {
  #ysEmergencyGuideV2 {
    --ys-mobile-title-inset: 24px;
  }

  /* 일반 섹션 제목:
     응급진료에서 중요한 것 / 빠른 확인이 필요한 신호 / 응급진료 흐름 */
  #ysEmergencyGuideV2 .ys-section-head {
    padding-left: var(--ys-mobile-title-inset);
    padding-right: var(--ys-mobile-title-inset);
  }

  /* 하단 Related Guide 제목:
     함께 확인하면 좋은 안내 */
  #ysEmergencyGuideV2 .ys-gateway-copy {
    padding-left: var(--ys-mobile-title-inset);
    padding-right: var(--ys-mobile-title-inset);
  }

  /* 모바일 제목 줄바꿈만 살짝 안정화 */
  #ysEmergencyGuideV2 .ys-section-head h2,
  #ysEmergencyGuideV2 .ys-gateway-copy h2 {
    font-size: clamp(29px, 7.7vw, 36px);
    line-height: 1.25;
    letter-spacing: -0.064em;
  }

  #ysEmergencyGuideV2 .ys-section-head p {
    font-size: 14.3px;
    line-height: 1.72;
  }

  /* 이건 패널 안 제목이라 들여쓰기 추가하지 않음.
     대신 제목 크기만 줄바꿈 덜 나게 살짝 조정 */
  #ysEmergencyGuideV2 .ys-info-copy h2 {
    font-size: clamp(28px, 7.3vw, 34px);
    line-height: 1.25;
    letter-spacing: -0.064em;
  }
}









/* BIEN_COMMON_GATEWAY_STYLE_START */
#ysEmergencyGuideV2 .ys-gateway-copy {
  margin-bottom: 32px !important;
}

#ysEmergencyGuideV2 .ys-gateway-copy h2 {
  margin: 14px 0 0 !important;
  letter-spacing: 0 !important;
}

#ysEmergencyGuideV2 .ys-gateway-grid {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 14px !important;
}

#ysEmergencyGuideV2 .ys-gateway-card {
  position: relative !important;
  overflow: hidden !important;
  min-height: 164px !important;
  padding: 26px !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important;
  border-radius: 28px !important;
  border: 1px solid rgba(255,255,255,0.64) !important;
  background:
    radial-gradient(circle at 18% 8%, rgba(255,255,255,0.72), transparent 42%),
    linear-gradient(135deg, rgba(255,255,255,0.62), rgba(255,255,255,0.30)) !important;
  box-shadow:
    0 22px 64px rgba(86,104,74,0.06),
    inset 0 1px 0 rgba(255,255,255,0.82) !important;
  color: var(--ys-deep, #223226) !important;
  text-decoration: none !important;
  box-sizing: border-box !important;
  transition:
    transform 0.24s ease,
    background 0.24s ease,
    border-color 0.24s ease,
    box-shadow 0.24s ease !important;
}

#ysEmergencyGuideV2 .ys-gateway-card::after {
  content: "→" !important;
  position: absolute !important;
  right: 24px !important;
  bottom: 22px !important;
  color: var(--ys-green-dark, #506c44) !important;
  font-size: 22px !important;
  line-height: 1 !important;
  opacity: 0 !important;
  transform: translateX(-10px) !important;
  transition:
    opacity 0.22s ease,
    transform 0.22s ease !important;
}

#ysEmergencyGuideV2 .ys-gateway-card:hover {
  transform: translateY(-5px) !important;
  border-color: rgba(80,108,68,0.20) !important;
  background:
    radial-gradient(circle at 18% 8%, rgba(255,255,255,0.84), transparent 42%),
    linear-gradient(135deg, rgba(255,255,255,0.74), rgba(255,255,255,0.38)) !important;
  box-shadow: 0 26px 72px rgba(34,50,38,0.09), inset 0 1px 0 rgba(255,255,255,0.86) !important;
}

#ysEmergencyGuideV2 .ys-gateway-card:hover::after {
  opacity: 1 !important;
  transform: translateX(0) !important;
}

#ysEmergencyGuideV2 .ys-gateway-card strong {
  color: var(--ys-deep, #223226) !important;
  font-size: 22px !important;
  font-weight: 700 !important;
  line-height: 1.3 !important;
  letter-spacing: 0 !important;
  transition: color 0.24s ease !important;
}

#ysEmergencyGuideV2 .ys-gateway-card:hover strong {
  color: var(--ys-deep, #223226) !important;
  transform: none !important;
}

#ysEmergencyGuideV2 .ys-gateway-card em {
  color: rgba(34,50,38,0.48) !important;
  font-style: normal !important;
  font-size: 13px !important;
  font-weight: 650 !important;
  letter-spacing: 0 !important;
  transition: color 0.24s ease !important;
}

#ysEmergencyGuideV2 .ys-gateway-card:hover em {
  color: rgba(34,50,38,0.48) !important;
  transform: none !important;
}

@media (max-width: 1024px) {
  #ysEmergencyGuideV2 .ys-gateway-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 640px) {
  #ysEmergencyGuideV2 .ys-gateway-copy {
    margin-bottom: 22px !important;
  }

  #ysEmergencyGuideV2 .ys-gateway-grid {
    grid-template-columns: 1fr !important;
    gap: 10px !important;
  }

  #ysEmergencyGuideV2 .ys-gateway-card {
    min-height: 132px !important;
    padding: 22px !important;
    border-radius: 24px !important;
  }

  #ysEmergencyGuideV2 .ys-gateway-card::after {
    right: 22px !important;
    bottom: 20px !important;
    font-size: 20px !important;
  }

  #ysEmergencyGuideV2 .ys-gateway-card strong {
    font-size: 19px !important;
    line-height: 1.32 !important;
  }

  #ysEmergencyGuideV2 .ys-gateway-card em {
    font-size: 12px !important;
  }
}
/* BIEN_COMMON_GATEWAY_STYLE_END */
