/* ===========================================
   MARATHON 110 - Classic For All
   =========================================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&display=swap');

/* RESET */
.magazine-page,
.magazine-page *,
.magazine-page *::before,
.magazine-page *::after { box-sizing: border-box; margin: 0; padding: 0; }

.magazine-page {
  font-family: 'Pretendard Variable', Pretendard, -apple-system, sans-serif;
  font-feature-settings: 'case' on, 'ss01' on;
  text-align: left;
  color: #1d1d1d; background: #fff; line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  letter-spacing: -0.01em;
  width: 100vw; position: relative;
  left: 50%; right: 50%;
  margin-left: -50vw; margin-right: -50vw;
  --max: 1600px;
  --gutter-pc: 160px;
  --gutter-tablet: 60px;
  --gutter-mo: 16px;
  --c-title: #1d1d1d;
  --c-bg5: #f8f8f8;
  --c-red: #D0122B;
  --c-placeholder: #d9d9d9;
  --gnb-offset: 0px;
  word-break: keep-all;
  overflow-wrap: break-word;
}

/* 자식 컨테이너 가로 스크롤 방지 */
.magazine-page > section,
.magazine-page > article { max-width: 100vw; overflow-x: clip; }

.magazine-page img,
.magazine-page video { display: block; max-width: 100%; }
.magazine-page a { color: inherit; text-decoration: none; }
.magazine-page button { background: none; border: 0; cursor: pointer; font-family: inherit; }
.magazine-page ul, .magazine-page ol { list-style: none; }

/* ===========================================
   HERO
   =========================================== */
.magazine-page .hero { width: 100%; }
.magazine-page .hero__visual { width: 100%; height: 760px; background: var(--c-placeholder); }
.magazine-page .hero__visual img { width: 100%; height: 100%; object-fit: cover; }
.magazine-page .hero__body { width: 100%; padding: 160px 0 80px; }
.magazine-page .hero__inner { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 0; align-items: stretch; }
.magazine-page .hero__title-block { display: flex; flex-direction: column; justify-content: space-between; gap: 8px; min-height: 100%; }
.magazine-page .hero__title-row { display: flex; flex-direction: column; gap: 18px; }
.magazine-page .hero__title { display: flex; align-items: flex-end; gap: 5px; text-transform: uppercase; }
.magazine-page .hero__title-main { font-family: 'General Sans', 'Pretendard Variable', sans-serif; font-weight: 700; font-size: 46px; letter-spacing: -0.46px; line-height: 1; }
.magazine-page .hero__title-num { font-family: 'General Sans', 'Pretendard Variable', sans-serif; font-weight: 700; font-size: 48px; letter-spacing: -0.48px; line-height: 1; }
.magazine-page .hero__subtitle { font-family: 'General Sans', 'Pretendard Variable', sans-serif; font-weight: 400; font-size: 22px; letter-spacing: -0.22px; line-height: 1; }
.magazine-page .hero__tags { display: flex; flex-direction: column; gap: 4px; font-weight: 600; font-size: 14px; letter-spacing: -0.14px; line-height: 1.5; }
.magazine-page .hero__desc {
  font-weight: 400;
  font-size: 18px;
  letter-spacing: -0.18px;
  line-height: 1.5;
  white-space: pre-wrap;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-self: stretch;
  min-height: 100%;
}
.magazine-page .hero__desc p { margin: 0; }

.magazine-page .chapter { scroll-margin-top: calc(var(--gnb-offset) + 60px); }

/* ===========================================
   PRODUCT GRID - 5개 컬러웨이
   =========================================== */
.magazine-page .products { padding: 0 0 160px; }
.magazine-page .products__inner { max-width: 1280px; margin: 0 auto; display: flex; justify-content: space-between; gap: 0; }
.magazine-page .product-card { display: flex; flex-direction: column; align-items: center; flex: 1; }
.magazine-page .product-card__img { width: 240px; height: 240px; margin-bottom: 8px; overflow: hidden; }
.magazine-page .product-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.magazine-page .product-card:hover .product-card__img img { transform: scale(1.03); }
.magazine-page .product-card__name { font-weight: 400; font-size: 14px; letter-spacing: -0.16px; text-transform: uppercase; margin-bottom: 8px; }
.magazine-page .product-card__link { font-weight: 600; font-size: 14px; letter-spacing: -0.16px; text-decoration: underline; text-align: center; }

/* ===========================================
   가로 배너 + 텍스트 (NEW)
   =========================================== */
