/* English landing (/en/) — Figma node 603:249, hero asset sub_banner_en.png */

/* ── 연도 인트로 (릴: 세로 스택 + --idx 로 translateY, 참고 구조와 동일 개념) ── */
.en-intro {
  position: fixed;
  inset: 0;
  z-index: 30000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #010627;
  opacity: 1;
  transition: opacity 0.45s ease, visibility 0.45s ease;
  visibility: visible;
  box-sizing: border-box;
  isolation: isolate;
  padding-top: env(safe-area-inset-top, 0px);
  padding-bottom: env(safe-area-inset-bottom, 0px);
  padding-left: env(safe-area-inset-left, 0px);
  padding-right: env(safe-area-inset-right, 0px);
}

.en-intro--out {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.en-intro--gone {
  display: none !important;
}

body.en-intro-active {
  overflow: hidden;
}

.en-intro__inner {
  text-align: center;
  transform: translateZ(0);
}

.en-intro__year {
  margin: 0;
  font-size: 300px;
  font-style: normal;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  letter-spacing: -0.03em;
  white-space: nowrap;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

@media (max-width: 1280px) {
  .en-intro__year {
    font-size: min(300px, calc((100vw - 48px) / 4.15));
  }
}

/* 좁은 화면: 연도 숫자가 너무 작아지지 않게(모바일에서 안 보이는 것처럼 느껴지는 문제 완화) */
@media (max-width: 520px) {
  .en-intro__year {
    font-size: max(3.25rem, min(calc((100vw - 20px) / 3.2), 26vw));
    letter-spacing: -0.045em;
  }
}

/* 한 자리 릴: 바깥은 뷰포트(1em), 안쪽 스택이 --idx 만큼 위로 이동 */
.en-intro__slot {
  display: inline-block;
  overflow: hidden;
  vertical-align: top;
  height: 1em;
  line-height: 1;
}

.en-intro__reel {
  display: flex;
  flex-direction: column;
  transition: transform 0.34s cubic-bezier(0.33, 1, 0.52, 1);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transform: translate3d(0, calc(var(--idx, 0) * -1em), 0);
}

/* 긴 릴(연도 인트로): translateY 스핀 — 연도 여러 번 넘길 때도 자연스럽게 */
.en-intro__reel--multi {
  transition-duration: 0.52s;
  transition-timing-function: cubic-bezier(0.22, 0.88, 0.28, 1);
}

.en-intro__reel > span {
  flex-shrink: 0;
  height: 1em;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.en-intro__sr {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* 로고는 <img>만 사용 — #header.main .logo 의 배경(logo_W)과 겹쳐 이중 표시되지 않게 함 */
#header.en-landing-top.main .inner .left .logo.logo--en-landing {
  background: none !important;
  aspect-ratio: unset;
  width: auto;
  height: auto;
  display: flex;
  align-items: center;
}

#header.en-landing-top.main .inner .left .logo.logo--en-landing img {
  display: block;
  height: 50px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
}

@media (max-width: 768px) {
  #header.en-landing-top.main .inner .left .logo.logo--en-landing img {
    width: 100px;
  }
}

.en-landing-page {
  margin: 0;
  min-height: 100vh;
  font-family: Pretendard, -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  color: #fff;
  /* 섹션 타이틀 블록( __header ) 상·하 패딩 공통값 */
  --en-section-head-pad-y: clamp(3.75rem, 8.5vw, 6.25rem);
  --en-section-head-pad-x: clamp(1.25rem, 4vw, 3rem);
  --en-section-head-pad-b: clamp(2rem, 5vw, 4rem);
}

@media (max-width: 768px) {
  .en-landing-page {
    --en-section-head-pad-y: clamp(1.5rem, 4.5vw, 2.25rem);
    --en-section-head-pad-b: clamp(1rem, 3vw, 1.5rem);
  }
}

/* 긴 리드 문단: 모바일에서만 / 데스크톱에서만 보이는 줄바꿈 (769px 기준) */
.en-landing-page br.en-br--md-up {
  display: none;
}

@media (min-width: 769px) {
  .en-landing-page br.en-br--md-up {
    display: inline;
  }
}

.en-landing-page br.en-br--sm-only {
  display: inline;
}

@media (min-width: 769px) {
  .en-landing-page br.en-br--sm-only {
    display: none;
  }
}

/* 타이틀·부제 묶음 — inner 가 아니라 헤더 블록에 위·아래 여백 */
.en-section01__header,
.en-section02__header,
.en-section03__header,
.en-program__header,
.en-partners__header,
.en-congress__header,
.en-partner-banner__header {
  box-sizing: border-box;
  padding-top: var(--en-section-head-pad-y);
  padding-bottom: var(--en-section-head-pad-b);
}

.en-landing {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.en-landing__bg {
  position: absolute;
  inset: 0;
  background: #03050c url("/assets/images/sub/sub_banner_en.png") 50% 50% / cover no-repeat;
  z-index: 0;
}

.en-landing__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
  pointer-events: none;
}

.en-landing__hero {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: clamp(2rem, 8vh, 5rem) clamp(1.25rem, 5vw, 3rem) 3rem;
}

.en-landing__headline {
  margin: 0;
  font-weight: 700;
  font-size: 65px;
  line-height: 1.12;
  letter-spacing: -0.02em;
  text-transform: uppercase; /* Figma: THE GLOBAL STANDARD / IN LIFTING EDUCATION */
}

.en-landing__headline span {
  display: block;
}

/* ── 모션: 히어로·스크롤 구간 등 마킹한 요소만 (html.en-motion-root 없으면 비가림) ── */
.en-motion {
  transition:
    opacity 0.58s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.58s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--en-motion-delay, 0ms);
}

