/* 북커클래스 상세 전용 (bookr-class.html)
   공용 style.css 다음에 불러옵니다.
   ------------------------------------------------------------------ */



.drawer__current {
  margin-left: auto;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--nav-accent, var(--brand));
  flex: none;
}


/* 실제 화면 이미지 — 영상 자리와 같은 규격 */
.bk-shot {
  width: 100%;
  aspect-ratio: var(--v-ratio, 4 / 3);
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--shelf);
  display: block;
}

/* 자동 재생 영상 — 이미지 자리와 같은 규격으로 놓입니다.
   파일이 없으면 아무것도 그려지지 않으니 자리만 비어 보입니다. */
.bk-video {
  position: relative;
  width: 100%;
  aspect-ratio: var(--v-ratio, 4 / 3);
  border-radius: var(--radius);
  border: 1px solid var(--shelf);
  background: var(--brand-soft);
  overflow: hidden;
}

.bk-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* 기기에서 '동작 줄이기' 를 켠 사용자에게는 움직임을 멈춥니다.
   (실제 정지는 스크립트가 처리하고, 여기서는 표시만 정리합니다) */
@media (prefers-reduced-motion: reduce) {
  .bk-video video {
    /* 첫 화면 이미지가 보이도록 둡니다 */
  }}


/* 상품 상세의 히어로 — 배경 사진만 바꾸고 나머지는 메인과 동일합니다.
   (막 · 글 영역 620px · 최소 높이 모두 .home-hero 에서 물려받습니다)
   태블릿이 오른쪽에 있어 오른쪽 기준으로 자릅니다. */
.home-hero--bookr {
  background-color: #4257d8;
  background-image: url("../img/hero-sm.jpg");
  background-position: right center;
}

@media (min-width: 760px) {
  .home-hero--bookr {
    background-image: url("../img/hero-lg.jpg");
    background-position: right center;
  }}


/* 상단 통계 — 사진 위에 놓이므로 흰 글자 */
.bk-hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 40px;
  margin-top: 8px;
}

.bk-hero__stat {
  display: grid;
  gap: 2px;
}

.bk-hero__value {
  font-family: var(--font-display);
  font-size: clamp(24px, 4.4vw, 30px);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #fff;
}

.bk-hero__label {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.82);
}

/* 단계 카드 (왜 · 학습 흐름) */
.bk-steps {
  display: grid;
  gap: 16px;
}

.bk-step {
  display: grid;
  gap: 10px;
  align-content: start;
  padding: 28px 26px;
  border: 1px solid var(--shelf);
  border-radius: var(--radius);
  background: #fff;
}

.bk-step__no {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--cta);
}

.bk-step__title {
  font-size: 23px;
  color: var(--brand);
}

.bk-step__text {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.bk-step__metric {
  margin-top: 4px;
  padding-top: 14px;
  border-top: 1px solid var(--shelf);
  font-size: 16px;
  font-weight: 700;
  color: var(--brand);
}

.bk-step--result {
  border-color: var(--brand);
  background: var(--brand-soft);
}

@media (min-width: 900px) {
  .bk-steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
  }

  .bk-steps--four {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }}


/* 스토리 — 이미지 + 항목 */
.bk-story {
  display: grid;
  gap: 32px;
}

.bk-story__points {
  display: grid;
  gap: 22px;
  align-content: center;
}

.bk-story__point-title {
  font-size: 20px;
  color: var(--brand);
}

.bk-story__point-text {
  margin-top: 6px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.bk-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 32px;
}

.bk-tag {
  padding: 7px 15px;
  border-radius: 999px;
  background: var(--brand-soft);
  color: var(--brand);
  font-size: 15px;
  font-weight: 700;
}  .bk-level__figure .ph__label { color: var(--band); }
  .bk-level__figure img {
    display: block; width: 100%; aspect-ratio: 16 / 10;
    object-fit: cover; border-bottom: 1px solid var(--shelf);
  }


@media (min-width: 900px) {
  .bk-story {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 48px;
    align-items: center;
  }}


/* 서재 화면 — 왼쪽 영상 · 오른쪽 항목 3개 */
.bk-lib {
  display: grid;
  gap: 32px;
}

.bk-lib__points {
  display: grid;
  gap: 26px;
  align-content: center;
}

.bk-lib__title {
  font-size: 21px;
  color: var(--brand);
}

.bk-lib__text {
  margin-top: 6px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
  white-space: pre-line;
}