.magazine-page .banner-strip {
  max-width: 1600px;
  margin: 0 auto 240px;
  width: 100%;
}
.magazine-page .banner-strip .swiper {
  width: 100%;
  overflow: hidden;
  position: relative; /* pagination 기준점 */
}
.magazine-page .banner-strip__swiper .swiper-slide {
  flex-shrink: 0;
  opacity: 1 !important;       /* img-fade 트랜지션 무력화 */
  transform: none !important;
}
.magazine-page .banner-strip__swiper .banner-strip__img,
.magazine-page .banner-strip__swiper .banner-strip__img img {
  opacity: 1 !important;
  transform: none !important;
}
.magazine-page .banner-strip__img {
  width: 100%;
  background: var(--c-placeholder);
  overflow: hidden;
}
.magazine-page .banner-strip__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* 페이지네이션 - 이미지 내부 하단 중앙 */
.magazine-page .banner-strip__pagination {
  position: absolute;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  justify-content: center;
  gap: 4px;
  margin: 0;
  padding: 0;
}
.magazine-page .banner-strip__pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
  opacity: 1;
  cursor: pointer;
  transition: background .2s, width .2s;
  display: inline-block;
}
.magazine-page .banner-strip__pagination .swiper-pagination-bullet-active {
  background: #fff;
  width: 20px;
  border-radius: 4px;
}
.magazine-page .banner-strip__text {
  margin-top: 24px;
  font-weight: 400;
  font-size: 18px;
  letter-spacing: -0.18px;
  line-height: 1.6;
  text-align: center;
}

/* ===========================================
   CHAPTER COMMON
   =========================================== */
.magazine-page .chapter__hero { position: relative; width: 100%; height: 760px; background: var(--c-placeholder); margin-bottom: 120px; overflow: hidden; }
.magazine-page .chapter__hero img { width: 100%; height: 100%; object-fit: cover; }

/* 챕터 타이틀 - hero 이미지 위 오버레이 */
.magazine-page .chapter__title-block { position: absolute; left: var(--gutter-pc); bottom: 80px; z-index: 2; color: #fff; }
.magazine-page .chapter__title { font-weight: 700; font-size: 42px; letter-spacing: -0.42px; line-height: 1; text-transform: uppercase; margin-bottom: 16px; color: inherit; }
.magazine-page .chapter__title-en { font-family: 'General Sans', 'Pretendard Variable', sans-serif; font-weight: 400; font-size: 16px; letter-spacing: -0.16px; line-height: 1; color: inherit; }
/* 가독성을 위한 dim */
.magazine-page .chapter__hero::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0) 60%, rgba(0,0,0,.35) 100%); pointer-events: none; z-index: 1; }

/* 챕터 인트로 */
.magazine-page .chapter__intro { max-width: 1600px; margin: 0 auto; display: flex; align-items: flex-start; justify-content: space-between; gap: 60px; margin-bottom: 160px; }
.magazine-page .chapter__intro-text { flex: 1; max-width: 1120px; font-weight: 600; font-size: 32px; letter-spacing: -0.26px; line-height: 1.5; }
.magazine-page .chapter__intro-author { display: flex; flex-direction: column; gap: 0; flex-shrink: 0; }
.magazine-page .chapter__intro-author-name { font-weight: 600; font-size: 16px; letter-spacing: -0.16px; line-height: 1.5; text-transform: uppercase; }
.magazine-page .chapter__intro-author-handle { font-weight: 400; font-size: 16px; letter-spacing: -0.16px; line-height: 1.5; }

/* QA 텍스트 */
.magazine-page .chapter__qa-text { flex: 1; max-width: 640px; display: flex; flex-direction: column; gap: 40px; }
.magazine-page .qa-item { display: flex; flex-direction: column; gap: 0; font-size: 18px; letter-spacing: -0.18px; line-height: 1.5; }
.magazine-page .qa-item__q { font-size: 18px; font-weight: 600; padding-bottom: 4px; }
.magazine-page .qa-item__a { font-weight: 400; }