html.en-motion-root .en-motion:not(.en-motion--in) {
  opacity: 0;
  transform: translate3d(0, 0.75rem, 0);
}

html.en-motion-root .en-motion.en-motion--in {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

@media (prefers-reduced-motion: reduce) {
  html.en-motion-root .en-motion:not(.en-motion--in),
  html.en-motion-root .en-motion.en-motion--in {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    transition: none !important;
  }
}

.en-landing__sub {
  margin: clamp(1.25rem, 4vh, 2.5rem) 0 0;
  max-width: 52rem;
  font-weight: 400;
  font-size: 27px;
  line-height: 1.45;
  letter-spacing: -0.01em;
  opacity: 0.98;
}

/* 히어로: 살짝 블러 → 선명 + fade-up (인트로 직후 등장) */
html.en-motion-root .en-hero-motion.en-motion:not(.en-motion--in) {
  filter: blur(12px);
  transform: translate3d(0, 1.15rem, 0);
  will-change: opacity, transform, filter;
}

html.en-motion-root .en-hero-motion.en-motion.en-motion--in {
  filter: blur(0);
  transform: translate3d(0, 0, 0);
  will-change: auto;
}

.en-hero-motion.en-motion {
  transition:
    opacity 0.88s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.88s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.72s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--en-motion-delay, 0ms);
}

@media (max-width: 768px) {
  .en-landing__headline {
    font-size: 28px;
  }

  .en-landing__sub {
    font-size: 16px;
  }
}

/* ── Figma 666:78 — KAFC IN NUMBERS (메인 히어로 다음) ── */
.en-section01 {
  position: relative;
  background: #fff;
  color: #000;
}

.en-section01__inner {
  max-width: 120rem;
  margin: 0 auto;
  padding: 0 var(--en-section-head-pad-x) clamp(2.5rem, 6vw, 4.5rem);
}

@media (max-width: 768px) {
  .en-section01__inner {
    padding-top: clamp(2rem, 6vw, 3.25rem);
  }
}

.en-section01__header {
  text-align: center;
}

.en-section01__title {
  margin: 0;
  font-weight: 700;
  font-size: 35px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #0f2e86;
  text-transform: uppercase;
}