@media (min-width: 900px) {
  .bk-lib {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 48px;
    align-items: center;
  }}


/* 숫자 */
.bk-numbers {
  display: grid;
  gap: 0;
}

.bk-number {
  display: grid;
  gap: 4px;
  padding-block: 22px;
  border-top: 1px solid var(--shelf);
}

.bk-number__value {
  font-family: var(--font-display);
  font-size: clamp(28px, 5vw, 38px);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--brand);
}

.bk-number__label {
  color: var(--muted);
  font-size: 17px;
}

@media (min-width: 700px) {
  .bk-numbers {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    column-gap: 32px;
  }}


/* 콘텐츠 4종 — 좌우 교차 */
.bk-contents {
  display: grid;
  gap: 20px;
}

.bk-content {
  display: grid;
  gap: 24px;
  padding: 28px 26px;
  border: 1px solid var(--shelf);
  border-radius: var(--radius-lg);
  background: #fff;
}

.bk-content__tag {
  display: inline-flex;
  align-self: flex-start;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--brand);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.bk-content__title {
  margin-top: 12px;
  font-size: clamp(22px, 4.4vw, 27px);
  color: var(--brand);
}

.bk-content__text {
  margin-top: 10px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.bk-content__points {
  display: grid;
  gap: 10px;
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid var(--shelf);
}

.bk-content__point {
  display: flex;
  gap: 10px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-soft);
}

.bk-content__point::before {
  content: "";
  flex: none;
  width: 7px;
  height: 7px;
  margin-top: 9px;
  border-radius: 50%;
  background: var(--cta);
}

@media (min-width: 900px) {
  .bk-content {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
    align-items: center;
    gap: 44px;
    padding: 40px;
  }

  .bk-content--reverse .bk-content__body {
    order: 2;
  }

  .bk-content--reverse .bk-content__figure {
    order: 1;
  }}


/* 레벨 */
.bk-bands {
  display: flex;
  height: 54px;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 24px;
}

.bk-band {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1px;
  flex: 1;
  background: var(--band);
  color: #fff;
}

.bk-band__name {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.bk-band__sub {
  font-size: 13px;
  opacity: 0.88;
}

.bk-levels {
  display: grid;
  gap: 16px;
}

.bk-level {
  display: grid;
  gap: 10px;
  align-content: start;
  padding: 0 24px 26px;
  border: 1px solid var(--shelf);
  border-top: 4px solid var(--band);
  border-radius: 0 0 var(--radius) var(--radius);
  background: #fff;
}

  /* 레벨 카드 상단 이미지 */
  .bk-level__figure { margin: 0 -24px 6px; }
  .bk-level__figure .ph {
    aspect-ratio: 16 / 10;
    border: 0;
    border-bottom: 1px solid var(--shelf);
    border-radius: 0;
    background: color-mix(in srgb, var(--band) 10%, #fff);
  }
  .bk-level__figure .ph__label { color: var(--band); }
  .bk-level__figure img {
    display: block; width: 100%; aspect-ratio: 16 / 10;
    object-fit: cover; border-bottom: 1px solid var(--shelf);
  }


.bk-level__band {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--band);
}

.bk-level__title {
  font-size: 21px;
  color: var(--brand);
}

.bk-level__text {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.bk-note {
  margin-top: 24px;
  padding: 28px 26px;
  border-radius: var(--radius);
  background: var(--brand-soft);
}

.bk-note__title {
  font-size: 20px;
  color: var(--brand);
}

.bk-note__text {
  margin-top: 8px;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.75;
}

.bk-note__badge {
  display: inline-flex;
  margin-top: 18px;
  padding: 7px 15px;
  border-radius: 999px;
  background: #fff;
  color: var(--brand);
  font-size: 15px;
  font-weight: 700;
}

@media (min-width: 900px) {
  .bk-levels {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
  }}


/* 활용 사례 */
.bk-cases {
  display: grid;
  gap: 20px;
}

.bk-case {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 24px;
  border: 1px solid var(--shelf);
  border-radius: var(--radius-lg);
  background: #fff;
}

.bk-case__tag {
  align-self: flex-start;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--brand-soft);
  color: var(--brand);
  font-size: 14px;
  font-weight: 700;
}

.bk-case__title {
  font-size: 21px;
  color: var(--brand);
}

.bk-case__text {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.bk-case__points {
  display: grid;
  gap: 8px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--shelf);
}

.bk-case__point {
  display: flex;
  gap: 9px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-soft);
}