/* CHAPTER STACK - 좌이미지스택 + 우Q&A (sticky sidebar) */
.magazine-page .chapter__stack { max-width: 1600px; margin: 0 auto; display: flex; gap: 160px; margin-bottom: 120px; align-items: flex-start; }
.magazine-page .chapter__stack-imgs { flex-shrink: 0; width: 800px; display: flex; flex-direction: column; gap: 40px; }
.magazine-page .chapter__stack-imgs > div { width: 100%; height: 1200px; background: var(--c-placeholder); }
.magazine-page .chapter__stack-imgs img { width: 100%; height: 100%; object-fit: cover; }
/* 우측 텍스트 sticky 고정 */
.magazine-page .chapter__stack .chapter__qa-text {
  position: sticky;
  top: calc(var(--gnb-offset) + 60px + 80px);
  align-self: flex-start;
  max-height: calc(100vh - var(--gnb-offset) - 60px - 100px);
  overflow-y: auto;
}
.magazine-page .chapter__stack .chapter__qa-text::-webkit-scrollbar { width: 0; }

/* QA-IMAGE 매칭 인터랙션 (stack 내부에서만 동작) */
.magazine-page .chapter__stack .qa-item {
  cursor: pointer;
  opacity: 0.35;
  transition: opacity 0.4s ease;
  position: relative;
  padding-left: 16px;
}
.magazine-page .chapter__stack .qa-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 4px;
  width: 2px;
  height: 0;
  background: var(--c-title);
  transition: height 0.4s ease;
}
.magazine-page .chapter__stack .qa-item.is-active {
  opacity: 1;
}
.magazine-page .chapter__stack .qa-item.is-active::before {
  height: calc(100% - 4px);
}

/* ===========================================
   CHAPTER QA - 좌이미지+우텍스트 (또는 reverse)
   =========================================== */
.magazine-page .chapter__qa { max-width: 1600px; margin: 0 auto; display: flex; gap: 160px; margin-bottom: 120px; align-items: flex-start; }
.magazine-page .chapter__qa--reverse { flex-direction: row-reverse; }
.magazine-page .chapter__qa-img { flex-shrink: 0; width: 800px; height: 1200px; background: var(--c-placeholder); }
.magazine-page .chapter__qa-img img { width: 100%; height: 100%; object-fit: cover; }

/* ===========================================
   강조 텍스트 (NEW)
   =========================================== */
.magazine-page .feature-quote {
  max-width: 1600px;
  margin: 120px auto;
  text-align: center;
}
.magazine-page .feature-quote p {
  font-weight: 600;
  font-size: 32px;
  letter-spacing: -0.32px;
  line-height: 1.5;
}
.magazine-page .feature-quote .quote-mark {
  font-family: 'Playfair Display';
  font-weight: 700;
  font-size: 1.4em;
  line-height: 1;
  vertical-align: -0.15em;
  display: inline-block;
}
.magazine-page .feature-quote .quote-mark--open {
  letter-spacing: -0.2em;
  margin-right: 0.2em;
}
.magazine-page .feature-quote .quote-mark--close {
  letter-spacing: -0.2em;
  margin-left: 0.05em;
}

/* ===========================================
   2단 이미지 (NEW)
   =========================================== */