/* section01·02 공통 부제/리드 문단 */
.en-section__subtitle {
  margin: 1rem auto 0;
  font-weight: 500;
  font-size: 22px;
  line-height: 1.45;
  letter-spacing: -0.01em;
  color: rgba(0, 0, 0, 0.7);
}

.en-section01__header .en-section__subtitle {
  max-width: none;
}

.en-section01__stats {
  list-style: none;
  width: 100%;
  max-width: min(1300px, 100%);
  margin: 0 auto;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(2rem, 4vw, 3.125rem);
  align-items: start;
  text-align: center;
}

.en-section01__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(1.75rem, 3vw, 3.125rem); /* Figma ~50px */
}

.en-section01__value {
  font-weight: 700;
  font-size: 55px;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.en-section01__label {
  font-weight: 500;
  font-size: 22px;
  line-height: 1.35;
  letter-spacing: -0.01em;
  max-width: 16.25rem;
}

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

@media (max-width: 520px) {
  .en-section01__stats {
    grid-template-columns: 1fr;
  }
}

/* ── Figma 775:137 — SCIENTIFIC CONGRESS 배너 (congress_banner_en.png + 좌측 타이포) ── */
.en-congress {
  position: relative;
  background: #000;
  color: #fff;
  overflow: hidden;
}

.en-congress__frame {
  position: relative;
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  aspect-ratio: 1920 / 930;
  background: #000;
}

.en-congress__visual {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.en-congress__visual img {
  position: absolute;
  width: 86.33%;
  height: 109.3%;
  left: 6.85%;
  top: 0.05%;
  max-width: none;
  object-fit: cover;
}

.en-congress__inner {
  position: absolute;
  z-index: 1;
  inset: 0;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  /* 좌측 오프셋·가로만 (세로는 .en-congress__header) */
  padding: 0 var(--en-section-head-pad-x) 0 clamp(1.25rem, 12.92vw, 15.5rem);
}

.en-congress__header {
  margin: 0;
  max-width: min(100%, 52rem);
}

.en-congress__title {
  margin: 0;
  max-width: 612px;
  font-weight: 700;
  font-size: 35px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.en-congress__copy {
  margin-top: clamp(1rem, 2.6vw, 2.5rem);
  max-width: 746px;
  font-weight: 500;
  font-size: clamp(15px, 1.45vw, 22px);
  line-height: 38px;
}

.en-congress__copy p {
  margin: 0;
}

.en-congress__copy p + p {
  margin-top: 0.55em;
}

@media (max-width: 768px) {
  .en-congress {
    margin-bottom: clamp(1.25rem, 4vw, 2rem);
  }

  .en-congress__frame {
    aspect-ratio: 16 / 10;
    height: 350px;
  }

  .en-congress__visual img {
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    object-position: 50% 35%;
  }

  .en-congress__inner {
    padding: 0 var(--en-section-head-pad-x) 0 var(--en-section-head-pad-x);
    justify-content: center;
  }

  .en-congress__copy {
    line-height: 1.55;
  }
}

/* ── Academic program — 8열: 상단 01·02·03·06(각 2트랙), 2행 04·05 동일 3트랙, 06 세로 span ── */
.en-program {
  position: relative;
  background: #fff;
  color: #000;
}

.en-program__inner {
  box-sizing: border-box;
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 var(--en-section-head-pad-x);
}

.en-program__header {
  text-align: center;
}

.en-program__title {
  margin: 0;
  font-weight: 700;
  font-size: 35px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #0f2e86;
  text-transform: uppercase;
}

.en-program__lead {
  margin-top: 0.85rem;
  margin-bottom: 0;
  margin-left: auto;
  margin-right: auto;
}

.en-program__grid {
  display: grid;
  width: 100%;
  box-sizing: border-box;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  grid-template-rows: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(12px, 1.25vw, 20px);
  padding-bottom: clamp(2.25rem, 5.5vw, 5rem);
}

.en-program__tile {
  margin: 0;
  min-height: 0;
  min-width: 0;
  overflow: hidden;
  background: #e8e8e8;
  display: grid;
  grid-template: 1fr / 1fr;
}

.en-program__tile--01 {
  grid-column: 1 / 3;
  grid-row: 1;
}

.en-program__tile--02 {
  grid-column: 3 / 5;
  grid-row: 1;
}

.en-program__tile--03 {
  grid-column: 5 / 7;
  grid-row: 1;
}

.en-program__tile--04 {
  grid-column: 1 / 4;
  grid-row: 2;
}

.en-program__tile--05 {
  grid-column: 4 / 7;
  grid-row: 2;
}

.en-program__tile--06 {
  grid-column: 7 / 9;
  grid-row: 1 / -1;
}

.en-program__tile img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  align-self: stretch;
  justify-self: stretch;
}

@media (max-width: 900px) {
  .en-program__grid {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: clamp(10px, 2vw, 16px);
    min-height: 0;
    width: 100%;
    max-width: 100%;
    margin-top: clamp(1.5rem, 4.5vw, 2.75rem);
    padding-bottom: clamp(2.5rem, 8vw, 5.5rem);
  }

  .en-program__tile--01,
  .en-program__tile--02,
  .en-program__tile--03,
  .en-program__tile--04,
  .en-program__tile--05,
  .en-program__tile--06 {
    grid-column: auto;
    grid-row: auto;
    min-height: min(62vw, 380px);
    aspect-ratio: 16 / 10;
  }

  .en-program__tile--06 {
    aspect-ratio: 4 / 5;
    min-height: min(85vw, 420px);
  }

  .en-program__tile {
    width: 100%;
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .en-program__grid {
    padding-bottom: clamp(2rem, 10vw, 4.25rem);
  }

  .en-program__lead {
    font-size: 16px;
    line-height: 1.45;
  }
}

/* ── Figma 667:81 — ABOUT KAFC + 가로 이미지 아코디언 ── */
.en-section02 {
  position: relative;
  background: #fff;
  color: #000;
  padding-bottom: clamp(2.5rem, 6vw, 5rem);
}

.en-section02__inner--head {
  max-width: 120rem;
  margin: 0 auto;
  padding: 0 var(--en-section-head-pad-x);
}

.en-section02__header {
  text-align: center;
}

.en-section02__title {
  margin: 0;
  font-weight: 700;
  font-size: 35px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #0f2e86;
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .en-section__subtitle,
  .en-section01__label {
    font-size: 16px;
  }

  .en-section__subtitle,
  .en-program__lead,
  .en-partners__lead {
    line-height: 1.55;
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .en-congress__copy p {
    overflow-wrap: anywhere;
    word-break: break-word;
    line-height: 1.55;
  }

  .en-section01__value {
    font-size: 36px;
  }
}

.en-section02__gallery {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  overflow: hidden;
}

.en-about__row {
  display: flex;
  flex-direction: row;
  width: 100%;
  height: clamp(280px, 42vw, 500px);
}

.en-about__panel {
  position: relative;
  flex-grow: 250;
  flex-shrink: 1;
  flex-basis: 0;
  min-width: 0;
  overflow: hidden;
  cursor: default;
  transition: flex-grow 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}

.en-about__row:not(:hover):not(:focus-within) .en-about__panel:first-child {
  flex-grow: 920;
}

.en-about__row:is(:hover, :focus-within) .en-about__panel {
  flex-grow: 250;
}

.en-about__row:hover .en-about__panel:hover,
.en-about__row:focus-within .en-about__panel:focus {
  flex-grow: 920;
}

@media (prefers-reduced-motion: reduce) {
  .en-about__panel {
    transition: none;
  }
}

.en-about__panel:focus {
  outline: none;
}

.en-about__panel:focus-visible {
  outline: 3px solid #0f2e86;
  outline-offset: -3px;
  z-index: 1;
}

.en-about__media {
  position: absolute;
  inset: 0;
}

.en-about__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.en-about__shade {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
  pointer-events: none;
}

@media (max-width: 900px) {
  .en-about__row {
    flex-direction: column;
    height: auto;
  }

  .en-about__panel {
    flex: none !important;
    height: clamp(200px, 45vw, 320px);
    width: 100%;
    transition: none;
  }
}

/* ── Figma 667:119 — KAFC EXECUTIVE BOARD + Swiper ── */
.en-section03 {
  position: relative;
  background: rgba(255, 255, 255, 0.88);
  color: #000;
  padding-bottom: clamp(2.5rem, 6vw, 5rem);
}

.en-section03__inner {
  max-width: 120rem;
  margin: 0 auto;
  padding: 0 var(--en-section-head-pad-x);
}

.en-section03__header {
  text-align: center;
}

.en-section03__title {
  margin: 0;
  font-weight: 700;
  font-size: 35px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #0f2e86;
  text-transform: uppercase;
}

.en-board {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: clamp(0.5rem, 2vw, 1.25rem);
}

.en-board-swiper {
  flex: 1;
  min-width: 0;
  overflow: hidden;
}

.en-board__nav {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  padding: 0;
  border: none;
  background: transparent;
  color: #000;
  cursor: pointer;
  border-radius: 4px;
  transition: opacity 0.2s ease;
}

.en-board__nav:focus-visible {
  outline: 3px solid #0f2e86;
  outline-offset: 2px;
}

.en-board__nav.swiper-button-disabled {
  opacity: 0.35;
  cursor: not-allowed;
  pointer-events: none;
}

.en-board__nav svg {
  width: 32px;
  height: 32px;
  display: block;
}

.en-board__card {
  display: flex;
  flex-direction: column;
  height: 100%;
  margin: 0 auto;
  max-width: 400px;
}

.en-board__photo {
  position: relative;
  width: 100%;
  aspect-ratio: 400 / 430;
  background: #fff;
  overflow: hidden;
}

.en-board__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.en-board__caption {
  box-sizing: border-box;
  min-height: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 16px 10px;
  background: #fff;
  text-align: center;
}

.en-board__name {
  margin: 0;
  font-weight: 500;
  font-size: 20px;
  line-height: 1.3;
  letter-spacing: 0.03em;
}

.en-board__role {
  margin: 0;
  font-weight: 500;
  font-size: 20px;
  line-height: 1.3;
  letter-spacing: 0.03em;
}

@media (max-width: 768px) {
  .en-board__name,
  .en-board__role {
    font-size: 16px;
  }

  .en-board__nav {
    display: none;
  }

  .en-board {
    gap: 0;
  }
}

/* 좁은 화면: 슬라이드 1장·카드 가운데(스와이퍼 translate 외 시각 정렬) */
@media (max-width: 519px) {
  .en-board-swiper .swiper-slide {
    display: flex;
    justify-content: center;
    box-sizing: border-box;
  }
}

/* ── Official partners — 로고 마퀴 (Figma 685:52) ── */
.en-partners {
  position: relative;
  background: #fff;
  color: #000;
  padding-bottom: clamp(3.75rem, 9vw, 7.5rem);
  overflow-x: hidden;
}

.en-partners__inner {
  box-sizing: border-box;
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 var(--en-section-head-pad-x);
}

.en-partners__header {
  text-align: center;
}

.en-partners__title {
  margin: 0;
  font-weight: 700;
  font-size: 35px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #0f2e86;
  text-transform: uppercase;
}

.en-partners__sr-logos {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.en-partners__marquee {
  box-sizing: border-box;
  width: 100%;
  max-width: none;
  overflow: hidden;
  /* 루프 끝↔시작이 붙어 보이지 않도록 좌우에 숨 패딩 */
  padding-inline: clamp(1.25rem, 4vw, 3rem);
  mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent);
}

.en-partners__track {
  display: flex;
  width: max-content;
  will-change: transform;
  animation: en-partners-marquee 42s linear infinite;
}

.en-partners__logos {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  gap: clamp(2.5rem, 6vw, 4.5rem);
  list-style: none;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* 마퀴 복제 ul 사이에는 flex gap이 없어 마지막↔첫 로고가 붙음 → 패딩으로 로고 간격과 맞춤 */
.en-partners__track > .en-partners__logos:first-of-type {
  padding-left: clamp(2.5rem, 6vw, 4.5rem);
  padding-right: clamp(2.5rem, 6vw, 4.5rem);
}

.en-partners__track > .en-partners__logos:last-of-type {
  padding-right: clamp(2.5rem, 6vw, 4.5rem);
}

.en-partners__logo {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: clamp(3.25rem, 8vw, 4.5rem);
  width: clamp(9rem, 22vw, 14rem);
}

.en-partners__logo img {
  display: block;
  max-width: 100%;
  height: 100%;
}

@media (prefers-reduced-motion: reduce) {
  .en-partners__track {
    animation: none;
  }
}

@keyframes en-partners-marquee {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-50%, 0, 0);
  }
}

@media (max-width: 768px) {
  .en-partners__lead {
    font-size: 16px;
    line-height: 1.45;
  }

  .en-partners__logos {
    gap: clamp(1.75rem, 5vw, 2.5rem);
  }

  .en-partners__track > .en-partners__logos:first-of-type {
    padding-left: clamp(1.75rem, 5vw, 2.5rem);
    padding-right: clamp(1.75rem, 5vw, 2.5rem);
  }

  .en-partners__track > .en-partners__logos:last-of-type {
    padding-right: clamp(1.75rem, 5vw, 2.5rem);
  }

  .en-partners__logo {
    width: clamp(7.5rem, 38vw, 11rem);
  }

  .en-partners__marquee {
    padding-inline: clamp(1rem, 3vw, 2rem);
  }
}

/* ── Partner banner — Figma 685:51, 페이지 맨 아래 별도 섹션 ── */
.en-partner-banner {
  position: relative;
  background: #050508;
  color: #fff;
  overflow-x: hidden;
}

.en-partner-banner__hero {
  position: relative;
  width: 100%;
  min-height: clamp(22rem, 31vw, 37.125rem);
  display: flex;
  align-items: center;
  justify-content: center;
  isolation: isolate;
}

.en-partner-banner__media {
  position: absolute;
  inset: 0;
  background: url("/assets/images/sub/partner_banner_en.png") center / cover no-repeat;
  pointer-events: none;
}

.en-partner-banner__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%);
}

.en-partner-banner__inner {
  position: relative;
  z-index: 1;
  box-sizing: border-box;
  width: 100%;
  max-width: 58rem;
  margin: 0 auto;
  padding: 0 var(--en-section-head-pad-x);
  text-align: center;
}

.en-partner-banner__header {
  margin: 0;
}

.en-partner-banner__title {
  margin: 0;
  font-weight: 700;
  font-size: 35px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #fff;
  text-transform: uppercase;
}

.en-partner-banner__kicker {
  margin: 0.65rem 0 0;
  font-weight: 500;
  font-size: 22px;
  line-height: 1.33;
  letter-spacing: -0.01em;
  color: rgba(255, 255, 255, 0.95);
}

.en-partner-banner__body {
  margin: 1.35rem 0 0;
}

.en-partner-banner__body-line {
  margin: 0;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.625;
  letter-spacing: -0.01em;
  color: rgba(255, 255, 255, 0.92);
}

@media (max-width: 768px) {
  .en-partner-banner__kicker {
    font-size: 18px;
  }

  .en-partner-banner__body-line {
    font-size: 16px;
    line-height: 1.5;
  }
}

/* 랜딩 섹션 타이틀 — 데스크톱 35px·모바일 22px 통일 (캐스케이드 최하단) */
@media (max-width: 768px) {
  .en-section01__title,
  .en-section02__title,
  .en-section03__title,
  .en-program__title,
  .en-congress__title,
  .en-partners__title,
  .en-partner-banner__title {
    font-size: 22px;
  }
}
