body { background: var(--dc-ink); color: var(--dc-white); }
.compare-header { position: absolute; inset: 0 0 auto; z-index: 10; min-height: 112px; pointer-events: none; }
.compare-header__inner { min-height: 112px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid rgba(255,255,255,.5); }
.compare-header h1 { margin: 0; font-family: "DM Sans", sans-serif; font-size: 32px; font-weight: 700; line-height: 1; }
.compare-header p { margin: 0; font-size: 12px; text-align: right; }
.compare-grid { min-height: 100svh; display: grid; grid-template-columns: 1fr 1fr; }
.compare-option { min-height: 100svh; position: relative; overflow: hidden; color: var(--dc-white); }
.compare-option:first-child { border-right: 1px solid rgba(255,255,255,.48); }
.compare-option img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.compare-option:hover img { transform: scale(1.02); }
.compare-caption { position: absolute; inset: auto 0 0; min-height: 300px; display: flex; flex-direction: column; justify-content: flex-end; padding: 54px max(32px, calc((100vw - var(--dc-container)) / 4)); background: rgba(21,21,21,.92); }
.compare-caption small { margin-bottom: 14px; color: var(--dc-accent); font-family: "DM Sans", sans-serif; font-size: 12px; font-weight: 700; }
.compare-caption h2 { margin: 0 0 14px; font-family: "Noto Serif KR", serif; font-size: 40px; font-weight: 500; line-height: 1.18; }
.compare-option:last-child .compare-caption h2 { font-family: Archivo, Pretendard, sans-serif; font-weight: 650; }
.compare-caption p { max-width: 480px; margin: 0 0 24px; color: #ccc; }
.compare-link { min-height: 48px; width: fit-content; display: inline-flex; align-items: center; gap: 10px; padding: 0 18px; color: var(--dc-ink); background: var(--dc-accent); font-weight: 800; }
.compare-link svg { width: 18px; height: 18px; }
.compare-foot { background: var(--dc-ink); }
.compare-foot .dc-container { min-height: 68px; display: flex; align-items: center; justify-content: space-between; color: #999; font-size: 12px; }

@media (max-width: 800px) {
  .compare-header { position: fixed; background: rgba(21,21,21,.92); }
  .compare-header h1 { font-size: 24px; }
  .compare-grid { grid-template-columns: 1fr; }
  .compare-option { min-height: 780px; }
  .compare-option:first-child { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.48); }
}

@media (max-width: 620px) {
  .compare-header, .compare-header__inner { min-height: 86px; }
  .compare-header p { display: none; }
  .compare-option { min-height: 720px; }
  .compare-caption { min-height: 360px; padding: 38px 18px; }
  .compare-caption h2 { font-size: 34px; }
  .compare-link { width: 100%; justify-content: center; }
  .compare-foot .dc-container { align-items: flex-start; flex-direction: column; justify-content: center; gap: 4px; }
}

@media (prefers-reduced-motion: reduce) {
  .compare-option img { transition: none; }
}
