.info-page { min-height: 100vh; color: var(--ink); background: var(--paper); }
.info-main { min-height: calc(100vh - 64px); padding-top: 82px; }
.info-hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 108px;
  padding: 14px max(5vw, calc((100vw - 1120px) / 2));
  border-bottom: 1px solid var(--line);
  background-image: url("/assets/original/116884_2f071758f0a445d09d2ecc1b89f48340~mv2.png.webp");
  background-position: center 38%;
  background-size: cover;
  isolation: isolate;
  overflow: hidden;
}
.info-hero::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(247,242,231,.86);
  content: "";
}
.info-hero::after { display: none; }
.info-hero-inner { width: min(760px, 100%); }
.info-kicker { display: none; }
.info-hero h1 { margin: 0; font-size: 28px; line-height: 1.1; }
.info-hero-description { max-width: 680px; margin: 4px 0 0; color: var(--muted); font-size: 11px; line-height: 1.45; }
.info-tabs {
  display: flex;
  gap: 30px;
  max-width: 1120px;
  min-height: 62px;
  margin: 0 auto;
  padding: 0;
  border-bottom: 1px solid var(--line);
}
.info-tabs a {
  position: relative;
  display: flex;
  align-items: center;
  color: var(--muted);
  font-family: "Gowun Batang", "Noto Serif KR", serif;
  font-size: 14px;
  font-weight: 700;
}
.info-tabs a::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  content: "";
}
.info-tabs a:hover,
.info-tabs a:focus-visible,
.info-tabs a[aria-current="page"] { color: var(--red-dark); outline: 0; }
.info-tabs a:hover::after,
.info-tabs a:focus-visible::after,
.info-tabs a[aria-current="page"]::after { transform: scaleX(1); }
.info-content { width: min(1120px, calc(100% - 48px)); margin: 0 auto; padding: 54px 0 96px; }
.info-content-heading { display: flex; justify-content: space-between; align-items: flex-end; gap: 32px; margin-bottom: 32px; }
.info-content-heading p { margin: 0 0 9px; color: var(--red); font-size: 11px; font-weight: 800; letter-spacing: 0; }
.info-content-heading h2 { margin: 0; font-size: 34px; line-height: 1.2; }
.info-total { display: flex; align-items: baseline; gap: 7px; color: var(--muted); }
.info-total strong { color: var(--red-dark); font: 700 32px/1 "Gowun Batang", serif; }
.info-total span { font-size: 12px; }
.coupon-quick {
  display: grid;
  grid-template-columns: minmax(160px, .72fr) minmax(260px, 1.4fr) auto;
  align-items: center;
  gap: 28px;
  min-height: 126px;
  margin-bottom: 26px;
  padding: 24px 26px;
  border: 1px solid var(--line);
  border-left: 3px solid var(--red);
  border-radius: 4px;
  background: rgba(247,242,231,.58);
}
.coupon-quick-heading { display: grid; gap: 5px; }
.coupon-quick-heading p { margin: 0; color: var(--red); font-size: 10px; font-weight: 800; }
.coupon-quick-heading h3 { margin: 0; font-size: 20px; }
.coupon-quick-heading span { color: var(--muted); font-size: 11px; line-height: 1.55; }
.coupon-quick-current { display: grid; min-width: 0; gap: 8px; }
.coupon-quick-current > span { color: var(--muted); font-size: 11px; }
.coupon-quick-code {
  min-height: 30px;
  overflow-wrap: anywhere;
  color: var(--ink);
  font: 700 25px/1.2 Consolas, "Courier New", monospace;
}
.coupon-quick-copy {
  min-width: 126px;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid var(--red-dark);
  border-radius: 4px;
  color: var(--paper-light);
  background: var(--red-dark);
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
}
.coupon-quick-copy:hover,
.coupon-quick-copy:focus-visible { background: var(--red); outline: 0; }
.coupon-quick-copy:disabled { border-color: var(--line); color: var(--muted); background: transparent; cursor: default; }
.coupon-controls { display: flex; justify-content: space-between; align-items: center; gap: 18px; margin-bottom: 24px; }
.coupon-toolbar {
  display: inline-flex;
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
}
.coupon-toolbar button {
  min-height: 38px;
  padding: 0 15px;
  border: 0;
  border-right: 1px solid var(--line);
  color: var(--muted);
  background: rgba(247,242,231,.52);
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
}
.coupon-toolbar button:last-child { border-right: 0; }
.coupon-toolbar button:hover,
.coupon-toolbar button:focus-visible,
.coupon-toolbar button.is-active { color: var(--paper-light); background: var(--red-dark); outline: 0; }
.coupon-toolbar button span { margin-left: 6px; font-variant-numeric: tabular-nums; }
.coupon-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 0 24px;
  border-top: 1px solid var(--ink);
}
.coupon-list > .info-empty,
.coupon-list > .info-loading { grid-column: 1 / -1; }
.coupon-item {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 8px;
  padding: 16px 2px 14px;
  border-bottom: 1px solid var(--line);
}
.coupon-item-meta { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.coupon-state { color: var(--red-dark); font-size: 10px; }
.coupon-item.is-used .coupon-state,
.coupon-item.is-expired .coupon-state { color: var(--muted); }
.coupon-expiry { color: var(--muted); font-size: 10px; text-align: right; }
.coupon-item-content { min-width: 0; }
.coupon-title { margin: 2px 0 0; font-size: 15px; }
.coupon-description { margin: 5px 0 0; color: var(--muted); font-size: 12px; }
.coupon-rewards { display: flex; flex-wrap: wrap; gap: 3px 14px; margin: 6px 0 0; padding: 0; color: var(--muted); font-size: 11px; list-style: none; }
.coupon-rewards li::before { margin-right: 7px; color: var(--red); content: "·"; }
.coupon-code-area { display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: center; gap: 6px; }
.coupon-code { min-width: 0; overflow-wrap: anywhere; font: 700 16px/1.2 Consolas, "Courier New", monospace; }
.coupon-actions { display: flex; align-items: center; gap: 4px; }
.coupon-copy {
  min-height: 34px;
  padding: 0 11px;
  border: 1px solid var(--red-dark);
  border-radius: 4px;
  color: var(--red-dark);
  background: transparent;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
}
.coupon-copy:hover,
.coupon-copy:focus-visible { color: var(--paper-light); background: var(--red-dark); outline: 0; }
.coupon-copy:disabled { border-color: var(--line); color: var(--muted); background: transparent; cursor: default; opacity: .58; }
.coupon-use {
  min-height: 34px;
  padding: 0 9px;
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--muted);
  background: transparent;
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
}
.coupon-use:hover,
.coupon-use:focus-visible { border-color: var(--ink); color: var(--paper-light); background: var(--ink); outline: 0; }
.coupon-unuse {
  grid-column: 1 / -1;
  min-height: 24px;
  justify-self: end;
  padding: 0;
  border: 0;
  color: var(--muted);
  background: transparent;
  font-size: 11px;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}