.bk-case__point::before {
  content: "";
  flex: none;
  width: 6px;
  height: 6px;
  margin-top: 8px;
  border-radius: 50%;
  background: var(--brand);
}

@media (min-width: 900px) {
  .bk-cases {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }}


/* 인용 */
.bk-quote {
  max-width: 820px;
  margin-inline: auto;
  text-align: center;
}

.bk-quote__text {
  font-family: var(--font-display);
  font-size: clamp(20px, 3.6vw, 27px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.6;
  color: var(--brand);
}

.bk-quote__who {
  margin-top: 22px;
  font-size: 16px;
  color: var(--muted);
}

.bk-quote__who b {
  color: var(--ink);
}

/* 수상 · 인증 */
.bk-awards {
  display: grid;
  gap: 14px;
}

.bk-award {
  display: grid;
  gap: 4px;
  padding: 22px 24px;
  border: 1px solid var(--shelf);
  border-radius: var(--radius);
  background: #fff;
}

.bk-award__name {
  font-size: 18px;
  color: var(--brand);
}

.bk-award__detail {
  color: var(--muted);
  font-size: 15px;
}

@media (min-width: 700px) {
  .bk-awards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }}


@media (min-width: 1024px) {
  .bk-awards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }}



/* --- 앱 다운로드 --------------------------------------------------------
   왼쪽에 제목 · 설명 · 스토어 배지, 오른쪽에 기기 이미지.
   배지 이미지가 없으면 글자만 있는 외곽선 버튼으로 나옵니다.            */

.bk-dl {
  display: grid;
  gap: 32px;
  align-items: center;
}

.bk-dl__title {
  font-family: var(--font-display);
  font-size: clamp(27px, 5vw, 39px);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.3;
  color: var(--brand);
  margin: 14px 0 0;
}

.bk-dl__text {
  margin-top: 12px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.75;
}

.bk-stores {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 40px;
  max-width: 396px;
}
.bk-store {
  display: block;
  border: 0;
  padding: 0;
  background: none;
  border-radius: 0;
  min-height: 0;
  transition: opacity 0.15s ease;
}
.bk-store:hover {
  opacity: 0.72;
}
.bk-store img {
  display: block;
  width: 100%;
  height: auto;
}

.bk-dl__figure img {
  width: 100%;
  aspect-ratio: var(--v-ratio, 16 / 9);
  object-fit: contain;
  display: block;
}

@media (min-width: 900px) {
  .bk-dl {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
    gap: 48px;
  }}


/* --- 마지막 구매 · 체험 -------------------------------------------------- */

.bk-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  text-align: center;
}

.bk-cta__title {
  font-family: var(--font-display);
  font-size: clamp(29px, 5.4vw, 43px);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.3;
  color: var(--brand);
}

.bk-cta__text {
  max-width: 48ch;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.8;
}

