/* theater-info.html — Figma MO/오오극장/소개 (클래스명 유지, 스타일만 반영) */

.right.theater-info {
  box-sizing: border-box;
  --ti-content-max: 640px;
  --ti-text-strong: #111111;
  --ti-text-secondary: #404040;
  --ti-text-muted: #808080;
  --ti-surface-alt: #f7f7f7;
  --ti-border: #e2e2e2;
}

.right.theater-info .sub-scroll {
  max-width: var(--ti-content-max);
}

/* ── 소개 리드 (page_description) ── */
.right.theater-info .theater-main {
  display: block;
}

.right.theater-info .theater-lead {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 24px;
  margin: 0 0 24px;
  padding: 0;
  border: none;
  background: transparent;
  text-align: left;
}

.right.theater-info .theater-lead__tagline {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  color: #111111;
}

.right.theater-info .theater-lead__tagline::before {
  content: "";
  flex: none;
  width: 16px;
  height: 16px;
  background: url("../images/theater-info-dot.png") no-repeat center / contain;
}

.right.theater-info .theater-lead__sub {
  margin: 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  color: #808080;
}

.right.theater-info .theater-lead__eq {
  box-sizing: border-box;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.35em;
  margin: 0;
  padding: 16px;
  font-size: 16px;
  line-height: 1;
  letter-spacing: 0.02em;
  font-variant-numeric: tabular-nums;
  background: #f7f7f7;
  border: none;
}

.right.theater-info .theater-lead__eq-formula {
  font-weight: 300;
  color: #808080;
}

.right.theater-info .theater-lead__eq-result {
  font-weight: 700;
  color: #111111;
}

/* ── 히어로 이미지 (r_img) ── */
.right.theater-info .dg-photo {
  margin: 0 0 32px;
  overflow: hidden;
  line-height: 0;
  border: none;
  border-radius: 0;
  box-shadow: none;
  background: #f7f7f7;
}

.right.theater-info .dg-photo::after {
  display: none;
}

.right.theater-info .dg-photo img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 320 / 220;
  object-fit: cover;
  object-position: 48% 22%;
}

/* ── 10가지 특별함 (llist) ── */
.right.theater-info .theater-features {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin: 0;
}

.right.theater-info .theater-item {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 0;
  padding: 0 0 32px;
  border-bottom: 1px solid #595959;
}

.right.theater-info .theater-item:last-of-type {
  padding-bottom: 0;
  border-bottom: none;
}

.right.theater-info .theater-divider {
  display: none;
}

.right.theater-info .theater-item__head {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.25;
  color: #111111;
  word-break: keep-all;
}

.right.theater-info .theater-item__num {
  flex: none;
  min-width: 20px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0;
}

.right.theater-info .theater-item__num-zero {
  color: #b3b3b3;
}

.right.theater-info .theater-item__num-em {
  color: #111111;
}

.right.theater-info .theater-item__title {
  flex: 1 1 auto;
  min-width: 0;
  color: #111111;
  font-weight: 700;
}

.right.theater-info .theater-item:last-of-type .theater-item__head {
  align-items: flex-start;
}

.right.theater-info .theater-item__body {
  margin: 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.7;
  color: #404040;
}

.right.theater-info p,
.right.theater-info .theater-item__body {
  text-align: left;
}

.right.theater-info .theater-note a {
  color: #404040;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.right.theater-info .theater-note a:hover {
  color: #111111;
}

/* ── PC (821px+) ── */
@media (min-width: 821px) {
  .right.theater-info {
    --ti-content-max: none;
  }

  /* 본문: 좌측은 리드→목록 자연 흐름, 우측 이미지는 absolute로 겹침 (빈 공간 방지) */
  .right.theater-info .theater-main {
    position: relative;
    display: block;
    padding-right: var(--ti-theater-content-aside);
  }

  .right.theater-info .theater-lead {
    margin: 0 0 32px;
    gap: 16px;
  }

  .right.theater-info .dg-photo {
    position: absolute;
    top: 0;
    right: 0;
    width: var(--ti-theater-image-col);
    /* 슬로건~04·05 중간 높이 */
    height: clamp(420px, 52vh, 540px);
    margin: 0;
    overflow: hidden;
    line-height: 0;
    background: #f7f7f7;
  }

  .right.theater-info .dg-photo img {
    width: 100%;
    height: 100%;
    aspect-ratio: auto;
    min-height: 0;
    max-height: none;
    object-fit: cover;
    object-position: 48% 22%;
  }

  .right.theater-info .theater-features {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin: 0;
  }

  .right.theater-info .theater-lead__tagline {
    font-size: 20px;
  }

  .right.theater-info .theater-lead__sub {
    font-size: 14px;
  }

  .right.theater-info .theater-lead__eq {
    max-width: 100%;
    justify-content: flex-start;
    font-size: 16px;
  }

  .right.theater-info .theater-item__head {
    font-size: 16px;
  }

  .right.theater-info .theater-item__body {
    font-size: 14px;
    line-height: 1.5;
  }
}