.coupon-unuse:hover,
.coupon-unuse:focus-visible { color: var(--red-dark); outline: 0; }
.info-empty { padding: 76px 12px; border-bottom: 1px solid var(--line); text-align: center; }
.info-empty-title { display: block; font: 700 22px/1.4 "Gowun Batang", "Noto Serif KR", serif; }
.info-empty-description { margin: 10px 0 0; color: var(--muted); font-size: 13px; }
.info-loading { padding: 64px 0; color: var(--muted); text-align: center; }
.patch-note-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
.patch-note-item {
  min-width: 0;
  border: 1px solid var(--line);
  border-top: 2px solid rgba(117,23,15,.72);
  border-radius: 4px;
  background: rgba(247,242,231,.58);
  overflow: hidden;
  transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease;
}
.patch-note-link { display: grid; grid-template-rows: auto 1fr; height: 100%; color: inherit; }
.patch-note-thumbnail {
  position: relative;
  aspect-ratio: 16 / 9;
  border-bottom: 1px solid var(--line);
  background: rgba(52,74,87,.12);
  overflow: hidden;
}
.patch-note-thumbnail img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.patch-note-thumbnail.is-placeholder { display: grid; place-items: center; color: rgba(117,23,15,.42); background: var(--paper-light); }
.patch-note-thumbnail.is-placeholder span { font: 700 54px/1 "Gowun Batang", "Noto Serif KR", serif; }
.patch-note-content { display: flex; flex-direction: column; min-width: 0; padding: 22px 24px 24px; }
.patch-note-meta { display: flex; flex-wrap: wrap; gap: 7px 14px; margin: 0 0 11px; color: var(--red); font-size: 10px; font-weight: 800; }
.patch-note-date { color: var(--red-dark); font: 700 11px/1.5 "Gowun Batang", serif; }
.patch-note-content > h2 { margin: 0; font-size: 22px; line-height: 1.42; text-wrap: pretty; }
.patch-note-summary {
  display: -webkit-box;
  margin: 11px 0 0;
  color: var(--muted);
  overflow: hidden;
  font-size: 12px;
  line-height: 1.72;
  text-wrap: pretty;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
.patch-note-section { margin-top: 22px; }
.patch-note-section h3 { margin: 0 0 9px; font-size: 15px; }
.patch-note-section ul { margin: 0; padding-left: 18px; color: var(--muted); font-size: 12px; }
.patch-note-section li + li { margin-top: 5px; }
.patch-note-open { align-self: flex-start; margin-top: auto; padding-top: 18px; color: var(--red-dark); font-size: 10px; font-weight: 800; }
.patch-note-item:first-child { grid-column: 1 / -1; }
.patch-note-item:first-child .patch-note-link { grid-template-columns: minmax(340px, .92fr) minmax(0, 1.08fr); grid-template-rows: 1fr; }
.patch-note-item:first-child .patch-note-thumbnail { min-height: 300px; aspect-ratio: auto; border-right: 1px solid var(--line); border-bottom: 0; }
.patch-note-item:first-child .patch-note-content { justify-content: center; padding: 34px 38px; }
.patch-note-item:first-child .patch-note-content > h2 { font-size: 30px; }
.patch-note-item:first-child .patch-note-summary { font-size: 13px; -webkit-line-clamp: 4; }
.patch-note-item:hover { border-color: rgba(117,23,15,.48); box-shadow: 0 14px 34px rgba(42,32,20,.11); transform: translateY(-3px); }
.patch-note-item:hover .patch-note-thumbnail img { transform: scale(1.035); }
.patch-note-item:hover .patch-note-content > h2 { color: var(--red-dark); }
.info-source-note { display: flex; justify-content: flex-end; align-items: center; flex-wrap: wrap; gap: 5px 9px; margin: 17px 0 0; color: var(--muted); font-size: 10px; }
.info-source-note span { color: var(--red); font-weight: 800; }
.info-source-note a { color: var(--ink); text-decoration: underline; text-underline-offset: 3px; }
.info-source-note small { font-size: inherit; }
.info-footer { display: flex; justify-content: space-between; align-items: center; padding: 18px max(5vw, calc((100vw - 1120px) / 2)); color: var(--paper-light); background: #171813; }
.info-footer span { color: #c55e51; }
.info-live { position: fixed; width: 1px; height: 1px; overflow: hidden; clip-path: inset(50%); white-space: nowrap; }

@media (max-width: 850px) {
  .info-main { padding-top: 68px; }
  .info-hero { min-height: 102px; padding: 13px 24px; }
  .info-hero-inner { width: 100%; }
  .info-hero h1 { font-size: 27px; }
  .info-tabs { margin: 0 24px; }
  .info-content { width: calc(100% - 48px); padding-top: 46px; }
  .coupon-quick { grid-template-columns: minmax(140px, .7fr) minmax(220px, 1.3fr); gap: 18px; }
  .coupon-quick-copy { grid-column: 2; justify-self: start; }
  .patch-note-item:first-child .patch-note-link { grid-template-columns: minmax(260px, .9fr) minmax(0, 1.1fr); }
  .patch-note-item:first-child .patch-note-content { padding: 28px; }
  .patch-note-item:first-child .patch-note-content > h2 { font-size: 25px; }
}

@media (max-width: 560px) {
  .info-hero { min-height: 94px; padding: 12px 22px; }
  .info-hero-inner { width: 100%; }
  .info-hero h1 { font-size: 25px; }
  .info-hero-description { font-size: 10px; line-height: 1.4; }
  .info-tabs { gap: 24px; min-height: 56px; margin: 0 22px; }
  .info-content { width: calc(100% - 44px); padding: 40px 0 72px; }
  .info-content-heading { align-items: flex-start; margin-bottom: 26px; }
  .info-content-heading h2 { font-size: 28px; }
  .info-total strong { font-size: 26px; }
  .coupon-quick { grid-template-columns: 1fr; gap: 18px; padding: 22px 18px; }
  .coupon-quick-copy { grid-column: 1; width: 100%; }
  .coupon-controls { align-items: stretch; flex-direction: column; gap: 10px; }
  .coupon-toolbar { display: flex; width: 100%; }
  .coupon-toolbar button { flex: 1; padding: 0 8px; }
  .coupon-list { grid-template-columns: 1fr; }
  .coupon-item { padding: 16px 0 14px; }
  .patch-note-list { grid-template-columns: 1fr; gap: 16px; }
  .patch-note-item:first-child { grid-column: auto; }
  .patch-note-item:first-child .patch-note-link { grid-template-columns: 1fr; grid-template-rows: auto 1fr; }
  .patch-note-item:first-child .patch-note-thumbnail { min-height: 0; aspect-ratio: 16 / 9; border-right: 0; border-bottom: 1px solid var(--line); }
  .patch-note-item:first-child .patch-note-content,
  .patch-note-content { padding: 20px 20px 22px; }
  .patch-note-item:first-child .patch-note-content > h2,
  .patch-note-content > h2 { font-size: 21px; }
  .patch-note-item:first-child .patch-note-summary { font-size: 12px; -webkit-line-clamp: 3; }
  .info-source-note { justify-content: flex-start; }
  .info-empty { padding: 58px 8px; }
}