.bk-cta .btn-group {
  margin-top: 26px;
}


  /* ── LEARNING FLOW · 세로 타임라인 ── */
  .fl { position: relative; list-style: none; margin: 0 auto; padding: 0 0 0 96px;
        max-width: 900px; display: grid; gap: 20px; }
  .fl::before { content: ""; position: absolute; left: 37px; top: 37px; bottom: 37px;
        width: 2px; background: var(--shelf-dark); }
  .fl-node { position: relative; display: block; }
  .fl-dot { position: absolute; left: -96px; top: 50%; transform: translateY(-50%);
        width: 74px; height: 74px; border-radius: 50%; background: var(--dot); color: #fff;
        display: flex; align-items: center; justify-content: center; text-align: center;
        font-size: 13px; font-weight: 800; line-height: 1.25; letter-spacing: 0.02em;
        box-shadow: 0 0 0 6px #fff; }
  .fl-card { display: flex; gap: 20px; align-items: center; padding: 22px 26px;
        background: #fff; border: 1px solid var(--shelf); border-radius: var(--radius); }
  .fl-thumb { flex: none; width: 132px; aspect-ratio: 4 / 3; border-radius: 10px;
        display: flex; align-items: center; justify-content: center; text-align: center;
        background: var(--brand-soft); }
  .fl-thumb img { width: 100%; height: 100%; object-fit: cover; border-radius: 10px; }
  .fl-title { margin: 0 0 6px; font-size: 21px; color: var(--brand); }
  .fl-text { margin: 0; color: var(--muted); font-size: 16px; line-height: 1.7; }

  /* ── LINEUP · 칩 + 3 × 3 그리드 ── */
  .lu-chips { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px;
        margin: 0 auto 40px; max-width: 860px; padding: 0; list-style: none; }
  .lu-chip { padding: 11px 22px; border-radius: 999px; background: var(--brand-soft);
        color: var(--brand); font-size: 16px; font-weight: 700; }
  .lu-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
  .lu-item { margin: 0; position: relative; border-radius: 14px; overflow: hidden; }
  .lu-item img { display: block; width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }
  .lu-cap { position: absolute; inset: auto 0 0 0; padding: 54px 18px 16px; color: #fff;
        font-size: 18px; font-weight: 800; text-align: center;
        background: linear-gradient(to top, rgba(0, 26, 64, 0.78), rgba(0, 26, 64, 0)); }

  @media (max-width: 900px) {
    .lu-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }}

  @media (max-width: 700px) {
    .fl { padding-left: 66px; }
    .fl::before { left: 26px; top: 26px; bottom: 26px; }
    .fl-dot { left: -66px; top: 26px; transform: none; width: 52px; height: 52px; font-size: 11px; }
    .fl-card { flex-direction: column; align-items: flex-start; gap: 14px; padding: 20px; }
    .fl-thumb { width: 100%; }
    .lu-grid { grid-template-columns: minmax(0, 1fr); }
    .lu-chip { font-size: 14px; padding: 9px 16px; }}


  .lu-video { max-width: 760px; margin: 0 auto 36px; }
  .lu-video .bk-video { width: 100%; }


  /* 숫자 밴드 */
  .section--band { padding-block: 0; }
  .section--band .container > .bk-numbers {
    background: var(--brand); border-radius: var(--radius-lg); overflow: hidden;
    column-gap: 0; }
  .section--band .bk-number {
    justify-items: center; text-align: center; padding: 44px 16px;
    border-top: 0; border-right: 1px solid rgba(255, 255, 255, 0.22); }
  .section--band .bk-number:last-child { border-right: 0; }
  .section--band .bk-number__value { color: #fff; font-variant-numeric: tabular-nums; }
  .section--band .bk-number__label { color: rgba(255, 255, 255, 0.82); }
  @media (max-width: 760px) {
    .section--band .bk-numbers { grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: 0; }
    .section--band .bk-number:nth-child(2n) { border-right: 0; }
    .section--band .bk-number:nth-child(-n + 2) { border-bottom: 1px solid rgba(255, 255, 255, 0.22); }}


  /* AWARDS — 한 판 · 칸선 구분 · 정사각 로고 자리 */
  .bk-awards { gap: 0; border: 1px solid var(--shelf); border-radius: var(--radius);
    overflow: hidden; background: #fff; }
  .bk-award { justify-items: center; text-align: center; gap: 12px; padding: 30px 20px;
    border: 0; border-right: 1px solid var(--shelf); border-bottom: 1px solid var(--shelf);
    border-radius: 0; }
  .bk-award:nth-child(3n) { border-right: 0; }
  .bk-award:nth-last-child(-n + 3) { border-bottom: 0; }
  .bk-award__slot { display: flex; align-items: center; justify-content: center;
    width: 100%; max-width: 240px; aspect-ratio: 3 / 1; }
  .bk-award__slot img { max-width: 100%; max-height: 100%; width: auto; height: auto;
    object-fit: contain; }
  .bk-award__ph { font-size: 11px; font-weight: 700; line-height: 1.4; color: #7d95b5;
    word-break: keep-all; }
  .bk-award__slot { border: 1px dashed var(--shelf-dark); border-radius: 8px; }
  .bk-award__slot:has(img) { border: 0; }
  .bk-award__name { font-size: 15px; }
  .bk-award__detail { font-size: 13px; }
  /* 원본 브레이크포인트(700 / 1024)에 맞춰 칸선만 정리합니다 */
  @media (max-width: 699px) {
    .bk-award { border-right: 0; }
    .bk-award:last-child { border-bottom: 0; }
    .bk-award:nth-last-child(-n + 3) { border-bottom: 1px solid var(--shelf); }}

  @media (min-width: 700px) and (max-width: 1023px) {
    .bk-award:nth-child(3n) { border-right: 1px solid var(--shelf); }
    .bk-award:nth-child(2n) { border-right: 0; }
    .bk-award:nth-last-child(-n + 3) { border-bottom: 1px solid var(--shelf); }
    .bk-award:nth-last-child(-n + 2) { border-bottom: 0; }}


  /* REVIEWS */
  .rv-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px; grid-auto-rows: 1fr; }
  .rv { display: flex; flex-direction: column; gap: 12px; padding: 24px 22px;
    background: #fff; border: 1px solid var(--shelf); border-radius: var(--radius); }
  .rv-top { display: flex; align-items: center; gap: 8px; }
  .rv-stars { display: inline-flex; gap: 2px; color: #f5a623; }
  .rv-score { font-size: 15px; font-weight: 800; color: var(--ink); }
  .rv-trim { margin-left: auto; font-size: 12px; font-weight: 700; color: var(--muted);
    background: var(--brand-soft); border-radius: 999px; padding: 3px 10px; }
  .rv-body { margin: 0; color: var(--ink-soft); font-size: 16px; line-height: 1.75;
    word-break: keep-all; }
  .rv-who { display: flex; flex-wrap: wrap; align-items: baseline; gap: 4px 10px;
    margin-top: auto; padding-top: 13px; border-top: 1px solid var(--shelf); }
  .rv-nick { font-size: 15px; font-weight: 700; color: var(--ink); }
  .rv-meta { font-size: 14px; color: var(--muted); }
  .rv-sum { display: flex; align-items: center; justify-content: center; gap: 12px;
    flex-wrap: wrap; margin: 0 auto 34px; padding: 15px 28px; border-radius: 999px;
    background: var(--brand-soft); width: fit-content; }
  .rv-sum__star { display: inline-flex; color: #f5a623; transform: scale(1.5); margin-right: 4px; }
  .rv-sum__score { font-size: 28px; font-weight: 800; color: var(--brand); line-height: 1; }
  .rv-sum__text { font-size: 16px; color: var(--brand-ink); }
  .rv-more { display: grid; justify-items: center; gap: 10px; margin-top: 30px; }
  .rv-more .btn { gap: 9px; }
  .rv-more__note { margin: 0; font-size: 14px; color: var(--muted); }
  @media (max-width: 1000px) { .rv-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }}

  @media (max-width: 700px) { .rv-grid { grid-template-columns: minmax(0, 1fr); grid-auto-rows: auto; }}


  /* CTA — 사진 배경 + 남색 오버레이 (히어로와 동일 처리) */
  .section--cta { position: relative; padding-block: 88px;
    background-color: #0d2c52; background-image: url("../img/hero-lg.jpg");
    background-size: cover; background-position: center; }
  .section--cta::before { content: ""; position: absolute; inset: 0;
    background: linear-gradient(to right, rgba(0, 42, 94, 0.9), rgba(0, 42, 94, 0.62)); }
  .section--cta > .container { position: relative; }
  .section--cta .bk-cta__title { color: #fff; }
  .section--cta .bk-cta__text { color: rgba(255, 255, 255, 0.86); }
  .btn--ghost { background: transparent; border-color: rgba(255, 255, 255, 0.75); color: #fff; }
  .btn--ghost:hover { background: rgba(255, 255, 255, 0.14); border-color: #fff; }
  .bk-cta__biz { display: flex; align-items: center; justify-content: center;
    flex-wrap: wrap; gap: 10px 18px; width: 100%; max-width: 760px;
    margin-top: 44px; padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.28);
    color: rgba(255, 255, 255, 0.78); font-size: 16px; }
  .bk-cta__bizlink { display: inline-flex; align-items: center; gap: 7px;
    padding: 8px 18px; border: 1px solid rgba(255, 255, 255, 0.55); border-radius: 999px;
    color: #fff; font-weight: 800; text-decoration: none; }
  .bk-cta__bizlink:hover { background: rgba(255, 255, 255, 0.14); border-color: #fff; }
  .bk-cta__bizlink svg { transition: transform 0.18s; }
  .bk-cta__bizlink:hover svg { transform: translateX(3px); }

  /* 아직 파일이 없는 이미지 자리 — 파일을 넣으면 그대로 표시됩니다 */
  .ph-img { display: block; width: 100%; aspect-ratio: var(--ph-ratio, 4 / 3);
    object-fit: cover; border-radius: var(--radius);
    background: var(--brand-soft); color: var(--muted); font-size: 13px; }
  .bk-level__figure img, .fl-thumb img, .lu-item img { background: var(--brand-soft); }

/* DOWNLOAD — 넓은 화면에서는 다른 섹션 head↔본문 간격(44px)과 동일하게 */
@media (min-width: 768px) {
  .bk-stores {
    margin-top: 44px;
  }
}
