.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-notes-page .info-content { width: min(1320px, calc(100% - 48px)); padding-top: 38px; }
.patch-notes-page .info-content-heading { margin-bottom: 24px; }
.patch-note-list { display: grid; grid-template-columns: repeat(auto-fill, minmax(270px, 1fr)); gap: 14px; }
.patch-note-featured-list {
  display: grid;
  width: 100%;
  min-width: 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-column: 1 / -1;
  gap: 14px;
}
.patch-note-item {
  min-width: 0;
  min-height: 292px;
  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 minmax(0, 1fr); height: 100%; color: inherit; }
.patch-note-link.is-text-only { grid-template-rows: 1fr; }
.patch-note-thumbnail {
  position: relative;
  height: auto;
  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 img.is-loading { opacity: .18; filter: grayscale(1); }
.patch-note-video-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
  display: inline-flex;
  min-height: 25px;
  align-items: center;
  gap: 6px;
  padding: 0 8px;
  border: 1px solid rgba(255,255,255,.56);
  border-radius: 2px;
  color: #fff;
  background: rgba(23,24,19,.84);
  box-shadow: 0 2px 8px rgba(0,0,0,.18);
  font-size: 10px;
  font-weight: 800;
  line-height: 1;
}
.patch-note-video-badge::before {
  width: 0;
  height: 0;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 7px solid currentColor;
  content: "";
}
.patch-note-item:hover .patch-note-video-badge { background: rgba(117,23,15,.94); }
.patch-note-content { display: flex; min-width: 0; min-height: 179px; flex-direction: column; padding: 14px 15px 15px; }
.patch-note-item.is-text-only .patch-note-content { min-height: 290px; padding-top: 18px; }
.patch-note-item.is-featured { min-height: 350px; }
.patch-note-item.is-featured .patch-note-link { grid-template-rows: auto minmax(0, 1fr); }
.patch-note-item.is-featured .patch-note-link.is-text-only { grid-template-rows: 1fr; }
.patch-note-item.is-featured .patch-note-thumbnail { height: auto; }
.patch-note-item.is-featured .patch-note-content { min-height: 0; padding: 15px 17px 16px; }
.patch-note-item.is-featured.is-text-only .patch-note-content { min-height: 0; padding-top: 19px; }
.patch-note-item.is-featured .patch-note-content > h2 { min-height: 54px; font-size: 19px; line-height: 1.42; }
.patch-note-item.is-featured .patch-note-summary { font-size: 11px; line-height: 1.6; -webkit-line-clamp: 2; }
.patch-note-item.is-featured .patch-note-open { font-size: 9px; }
.patch-note-meta { display: flex; min-width: 0; align-items: center; justify-content: space-between; gap: 6px 10px; margin: 0 0 8px; color: var(--red); font-size: 9px; font-weight: 800; }
.patch-note-meta span { min-width: 0; overflow: hidden; text-align: right; text-overflow: ellipsis; white-space: nowrap; }
.patch-note-date { flex: none; color: var(--red-dark); font: 700 10px/1.5 "Gowun Batang", serif; }
.patch-note-content > h2 {
  display: -webkit-box;
  min-height: 48px;
  margin: 0;
  overflow: hidden;
  font-size: 17px;
  line-height: 1.42;
  text-wrap: pretty;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.patch-note-summary {
  display: -webkit-box;
  margin: 7px 0 0;
  color: var(--muted);
  overflow: hidden;
  font-size: 11px;
  line-height: 1.58;
  text-wrap: pretty;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
.patch-note-item.is-text-only .patch-note-summary { -webkit-line-clamp: 8; }
.patch-note-item.is-text-only.has-no-summary {
  min-height: 154px;
  align-self: start;
}
.patch-note-item.is-text-only.has-no-summary .patch-note-content { min-height: 152px; }
.patch-note-section { display: none; }
.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: 10px; color: var(--red-dark); font-size: 9px; font-weight: 800; }
.patch-note-thumbnail .patch-note-open {
  position: absolute;
  right: 10px;
  bottom: 10px;
  z-index: 1;
  margin: 0;
  padding: 6px 8px;
  border: 1px solid rgba(255,255,255,.48);
  border-radius: 2px;
  color: #fff;
  background: rgba(23,24,19,.82);
  font-size: 9px;
  line-height: 1;
}
.patch-note-item:hover .patch-note-thumbnail .patch-note-open { background: rgba(117,23,15,.94); }
.patch-note-item:hover { border-color: rgba(117,23,15,.48); box-shadow: 0 10px 24px rgba(42,32,20,.1); transform: translateY(-2px); }
.patch-note-item:hover .patch-note-thumbnail img { transform: scale(1.035); }
.patch-note-item:hover .patch-note-content > h2 { color: var(--red-dark); }
.patch-note-item.is-recent {
  border-color: rgba(117,23,15,.48);
  border-top-width: 3px;
  border-top-color: var(--red);
  background: rgba(250,242,228,.98);
  box-shadow: 0 8px 22px rgba(75,25,18,.12);
}
.patch-note-item.is-recent .patch-note-content > h2 { color: var(--red-dark); }
.patch-note-item.is-recent .patch-note-date::after {
  content: "NEW";
  display: inline-flex;
  min-height: 19px;
  align-items: center;
  margin-left: 7px;
  padding: 0 7px;
  border: 1px solid var(--red);
  border-radius: 2px;
  color: #fff;
  background: var(--red);
  font: 800 9px/1 "Noto Sans KR", sans-serif;
}
.patch-pagination { display: flex; justify-content: center; align-items: center; gap: 16px; margin-top: 28px; }
.patch-pagination[hidden] { display: none; }
.patch-pagination button {
  min-width: 72px;
  min-height: 36px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--ink);
  background: transparent;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
}
.patch-pagination button:hover,
.patch-pagination button:focus-visible { border-color: var(--red-dark); color: var(--red-dark); outline: 0; }
.patch-pagination button:disabled { color: var(--muted); cursor: default; opacity: .45; }
.patch-pagination > span { display: flex; min-width: 72px; justify-content: center; align-items: baseline; gap: 7px; color: var(--muted); font-size: 12px; }
.patch-pagination strong { color: var(--red-dark); font: 700 17px/1 "Gowun Batang", serif; }
.patch-pagination i { font-style: normal; }
.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 i { color: var(--muted); font-style: normal; }
.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-notes-page .info-content { width: calc(100% - 40px); padding-top: 34px; }
}