.magazine-page .duo-img {
  max-width: 1600px;
  margin: 0 auto 120px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.magazine-page .duo-img > div {
  width: 100%;
  overflow: hidden;
}
.magazine-page .duo-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===========================================
   이미지 페이드인 애니메이션
   =========================================== */
.magazine-page .img-fade {
  will-change: transform, opacity;
  opacity: 0;
  transform: perspective(1200px) translateY(50px);
  transition: opacity 0.85s cubic-bezier(0.34, 1.32, 0.45, 1) 0.2s,
              transform 0.85s cubic-bezier(0.34, 1.32, 0.45, 1) 0.2s;
}
.magazine-page .img-fade.is-in {
  opacity: 1;
  transform: perspective(1200px) translateY(0);
}

/* reveal 애니메이션 */
.magazine-page .reveal { opacity: 0; transform: translateY(40px); transition: opacity .8s ease, transform .8s ease; }
.magazine-page .reveal.is-in { opacity: 1; transform: translateY(0); }

/* ===========================================
   MORE STORIES (인터뷰 유도 영역, 와이드 검정)
   =========================================== */
.magazine-page .more-stories {
  width: 100vw;
  position: relative;
  left: 50%;
  margin-left: -50vw;
  background: #000;
  color: #fff;
  padding: 100px 0;
  overflow: hidden;
}

/* 헤드라인 + 컨트롤 (한 줄 배치) */
.magazine-page .more-stories__head {
  max-width: 1600px;
  margin: 0 auto 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.magazine-page .more-stories__headline {
  font-weight: 600;
  font-size: 36px;
  letter-spacing: -0.36px;
  line-height: 1.4;
  color: #fff;
  margin: 0;
}

/* 카드 슬라이더 */
.magazine-page .more-stories__inner {
  max-width: 1600px;
  margin: 0 auto;
  position: relative;
}

/* 네비게이션 버튼 */
.magazine-page .more-stories__controls {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
}
.magazine-page .more-stories__btn {
  width: 40px;
  height: 40px;
  padding: 0;
  background: none;
  border: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: opacity .2s;
}
.magazine-page .more-stories__btn:hover { opacity: .7; }
.magazine-page .more-stories__btn.is-disabled {
  opacity: 0.25;
  cursor: default;
  pointer-events: none;
}
.magazine-page .more-stories__btn img {
  width: 24px;
  height: 24px;
  display: block;
  filter: brightness(0) invert(1);
}
.magazine-page .more-stories__btn--next img {
  transform: scaleX(-1);
}
/* Swiper */
.magazine-page .more-stories__swiper {
  width: 100%;
  overflow: hidden;
}
.magazine-page .more-stories__list {
  list-style: none;
  padding: 0;
  margin: 0;
  align-items: stretch;
}
.magazine-page .more-stories__item {
  height: auto;
  box-sizing: border-box;
  display: flex;
}
.magazine-page .more-stories__card {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 20px;
  align-items: stretch;
  color: #eee;
  text-decoration: none;
  width: 100%;
  height: 100%;
}
.magazine-page .more-stories__thumb {
  width: 200px;
  height: 200px;
  overflow: hidden;
  background: #1a1a1a;
}
.magazine-page .more-stories__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s;
}
.magazine-page .more-stories__card:hover .more-stories__thumb img {
  transform: scale(1.04);
}
.magazine-page .more-stories__info {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 20px 0;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
}
.magazine-page .more-stories__vol {
  font-family: 'General Sans', 'Pretendard Variable', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.2px;
  color: #fff;
}
.magazine-page .more-stories__name {
  margin: 6px 0 12px;
  font-size: 16px;
  line-height: 1.5;
  color: #eee;
}
.magazine-page .more-stories__name strong { font-weight: 600; }
.magazine-page .more-stories__desc {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: rgba(238,238,238,.7);
  display: -webkit-box;
  -webkit-line-clamp: 4;
  overflow: hidden;
  flex: 1 1 auto;
}
.magazine-page .more-stories__link {
  position: absolute;
  bottom: 12px;
  right: 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #eee;
}
.magazine-page .more-stories__link i { font-style: normal; }


/* ===========================================
   TABLET 768~1279
   =========================================== */
@media (min-width: 768px) and (max-width: 1279px) {
  .magazine-page { --gutter-pc: 60px; }

  /* HERO */
  .magazine-page .hero__visual { height: auto; aspect-ratio: 16/9; }
  .magazine-page .hero__body { padding: 80px 0 60px; }
  .magazine-page .hero__inner { padding: 0 var(--gutter-tablet); gap: 40px; }
  .magazine-page .hero__title-block { justify-content: flex-start; min-height: 0; gap: 32px; }
  .magazine-page .hero__desc { justify-content: flex-start; min-height: 0; gap: 24px; }
  .magazine-page .hero__title-main { font-size: 36px; }
  .magazine-page .hero__title-num { font-size: 38px; }
  .magazine-page .hero__subtitle { font-size: 18px; }
  .magazine-page .hero__desc { font-size: 16px; }
  .magazine-page .hero__desc p + p { margin-top: 24px; }

  /* PRODUCTS */
  .magazine-page .products { padding: 80px 0 60px; }
  .magazine-page .products__inner { padding: 0 var(--gutter-tablet); flex-wrap: wrap; gap: 24px; justify-content: center; align-items: center; }
  .magazine-page .product-card { flex: 0 0 calc(33.33% - 16px); }
  .magazine-page .product-card__img { width: 180px; height: 180px; margin-bottom: 12px; }
  .magazine-page .product-card__name { font-size: 15px; }
  .magazine-page .product-card__link { font-size: 15px; }

  /* 가로 배너 */
  .magazine-page .banner-strip { padding: 0 var(--gutter-tablet); margin-bottom: 40px; }
  .magazine-page .banner-strip__img { height: auto; aspect-ratio: 16/5; }
  .magazine-page .banner-strip__pagination { bottom: 16px; }
  .magazine-page .banner-strip__text { font-size: 16px; margin-top: 24px; }

  /* CHAPTER */
  .magazine-page .chapter__hero { height: auto; aspect-ratio: 16/9; margin-bottom: 60px; }
  .magazine-page .chapter__title-block { left: var(--gutter-tablet); bottom: 40px; padding: 0; margin-bottom: 0; }
  .magazine-page .chapter__title { font-size: 32px; }
  .magazine-page .chapter__intro { padding: 0 var(--gutter-tablet); gap: 32px; margin-bottom: 60px; flex-direction: column; }
  .magazine-page .chapter__intro-text { font-size: 22px; }
  .magazine-page .chapter__stack { padding: 0 var(--gutter-tablet); gap: 40px; margin-bottom: 60px; flex-direction: column; }
  .magazine-page .chapter__qa { padding: 0 var(--gutter-tablet); gap: 40px; margin-bottom: 60px; flex-direction: column; }
  .magazine-page .chapter__qa-img { width: 100%; height: auto; aspect-ratio: 2/3; }
  .magazine-page .chapter__qa-text { max-width: 100%; gap: 24px; }
  .magazine-page .qa-item { font-size: 16px; }
  .magazine-page .chapter__stack-imgs { width: 100%; gap: 24px; }
  .magazine-page .chapter__stack-imgs > div { height: auto; aspect-ratio: 2/3; }
  /* 태블릿에선 1단이라 sticky 해제 */
  .magazine-page .chapter__stack .chapter__qa-text { position: static; max-height: none; overflow: visible; }
  /* 매칭 인터랙션 비활성화 */
  .magazine-page .chapter__stack .qa-item { cursor: default; opacity: 1; padding-left: 0; }
  .magazine-page .chapter__stack .qa-item::before { display: none; }

  /* 강조 텍스트 */
  .magazine-page .feature-quote { padding: 0 var(--gutter-tablet); margin: 60px auto; }
  .magazine-page .feature-quote p { font-size: 24px; }

  /* 2단 이미지 */
  .magazine-page .duo-img { padding: 0 var(--gutter-tablet); gap: 24px; margin-bottom: 60px; }
  .magazine-page .duo-img > div { height: auto; aspect-ratio: 3/4; }

  /* MORE STORIES */
  .magazine-page .more-stories { padding: 60px 0; }
  .magazine-page .more-stories__head { padding: 0 var(--gutter-tablet); margin-bottom: 40px; gap: 20px; }
  .magazine-page .more-stories__headline { font-size: 26px; }
  .magazine-page .more-stories__btn { width: 36px; height: 36px; }
  .magazine-page .more-stories__btn img { width: 20px; height: 20px; }
  .magazine-page .more-stories__inner { padding: 0 var(--gutter-tablet); }
  .magazine-page .more-stories__card { grid-template-columns: 200px 1fr; gap: 20px; }
  .magazine-page .more-stories__thumb { width: 200px; height: 200px; }
}

/* ===========================================
   MOBILE ~767
   =========================================== */
@media (max-width: 767px) {
  /* HERO */
  .magazine-page .hero__visual { height: auto; aspect-ratio: 4/5; }
  .magazine-page .hero__body { padding: 40px 0; }
  .magazine-page .hero__inner { padding: 0 var(--gutter-mo); grid-template-columns: 1fr; gap: 24px; }
  .magazine-page .hero__title-block { justify-content: flex-start; min-height: 0; gap: 24px; }
  .magazine-page .hero__desc { justify-content: flex-start; min-height: 0; gap: 16px; }
  .magazine-page .hero__title-main { font-size: 32px; }
  .magazine-page .hero__title-num { font-size: 34px; }
  .magazine-page .hero__subtitle { font-size: 16px; }
  .magazine-page .hero__desc { font-size: 16px; }

  /* PRODUCTS */
  .magazine-page .products{padding: 0 0 60px;}
  .magazine-page .products__inner { padding: 0 var(--gutter-mo); flex-wrap: wrap; gap: 20px; justify-content: left; }
  .magazine-page .product-card { flex: 0 0 calc(50% - 10px); }
  .magazine-page .product-card__img { width: 100%; height: auto; aspect-ratio: 1/1; max-width: 160px; }

  /* 가로 배너 */
  .magazine-page .banner-strip { padding: 0 var(--gutter-mo); margin-bottom: 60px; }
  .magazine-page .banner-strip__img { height: auto; aspect-ratio: 16/9; }
  .magazine-page .banner-strip__pagination { bottom: 12px; gap: 6px; }
  .magazine-page .banner-strip__pagination .swiper-pagination-bullet { width: 6px; height: 6px; }
  .magazine-page .banner-strip__pagination .swiper-pagination-bullet-active { width: 16px; }
  .magazine-page .banner-strip__text { font-size: 14px; margin-top: 8px;}

  /* CHAPTER */
  .magazine-page .chapter__hero { height: auto; aspect-ratio: 4/3; margin-bottom: 40px; }
  .magazine-page .chapter__title-block { left: var(--gutter-mo); bottom: 24px; padding: 0; margin-bottom: 0; }
  .magazine-page .chapter__title { font-size: 24px; }
  .magazine-page .chapter__title-en { font-size: 13px; }
  .magazine-page .chapter__intro { padding: 0 var(--gutter-mo); gap: 16px; margin-bottom: 40px; flex-direction: column; }
  .magazine-page .chapter__intro-text { font-size: 20px; }
  .magazine-page .chapter__intro-author-name, .magazine-page .chapter__intro-author-handle { font-size: 14px; }
  .magazine-page .chapter__stack { padding: 0 var(--gutter-mo); gap: 20px; margin-bottom: 40px; flex-direction: column; }
  .magazine-page .chapter__qa { padding: 0 var(--gutter-mo); gap: 20px; margin-bottom: 40px; flex-direction: column; }
  .magazine-page .chapter__qa-img { width: 100%; height: auto; aspect-ratio: 3/4; }
  .magazine-page .chapter__qa-text { max-width: 100%; gap: 20px; }
  .magazine-page .qa-item { font-size: 14px; }
  .magazine-page .chapter__stack-imgs { width: 100%; gap: 16px; }
  .magazine-page .chapter__stack-imgs > div { height: auto; aspect-ratio: 3/4; }
  /* 모바일에선 1단이라 sticky 해제 */
  .magazine-page .chapter__stack .chapter__qa-text { position: static; max-height: none; overflow: visible; }
  /* 매칭 인터랙션 비활성화 */
  .magazine-page .chapter__stack .qa-item { cursor: default; opacity: 1; padding-left: 0; }
  .magazine-page .chapter__stack .qa-item::before { display: none; }

  /* 모바일 전용 - 이미지 셀 + 하단 오버레이 qa-item */
  .magazine-page .chapter__stack-cell {
    position: relative;
    overflow: hidden;
  }
  .magazine-page .chapter__stack-cell > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  .magazine-page .chapter__stack .qa-item--overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 60px 20px 20px;
    color: #fff;
    background: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0) 0%,
      rgba(0, 0, 0, 0.55) 60%,
      rgba(0, 0, 0, 0.75) 100%
    );
    pointer-events: none;
  }
  .magazine-page .chapter__stack .qa-item--overlay .qa-item__q {
    font-weight: 600;
    padding-bottom: 4px;
  }
  .magazine-page .chapter__stack .qa-item--overlay .qa-item__a {
    font-weight: 400;
    opacity: 0.92;
  }

  /* 강조 텍스트 */
  .magazine-page .feature-quote { margin: 0; margin-bottom: 60px; }
  .magazine-page .feature-quote p { font-size: 14px; }

  /* 2단 이미지 */
  .magazine-page .duo-img { grid-template-columns: 1fr; gap: 16px; margin-bottom: 24px; }
  .magazine-page .duo-img > div { padding: 0 var(--gutter-mo); height: auto; aspect-ratio: 3/4; }

  /* MORE STORIES */
  .magazine-page .more-stories { padding: 48px 0; }
  .magazine-page .more-stories__head { padding: 0 var(--gutter-mo); margin-bottom: 28px; gap: 16px; }
  .magazine-page .more-stories__headline { font-size: 20px; }
  .magazine-page .more-stories__btn { width: 32px; height: 32px; }
  .magazine-page .more-stories__btn img { width: 18px; height: 18px; }
  .magazine-page .more-stories__inner { padding: 0 0 0 var(--gutter-mo); }
  .magazine-page .more-stories__card { grid-template-columns: 1fr; grid-template-rows: auto 1fr; gap: 12px; }
  .magazine-page .more-stories__thumb { width: 100%; height: auto; aspect-ratio: 1/1; flex-shrink: 0; }
  .magazine-page .more-stories__info { padding: 16px 0; min-height: 0; }
  .magazine-page .more-stories__desc { -webkit-line-clamp: 3; }
}