@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-notes-page .info-content { width: calc(100% - 32px); padding-top: 30px; }
  .patch-note-list { grid-template-columns: 1fr; gap: 12px; }
  .patch-note-featured-list { grid-template-columns: 1fr; gap: 12px; }
  .patch-note-item { min-height: 276px; }
  .patch-note-link { grid-template-rows: auto minmax(0, 1fr); }
  .patch-note-thumbnail { height: auto; }
  .patch-note-content { min-height: 155px; padding: 14px 16px 15px; }
  .patch-note-item.is-text-only .patch-note-content { min-height: 274px; }
  .patch-note-item.is-text-only.has-no-summary { min-height: 150px; }
  .patch-note-item.is-text-only.has-no-summary .patch-note-content { min-height: 148px; }
  .patch-note-content > h2 { min-height: 46px; font-size: 17px; }
  .patch-note-item.is-featured { min-height: 320px; }
  .patch-note-item.is-featured .patch-note-link { grid-template-rows: auto minmax(0, 1fr); }
  .patch-note-item.is-featured .patch-note-thumbnail { height: auto; }
  .patch-note-item.is-featured .patch-note-content { min-height: 0; padding: 14px 16px 15px; }
  .patch-note-item.is-featured.is-text-only .patch-note-content { min-height: 0; }
  .patch-note-item.is-featured .patch-note-content > h2 { min-height: 51px; font-size: 18px; }
  .info-source-note { justify-content: flex-start; }
  .info-empty { padding: 58px 8px; }
}
