/* Futura PT 폰트 로드 */
@font-face {
  font-family: "Futura Semi Bold";
  font-weight: 600;
  font-style: normal;
  font-display: swap;
  src:
    url("https://cdn.shopify.com/s/files/1/0880/2195/8973/files/futura_n7.woff")
      format("woff"),
    url("https://cdn.shopify.com/s/files/1/0880/2195/8973/files/futura_n7.woff2")
      format("woff2");
}

@font-face {
  font-family: "futura-pt";
  src:
    url("https://use.typekit.net/af/0c71d1/000000000000000000010097/27/l?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n8&v=3")
      format("woff2"),
    url("https://use.typekit.net/af/0c71d1/000000000000000000010097/27/d?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n8&v=3")
      format("woff"),
    url("https://use.typekit.net/af/0c71d1/000000000000000000010097/27/a?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n8&v=3")
      format("opentype");
  font-display: auto;
  font-style: normal;
  font-weight: 800;
  font-stretch: normal;
}

@font-face {
  font-family: "futura-pt-bold";
  src:
    url("https://use.typekit.net/af/053fc9/00000000000000003b9af1e4/27/l?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n7&v=3")
      format("woff2"),
    url("https://use.typekit.net/af/053fc9/00000000000000003b9af1e4/27/d?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n7&v=3")
      format("woff"),
    url("https://use.typekit.net/af/053fc9/00000000000000003b9af1e4/27/a?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n7&v=3")
      format("opentype");
  font-display: auto;
  font-style: normal;
  font-weight: 700;
  font-stretch: normal;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family:
    "Pretendard Variable",
    Pretendard,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    "Helvetica Neue",
    Arial,
    sans-serif;
  background-color: #000000;
  overflow-x: hidden;
}

h1,
h2 {
  font-family:
    "futura-pt",
    "futura-pt-bold",
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
  font-weight: 800;
}

.container {
  margin-left: auto;
  margin-right: auto;
  padding-left: 4rem;
  padding-right: 4rem;
}

@media (max-width: 768px) {
  .container {
    max-width: none;
    padding-left: 0;
    padding-right: 0;
  }
}

/* PC Section */
.pc-section {
  display: none;
  padding: 80px 0;
  background-color: #000000;
}

@media (min-width: 769px) {
  .pc-section {
    display: block;
  }
}

.hero-content {
  display: flex;
  align-items: center;
  gap: 60px;
  min-height: 600px;
}

/* hero-content 내 hero-text-column 정렬 (텍스트 정렬 옵션) - .pc-section 내에서 적용 */
.pc-section .hero-content--left {
  justify-content: flex-start;
}
.pc-section .hero-content--center {
  justify-content: center;
}
.pc-section .hero-content--center .hero-text-column {
  text-align: center;
}
.pc-section .hero-content--center .hero-description {
  margin-left: auto;
  margin-right: auto;
}
.pc-section .hero-content--center .cta-buttons {
  justify-content: center;
}
.pc-section .hero-content--right {
  justify-content: flex-end;
}
.pc-section .hero-content--right .hero-text-column {
  text-align: right;
}
.pc-section .hero-content--right .hero-description {
  margin-left: auto;
}
.pc-section .hero-content--right .cta-buttons {
  justify-content: flex-end;
}

.hero-text-column {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 30px;
}

@media (min-width: 769px) {
  .hero-text-column {
    flex: 0 0 50%;
  }
}

@media (max-width: 768px) {
  .hero-text-column {
    display: none;
  }
}

.hero-headline {
  font-size: 64px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #ffffff;
  line-height: 1.1;
  white-space: pre-line;
}

.hero-description {
  font-size: 18px;
  font-weight: 400;
  color: #ffffff;
  line-height: 1.6;
  max-width: 500px;
  white-space: pre-line;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  margin-top: 10px;
}

.cta-button {
  display: inline-block;
  padding: 0.5rem 1rem;
  background-color: #ffffff;
  color: #000000;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition:
    background-color 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease;
}

.cta-button:hover {
  background-color: #000000;
  color: #ffffff;
  border-color: #000000;
}

.hero-image-column {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.jacket-image {
  width: 100%;
  display: block;
  object-fit: cover;
}

.image-overlay-lines {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.overlay-line {
  position: absolute;
  background-color: #cc0000;
  opacity: 0.8;
}

.overlay-line-vertical-left {
  left: 20%;
  top: 0;
  width: 1px;
  height: 100%;
}

.overlay-line-vertical-right {
  right: 20%;
  top: 0;
  width: 1px;
  height: 100%;
}

.overlay-line-horizontal-top {
  top: 20%;
  left: 0;
  width: 100%;
  height: 1px;
}

.overlay-line-horizontal-bottom {
  bottom: 20%;
  left: 0;
  width: 100%;
  height: 1px;
}

.overlay-line-cross-vertical {
  left: 50%;
  top: 0;
  width: 1px;
  height: 100%;
  transform: translateX(-50%);
}

.overlay-line-cross-horizontal {
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  transform: translateY(-50%);
}

/* Mobile Section */
.mobile-section {
  display: block;
  padding: 0;
  background-color: #000000;
}

@media (min-width: 769px) {
  .mobile-section {
    display: none;
  }
}

/* Interactive Kit & Holiday Guide: PC/Mobile 분리 - hero와 동일한 반응형 */
@media (max-width: 768px) {
  .interactive-kit-pc,
  .holiday-guide-pc {
    display: none !important;
  }

  /* 모바일 Interactive Kit - PC Hero와 동일 형식, 이미지 비율 2:1 */
  .interactive-kit-mobile .banner-vid {
    width: 100%;
    aspect-ratio: 2 / 1;
    overflow: hidden;
  }
  .interactive-kit-mobile .banner-vid video,
  .interactive-kit-mobile .banner-vid > div {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
  .interactive-kit-mobile .hero-image-mobile .jacket-image-wrapper {
    width: 100%;
    aspect-ratio: 2 / 1;
    overflow: hidden;
  }
  .interactive-kit-mobile .hero-image-mobile .jacket-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
  }
  .interactive-kit-mobile .hero-image-mobile .jacket-image-wrapper > div {
    width: 100%;
    aspect-ratio: 2 / 1;
    background-size: cover;
    background-position: center;
  }

  .interactive-kit-mobile .hero-text-mobile {
    padding: 1rem;
  }

  /* Holiday Guide Mobile - interactive-kit-mobile과 동일 구조 */
  .holiday-guide-mobile .banner-vid {
    width: 100%;
    aspect-ratio: 2 / 1;
    overflow: hidden;
  }
  .holiday-guide-mobile .banner-vid video,
  .holiday-guide-mobile .banner-vid > div {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
  .holiday-guide-mobile .hero-image-mobile .jacket-image-wrapper {
    width: 100%;
    aspect-ratio: 2 / 1;
    overflow: hidden;
  }
  .holiday-guide-mobile .hero-image-mobile .jacket-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
  }
  .holiday-guide-mobile .hero-image-mobile .jacket-image-wrapper > div {
    width: 100%;
    aspect-ratio: 2 / 1;
    background-size: cover;
    background-position: center;
  }
  .holiday-guide-mobile .hero-text-mobile {
    padding: 1rem;
  }
}

.hero-content-mobile {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero-image-mobile {
  width: 100%;
  order: 1;
}

/* Mobile Section: Video Background CSS는 index_new.html 두 번째 <style> 블록에서 관리 */

.hero-image-mobile .jacket-image-wrapper {
  max-width: 100%;
  width: 100%;
}

.hero-text-mobile {
  order: 2;
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: left;
}

.hero-text-mobile .hero-headline {
  font-size: 42px;
}

.hero-text-mobile .hero-description {
  font-size: 16px;
  max-width: 100%;
}

.hero-text-mobile .cta-buttons {
  flex-direction: column;
  width: 100%;
  align-items: flex-start;
}

.hero-text-mobile .cta-button {
  width: 100%;
  text-align: left;
}

.holiday-guide-mobile .hero-text-mobile .cta-buttons,
.interactive-kit-mobile .hero-text-mobile .cta-buttons {
  align-items: flex-start;
}
.holiday-guide-mobile .hero-text-mobile .cta-button,
.interactive-kit-mobile .hero-text-mobile .cta-button {
  width: auto;
  text-align: center;
}

/* Quote Section */
.quote-section {
  width: 100%;
  padding: 50px 0 20px 0;
  background-color: #000000;
  border-top: 0px solid #333333;
}

.quote-content {
  max-width: 870px;
  margin: 30px auto 0;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.quote-icon {
  font-size: 120px;
  font-weight: 700;
  color: #ff6600;
  line-height: 1;
  font-family: "Times New Roman", serif;
  opacity: 0.9;
}

.quote-text {
  font-size: 26px;
  font-weight: 600;
  color: #ffffff;
  line-height: 33px;
  white-space: pre-line;
}

.quote-attribution {
  font-size: 26px;
  color: #ffffff;
  margin: 1.5rem 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .quote-section {
    padding: 70px 1.2rem 10px 1.2rem;
  }

  .quote-icon {
    font-size: 80px;
  }

  .quote-text {
    font-size: 20px;
    line-height: 27px;
  }

  .quote-attribution {
    font-size: 20px;
  }
}

/* Promo Banner (NEW APPAREL 등) */
.promo-banner {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 40px;
  margin-top: 36px;
}

.promo-banner__title {
  margin: 0;
  color: #000;
  font-size: 36px;
  font-weight: 700;
  text-transform: uppercase;
}

.promo-banner__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 24px;
  background-color: #000;
  color: #fff;
  font-family: "Futura Semi Bold", "futura-pt", sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  transition: background-color 0.2s ease;
}

.promo-banner__btn:hover {
  background-color: #333;
}

@media (max-width: 768px) {
  .promo-banner {
    padding: 16px 5px;
    flex-wrap: wrap;
    gap: 12px;
  }
  .promo-banner__title {
    font-size: 22px;
  }
  .promo-banner__btn {
    padding: 10px 20px;
    font-size: 14px;
  }
}

/* showDesignDisplay - Swiper 4.5개 (옵션으로 처리, CSS는 보조) */
.resp_wrap
  .promo-banner
  ~ .designDisplay
  .hoz_scroll_wrap.promo-swiper-converted
  .scroll_area {
  display: flex;
  gap: 20px;
}

/* Cards Section */
.product-section {
  padding: 20px 0 65px 0;
  background-color: #000000;
  overflow-anchor: none;
}

.cards-container {
  margin: 0 auto;
  padding: 0 3rem;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-rows: repeat(2, 1fr);
  gap: 20px;
  overflow-anchor: none;
}

.feature-card {
  position: relative;
  min-height: 530px;
  background-size: cover;
  background-position: center;
  text-decoration: none;
  color: #ffffff;
  overflow: hidden;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
  cursor: pointer;
  overflow-anchor: none;
  contain: layout style;
}

.feature-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.15) 0%,
    rgba(0, 0, 0, 0.65) 100%
  );
  pointer-events: none;
}

.feature-card__content {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.feature-card__eyebrow {
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
}

.feature-card__subheadline {
  font-size: 16px;
  font-weight: 500;
  max-width: 100%;
}

.feature-card__cta {
  display: flex;
  gap: 16px;
  overflow: hidden;
  max-height: 0;
  transition:
    max-height 0.4s ease,
    margin-top 0.25s ease;
  pointer-events: none;
  margin-top: 0;
}

.feature-card__cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  background-color: #c55221;
  color: #ffffff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border: none;
  transition:
    background-color 0.2s ease,
    transform 0.2s ease;
}

.feature-card__cta-button:hover,
.feature-card__cta-button:focus-visible {
  background-color: #000000;
  color: #ffffff;
}

/* Hover effects removed for feature-card CTA buttons */

.feature-card:hover .feature-card__cta,
.feature-card:focus-within .feature-card__cta,
.bd-founding-stories__card:hover .feature-card__cta,
.bd-founding-stories__card:focus-within .feature-card__cta {
  max-height: 200px;
  margin-top: 10px;
  pointer-events: auto;
}

@media (min-width: 769px) {
  .cards-grid .feature-card {
    min-height: 0;
  }
  /* 1,4번: 그리드에 맞춰 stretch (2+3 합 + gap 20px와 동일 높이) */
  .cards-grid .feature-card:nth-child(1),
  .cards-grid .feature-card:nth-child(4) {
    align-self: stretch;
  }
  /* 2,3번: 1:1 비율로 그리드 행 높이 결정 */
  .cards-grid .feature-card:nth-child(2),
  .cards-grid .feature-card:nth-child(3) {
    aspect-ratio: 1 / 1;
  }
}

@media (max-width: 768px) {
  .cards-grid .feature-card {
    aspect-ratio: 1 / 1;
    min-height: 0;
  }

  /* 1,4번: 그리드에 맞춰 stretch (2+3 합 + gap 20px와 동일 높이) */
  .cards-grid .feature-card:nth-child(1),
  .cards-grid .feature-card:nth-child(4) {
    aspect-ratio: 2 / 3;
  }
}

.feature-card--outerwear {
  grid-column: 1;
  grid-row: 1 / span 2;
  background-image: url("https://blackdiamondequipment.com/cdn/shop/files/BD_FW23_SKI_INSPO_56.jpg?crop=center&height=1600&v=1725642420&width=1200");
}

.feature-card--insulation {
  grid-column: 2;
  grid-row: 1;
  background-image: url("https://blackdiamondequipment.com/cdn/shop/files/F2025_Insulation_Secondary_Desktop_2000x.jpg?v=1760738011");
}

.feature-card--skis {
  grid-column: 2;
  grid-row: 2;
  background-image: url("https://blackdiamondequipment.com/cdn/shop/files/BD_FW23_SKI_COLLECTIONS_68.jpg?crop=center&height=1600&v=1725642899&width=1200");
}

.feature-card--gloves {
  grid-column: 3;
  grid-row: 1 / span 2;
  background-image: url("https://blackdiamondequipment.com/cdn/shop/files/BD_FW23_SKI_COLLECTIONS_32.jpg?crop=center&height=1600&v=1725642530&width=1200");
}

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

  .feature-card--outerwear,
  .feature-card--gloves {
    grid-row: auto;
  }

  .feature-card--outerwear {
    grid-column: 1 / span 2;
  }

  .feature-card--gloves {
    grid-column: 1 / span 2;
  }
}

@media (max-width: 768px) {
  .product-section {
    padding: 30px 0;
  }

  .cards-container {
    padding: 0 1rem;
  }

  .cards-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .feature-card__eyebrow {
    font-size: 19px;
  }

  .feature-card__subheadline {
    font-size: 15px;
  }

  .feature-card__cta {
    max-height: none;
    opacity: 1;
    transform: none;
    pointer-events: auto;
    flex-wrap: wrap;
    margin-top: 24px;
    margin-bottom: 20px;
  }
}

@media (max-width: 768px) {
  .hero-text-mobile {
    padding: 0 1rem;
    gap: 1px;
  }

  .interactive-kit__headline {
    font-size: 24px !important;
  }
}

@media (max-width: 480px) {
  .hero-text-mobile .hero-headline {
    font-size: 24px;
  }

  .hero-text-mobile .hero-description {
    font-size: 14px;
    text-align: left;
  }

  .quote-icon {
    font-size: 60px;
  }
}

/* Winter Slider Section */
.winter-slider-section {
  padding: 80px 0;
  color: #111111;
  background-color: #ffffff;
}

.winter-slider__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.winter-slider__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 32px;
}

.winter-slider__title-group {
  display: flex;
  flex-direction: row;
  gap: 8px;
}

.winter-slider__eyebrow {
  font-size: 30px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 4px;
}

.winter-slider__headline {
  font-size: 36px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.winter-slider__cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #ffffff;
  background-color: #111111;
  border: 0;
  border-radius: 0;
  text-decoration: none;
  cursor: pointer;
  transition:
    background-color 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}

.winter-slider__cta-button:hover,
.winter-slider__cta-button:focus {
  background-color: #cc4d1f;
  color: #ffffff;
}

.winter-slider__cta-button:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 2px;
}

.winter-slider__nav {
  display: flex;
  gap: 12px;
}

.slider-button {
  width: 48px;
  height: 48px;
  border: none;
  background-color: #ffffff;
  color: #111111;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition:
    color 0.2s ease,
    border-color 0.2s ease,
    background-color 0.2s ease;
}

.slider-button:hover:not([disabled]) {
  background-color: #f5f5f5;
}

.slider-button[disabled] {
  color: #ffffff;
  background-color: #4a4a4a;
  cursor: not-allowed;
}

.slider-button__icon {
  font-size: 22px;
  line-height: 1;
}

.winter-slider__viewport {
  overflow: hidden;
  padding-bottom: 8px;
}

.winter-slider__track {
  display: flex;
  gap: 24px;
  min-width: max-content;
  transition: transform 0.35s ease;
  background: transparent;
  /* will-change: transform; */
}

.bd-team-section {
  background-color: #000000;
  color: #ffffff;
  padding: 80px 0;
}

.bd-experience__content {
  display: flex;
  flex-direction: row;
  gap: 24px;
}

@media (max-width: 768px) {
  .bd-experience__content {
    flex-direction: column;
  }
}

.bd-team__inner {
  margin: 0 auto;
  padding: 0 3rem;
  display: grid;
  grid-template-columns: minmax(0, 360px) minmax(0, 1fr);
  gap: 48px;
  align-items: start;
}

.bd-team__content {
  display: flex;
  flex-direction: column;
  margin-top: 70px;
  gap: 24px;
}

.bd-team__inner--experience {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.bd-team__experience-header {
  display: flex;
  align-items: center;
  gap: 32px;
  width: 100%;
}

.bd-team__experience-header .bd-team__nav {
  margin-left: auto;
}

.bd-team__content--experience .bd-team__headline {
  margin: 0;
  font-size: 20px;
}

.bd-team__eyebrow {
  font-size: 32px;
  text-transform: uppercase;
  color: #cd4c1d;
  font-family: "Futura Semi Bold", "futura-pt", sans-serif;
}

.bd-team__headline {
  font-size: 32px;
  font-weight: 800;
  text-transform: uppercase;
  margin: 0;
}

.bd-team__copy {
  font-size: 18px;
  line-height: 1.6;
  margin: 0;
}

.bd-team__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-decoration: none;
  max-width: fit-content;
  font-family: "Futura Semi Bold";
  transition:
    transform 0.2s ease,
    background-color 0.2s ease,
    color 0.2s ease;
}

.bd-team__cta:hover {
  color: #ffffff;
  color: #cd4c1d;
}

.bd-team__slider {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.bd-team__nav {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}

.bd-team__button {
  background-color: #ffffff;
  border: none;
  color: #111111;
}

.bd-team__button:hover:not([disabled]) {
  background-color: #f5f5f5;
}

.bd-team__button[disabled],
.bd-team__button.swiper-button-disabled {
  background-color: #4a4a4a;
  color: #ffffff;
}

.bd-team__viewport {
  overflow: hidden;
  padding-bottom: 8px;
  width: 100%;
}

.bd-team__slider {
  width: 100%;
}

.bd-team__track {
  display: flex;
  gap: 24px;
  min-width: max-content;
  transition: transform 0.35s ease;
}

/* BD Team Swiper: PC 3개, MO 1.2개 노출 */
.bd-team__slider .bd-team-swiper {
  overflow: hidden;
  width: 100%;
  padding-bottom: 8px;
}

.bd-team-swiper.swiper,
.bd-team-swiper .swiper-wrapper {
  height: auto !important;
}

/* Swiper 버튼: 기존 모양 유지 */
.bd-team__nav .bd-team__button.swiper-button-prev,
.bd-team__nav .bd-team__button.swiper-button-next {
  position: static;
  margin: 0;
  width: 48px;
  height: 48px;
  background-image: none;
  background-color: #ffffff;
  color: #111111;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.bd-team__nav .bd-team__button.swiper-button-prev::after,
.bd-team__nav .bd-team__button.swiper-button-next::after {
  display: none;
}

/* slide = wrapper, athlete-card = 콘텐츠 (분리 구조로 높이 정상 표시) */
.bd-team-swiper .swiper-slide {
  height: auto;
  box-sizing: border-box;
}

@media (min-width: 769px) {
  .bd-team__slider .bd-team-swiper .swiper-slide {
    width: 32% !important;
    max-width: none;
  }
}

.bd-team-swiper .swiper-slide .athlete-card {
  flex: none !important;
  width: 100% !important;
  height: auto;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}

.bd-team-swiper .athlete-card__body {
  padding: 24px 20px;
  gap: 12px;
}

.bd-team-swiper .athlete-card__name,
.bd-team-swiper .athlete-card__discipline,
.bd-experience-swiper .athlete-card__name,
.bd-experience-swiper .athlete-card__discipline {
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.athlete-card {
  flex: 0 0 300px;
  background-color: #ffffff;
  color: #111111;
  display: flex;
  flex-direction: column;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  overflow: hidden;
}

.athlete-card__media {
  position: relative;
  padding-bottom: 140%;
  overflow: hidden;
}

.athlete-card__media img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.athlete-card__body {
  display: flex;
  flex-direction: column;
  text-align: center;
  min-width: 0;
  flex: 1;
}

.athlete-card--experience {
  aspect-ratio: 1 / 1.6;
  height: auto;
  flex: 1 1 auto;
}

.athlete-card--experience .athlete-card__media {
  flex: 7.8 0 0;
  min-height: 0;
  padding-bottom: 0;
  position: relative;
}

.athlete-card--experience .athlete-card__body {
  flex: 2.2 0 0;
  min-height: 0;
  text-align: left;
  align-items: flex-start;
  gap: 6px;
  overflow: auto;
  box-sizing: border-box;
}

.athlete-card__name {
  font-family: "Futura Semi Bold", "futura-pt", sans-serif;
  font-size: 23px;
  line-height: 24px;
  font-weight: 600;
  text-transform: uppercase;
  margin: 0;
  white-space: normal;
  overflow: visible;
  text-overflow: unset;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.athlete-card__discipline {
  font-size: 16px;
  color: #cd4c1d;
  margin: 0 0 3px 0;
  white-space: normal;
  word-wrap: break-word;
  overflow-wrap: break-word;
  min-width: 0;
}

.athlete-card--experience .athlete-card__discipline {
  color: #111111;
  font-weight: 500;
  margin-bottom: 3px;
}

.athlete-card__links {
  display: flex;
  justify-content: center;
  gap: 24px;
  font-weight: 700;
  font-size: 16px;
  margin-top: auto;
}

.athlete-card--experience .athlete-card__links {
  justify-content: flex-start;
}

/* BD Experience Swiper */
.bd-experience__slider .bd-experience-swiper {
  overflow: hidden;
  width: 100%;
}

.bd-experience-swiper.swiper,
.bd-experience-swiper .swiper-wrapper {
  height: auto !important;
}

.bd-experience-swiper .swiper-slide {
  height: auto;
  box-sizing: border-box;
  max-width: none !important;
}

@media (min-width: 769px) {
  .bd-experience-swiper .swiper-slide {
    width: 30% !important;
  }
}

@media (max-width: 768px) {
  .bd-experience-swiper .swiper-slide {
    width: 100% !important;
    padding: 0 1rem;
  }

  .athlete-card--experience {
    aspect-ratio: 1 / 1.8;
  }

  .athlete-card--experience .athlete-card__media {
    flex: 7 0 0;
  }

  .athlete-card--experience .athlete-card__body {
    flex: 3 0 0;
  }
}

.bd-experience-swiper .swiper-slide .athlete-card {
  flex: none !important;
  width: 100% !important;
  height: auto;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}

/* BD Experience nav 버튼: Swiper 기본 스타일 초기화 */
.bd-experience__nav .bd-exp-swiper-prev,
.bd-experience__nav .bd-exp-swiper-next {
  position: static;
  margin: 0;
  width: 48px;
  height: 48px;
  background-image: none;
}

.bd-experience__nav .bd-exp-swiper-prev::after,
.bd-experience__nav .bd-exp-swiper-next::after {
  display: none;
}

.bd-exp-swiper-prev.swiper-button-disabled,
.bd-exp-swiper-next.swiper-button-disabled {
  background-color: #4a4a4a;
  color: #ffffff;
}

.athlete-card__link {
  color: #111111;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition:
    color 0.2s ease,
    border-color 0.2s ease;
}

.athlete-card__link--cta {
  background-color: #cd4c1d;
  color: #ffffff;
  font-size: 14px;
  padding: 8px 16px;
  text-transform: uppercase;
  border-radius: 2px;
  border: none;
}

.athlete-card__link--cta:hover {
  color: #ffffff;
  border-color: transparent;
  background-color: #111111;
}

.athlete-card__link:hover {
  color: #cd4c1d;
  border-color: #cd4c1d;
}

@media (max-width: 1024px) {
  .bd-team__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .bd-team__nav {
    justify-content: flex-start;
  }
}

@media (max-width: 768px) {
  .athlete-card__name {
    font-size: 1.4rem !important;
    line-height: 1.4rem !important;
  }

  .athlete-card__link--cta {
    padding: 10px 9px;
    font-size: 12px;
    font-family: "Futura Semi Bold", sans-serif;
  }

  .bd-team-section {
    padding: 60px 1rem;
  }

  .bd-team__inner {
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 32px;
  }

  .bd-team__content {
    padding: 0;
    margin-top: 0;
  }

  .bd-team__slider {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    position: relative;
  }

  .bd-team__viewport,
  .bd-team__slider .bd-team-swiper {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .bd-team__nav {
    padding: 0 1rem;
    margin-bottom: 16px;
    justify-content: flex-end;
  }

  .bd-team__experience-header {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
  }

  .bd-team__experience-header .bd-experience__content {
    flex: 1;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .bd-team__experience-header .bd-team__nav.bd-experience__nav {
    margin-left: 0;
    flex-shrink: 0;
    align-self: flex-start;
  }

  .bd-team__experience-header .bd-team__headline {
    font-size: 24px;
  }

  .bd-team__content--experience {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .bd-team__eyebrow {
    font-size: 22px;
  }

  .bd-team__headline {
    font-size: 32px;
  }

  .bd-team__copy {
    font-size: 15px;
  }

  .athlete-card:not(.athlete-card--experience) {
    flex: 0 0 260px;
  }

  .bd-team-swiper .athlete-card {
    flex: none !important;
    width: 100% !important;
  }
}

@media (max-width: 540px) {
  .bd-team__button {
    width: 44px;
    height: 44px;
  }

  .bd-team__slider {
    width: 100vw;
    margin-left: calc(50% - 50vw);
  }

  .athlete-card {
    flex: 0 0 220px;
  }

  .bd-team-swiper .athlete-card {
    flex: none !important;
    width: 100% !important;
  }

  .athlete-card__body {
    padding: 20px 16px;
  }

  .athlete-card__links {
    gap: 16px;
  }
}

.product-card {
  flex: 0 0 280px;
  box-shadow:
    0 2px 8px rgba(0, 0, 0, 0.08),
    0 3px 5px rgba(25, 42, 63, 0.12);
  /* padding: 24px; */
  display: flex;
  flex-direction: column;
  gap: 16px;
  color: #111111;
  max-width: 250px;
}

.product-card__badge {
  position: absolute;
  top: 10px;
  right: 10px;
  display: inline-flex;
  padding: 10px 12px;
  color: #ffffff;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1.6px;
  line-height: 1.2;
  overflow: hidden;
  z-index: 2;
  /* box-shadow: 0 12px 24px rgba(0, 0, 0, 0.22); */
}

.product-card__badge::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #000000;
  transform: skew(-14deg);
  transform-origin: left center;
  z-index: -1;
  margin-left: 5px;
  margin-right: 5px;
}

.product-card__badge span {
  position: relative;
  transform: skew(14deg);
  font-style: italic;
  font-weight: inherit;
}

.product-card__image {
  width: 100%;
  position: relative;
  background: #cdcdcd;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 3 / 4;
}

.product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.product-card__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(240, 240, 240, 0.25);
  pointer-events: none;
  z-index: 0;
}

.product-card__swatches {
  padding: 5px 10px 10px 10px;
  display: flex;
  gap: 10px;
}

.product-card__swatches--thumbnails {
  margin-top: 16px;
  gap: 6px;
}

.product-card__swatch-thumb {
  width: 34px;
  aspect-ratio: 3 / 4;
  padding: 0;
  border: 2px solid transparent;
  background-color: #ffffff;
  cursor: pointer;
  overflow: hidden;
  position: relative;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.12);
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.product-card__swatch-thumb:focus-visible {
  outline: none;
  border-color: #111111;
  box-shadow: 0 0 0 2px rgba(17, 17, 17, 0.35);
}

.product-card__swatch-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(70%);
  transition: filter 0.2s ease;
}

.product-card__swatch-thumb:not(.is-active):hover img,
.product-card__swatch-thumb:not(.is-active):focus-visible img {
  filter: grayscale(20%);
}

.product-card__swatch-thumb.is-active {
  border-color: #111111;
}

.product-card__swatch-thumb.is-active img {
  filter: none;
}

.product-card__swatch {
  width: 28px;
  height: 28px;
  background-color: #1f1f1f;
  border: 1px solid #ffffff;
}

.product-card__swatch--alt {
  background-color: #6c7a87;
}

.product-card__swatch--alt2 {
  background-color: #d65121;
}

.product-card__name {
  font-size: 18px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.product-card__price {
  font-size: 16px;
  font-weight: 600;
}

.product-card__rating {
  display: flex;
  gap: 6px;
}

.product-card__star svg {
  width: 18px;
  height: 18px;
  fill: #d4d4d4;
}

.product-card__star--filled svg {
  fill: #111111;
}

@media (max-width: 1024px) {
  .winter-slider__headline {
    font-size: 32px;
  }

  .product-card {
    flex: 0 0 260px;
  }
}

@media (max-width: 768px) {
  .winter-slider-section {
    padding: 60px 0;
  }

  .winter-slider__header {
    flex-direction: column;
    align-items: flex-start;
  }

  .winter-slider__nav {
    margin-top: 16px;
  }

  .product-card {
    flex: 0 0 240px;
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .winter-slider__headline {
    font-size: 28px;
  }

  .product-card {
    flex: 0 0 220px;
  }

  .slider-button {
    width: 44px;
    height: 44px;
  }
}

.video-section {
  background-color: #0b0b0b;
  color: #ffffff;
  padding: 4rem 1.5rem;
}

.video-section__inner {
  margin: 0 auto;
  display: flex;
  gap: 3rem;
  align-items: stretch;
  flex-wrap: wrap;
}

.video-section__media {
  position: relative;
  flex: 1 1 55%;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background-color: #151515;
  border: none;
  outline: none;
}

/* 영상 재생 시 테두리·컨트롤 숨김 */
.video-section__media video,
.video-section__media iframe {
  border: none;
  outline: none;
}

.video-section__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.video-section__cover {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-position: center;
  background-size: cover;
  transition: opacity 0.3s ease;
}

.video-section__play {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: transparent;
  border: 4px solid rgba(255, 255, 255, 0.88);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease;
}

.video-section__play:hover,
.video-section__play:focus {
  transform: scale(1.05);
  border-color: rgba(255, 255, 255, 1);
}

.video-section__play-icon {
  position: relative;
  width: 0;
  height: 0;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  border-left: 14px solid rgba(255, 255, 255, 0.88);
  margin-left: 3px;
}

.video-section__content {
  flex: 1 1 35%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.5rem;
}

.video-section__eyebrow {
  letter-spacing: 0.24em;
  font-size: 0.85rem;
  text-transform: uppercase;
  color: #f9f1e5;
}

.video-section__headline {
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.1;
  font-weight: 800;
}

.video-section__description {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #e8e7e4;
}

.video-section__cta {
  align-self: flex-start;
  padding: 8px 16px;
  background-color: #cd4c1d;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.video-section__cta a {
  color: #fff !important;
}

.video-section__cta:hover,
.video-section__cta:focus {
  transform: translateY(-2px);
  background-color: #f06b35;
}

.video-section__media.is-playing .video-section__video {
  opacity: 1;
  pointer-events: auto;
}

.video-section__media.is-playing .video-section__cover {
  opacity: 0;
  pointer-events: none;
}

@media (max-width: 900px) {
  .video-section__inner {
    gap: 2rem;
  }

  .video-section__content {
    flex: 1 1 100%;
    text-align: center;
    align-items: center;
  }

  .video-section__cta {
    align-self: center;
  }
}

@media (max-width: 600px) {
  .video-section {
    padding: 3rem 1rem;
  }

  .video-section__media {
    flex: 1 1 100%;
    aspect-ratio: 16 / 9;
  }

  .video-section__play {
    width: 80px;
    height: 80px;
    border-width: 3px;
  }

  .video-section__play-icon {
    border-top-width: 14px;
    border-bottom-width: 14px;
    border-left-width: 22px;
  }
}

.bd-holiday-guide {
  background-color: #000000;
  color: #ffffff;
}

.bd-holiday-guide__container {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: stretch;
}

.bd-holiday-guide__media picture,
.bd-holiday-guide__media img {
  display: block;
  width: 100%;
  height: auto;
}

.bd-holiday-guide__content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 32rem;
  padding: 24px 3rem;
}

.bd-holiday-guide__heading {
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.1;
}

.bd-holiday-guide__body {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
}

.bd-holiday-guide__cta {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 2.6rem;
  background-color: #cd4c1d;
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 999px;
  transition:
    transform 0.2s ease,
    background-color 0.2s ease;
}

.bd-holiday-guide__cta:hover,
.bd-holiday-guide__cta:focus {
  transform: translateY(-2px);
  background-color: #f06b35;
}

.bd-founding-stories {
  background-color: #ffffff;
}

.bd-founding-stories__inner {
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 5vw, 1rem);
  padding: 24px 3rem 50px 3rem;
}

.bd-founding-stories__intro {
  text-align: center;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

.bd-founding-stories__headline {
  font-size: 48px;
  font-weight: 900;
  text-transform: uppercase;
  color: #000000;
}

.bd-founding-stories__description {
  font-size: 1.12rem;
  max-width: 850px;
  color: #000000;
  white-space: pre-line;
}

.bd-founding-stories__grid {
  display: grid;
  gap: 20px;
}

.bd-founding-stories__card {
  position: relative;
  overflow: hidden;
  min-height: 22rem;
  background-color: #000000;
  isolation: isolate;
}

.bd-founding-stories__card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 30%,
    rgba(0, 0, 0, 0.75) 100%
  );
  z-index: 1;
  transition: opacity 0.3s ease;
}

.bd-founding-stories__media,
.bd-founding-stories__media img {
  display: block;
  width: 100%;
  height: 100%;
}

.bd-founding-stories__media img {
  object-fit: cover;
  transition: transform 0.4s ease;
}

.bd-founding-stories__overlay {
  position: absolute;
  left: 0;
  bottom: 0;
  right: auto;
  top: auto;
  padding: 0 0 0.5rem 1.2rem;
  z-index: 2;
  display: flex;
  flex-direction: column;
  color: #ffffff;
}

.bd-founding-stories__card-title {
  font-size: 20px;
  font-weight: 900;
  text-transform: uppercase;
}

.bd-founding-stories__cta {
  align-self: flex-start;
  padding: 0.85rem 2.3rem;
  background-color: #ffffff;
  color: #000000;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 999px;
  transition:
    transform 0.2s ease,
    background-color 0.2s ease,
    color 0.2s ease;
}

.bd-founding-stories__card:hover .bd-founding-stories__media img,
.bd-founding-stories__card:focus-within .bd-founding-stories__media img {
  transform: scale(1.05);
}

.bd-founding-stories__card:hover::after,
.bd-founding-stories__card:focus-within::after {
  opacity: 0.85;
}

.bd-founding-stories__card:hover .bd-founding-stories__cta,
.bd-founding-stories__card:focus-within .bd-founding-stories__cta {
  transform: translateY(-2px);
  background-color: #cd4c1d;
  color: #ffffff;
}

@media (min-width: 640px) {
  .bd-founding-stories__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 992px) {
  .bd-founding-stories__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .bd-holiday-guide__content,
  .bd-founding-stories__inner {
    padding: 24px 15px;
  }

  .bd-founding-stories__headline {
    font-size: 30px;
    line-height: 35px;
  }

  .bd-founding-stories__description {
    font-size: 16px;
    line-height: 21px;
    padding-top: 1rem;
  }

  .bd-founding-stories__card-title {
    font-size: 18px;
  }
}

@media (max-width: 599px) {
  .bd-founding-stories__cta {
    width: fit-content;
  }
}

@media (min-width: 992px) {
  .bd-holiday-guide__container {
    flex-direction: row;
    align-items: center;
    justify-content: center;
  }

  .bd-holiday-guide__media,
  .bd-holiday-guide__content {
    flex: 1 1 50%;
  }

  .bd-holiday-guide__content {
    padding: 0;
    max-width: none;
  }
}

.bd-heritage-links {
  background-color: #000000;
  color: #ffffff;
}

.bd-heritage-links__inner {
  display: flex;
  flex-direction: column;
  gap: clamp(1.25rem, 4vw, 1.75rem);
  margin: 0 auto;
}

.bd-heritage-links__item {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 4vw, 1.75rem);
  text-decoration: none;
  color: inherit;
  padding: clamp(1rem, 3vw, 1.5rem) clamp(1rem, 3vw, 1.5rem);
  border-radius: 16px;
  transition:
    background-color 0.25s ease,
    transform 0.25s ease;
}

.bd-heritage-links__item:hover,
.bd-heritage-links__item:focus {
  background-color: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}

.bd-heritage-links__icon {
  flex: 0 0 auto;
  width: clamp(2.2rem, 6vw, 3rem);
  height: clamp(2.2rem, 6vw, 3rem);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
}

.bd-heritage-links__icon img {
  max-width: 100%;
  height: auto;
  filter: invert(1);
}

.bd-heritage-links__icon svg {
  width: 100%;
  height: 100%;
}

.bd-heritage-links__text {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.bd-heritage-links__label {
  font-size: clamp(1.4rem, 3vw, 1.6rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.bd-heritage-links__description {
  font-size: clamp(0.95rem, 2.4vw, 1.05rem);
  color: rgba(255, 255, 255, 0.85);
}

.bd-heritage-links__chevron {
  margin-left: auto;
  font-size: clamp(1.4rem, 4vw, 2rem);
  font-weight: 700;
  color: #ffffff;
  transition: transform 0.25s ease;
}

.bd-heritage-links__item:hover .bd-heritage-links__chevron,
.bd-heritage-links__item:focus .bd-heritage-links__chevron {
  transform: translateX(4px);
}

@media (min-width: 992px) {
  .bd-heritage-links__inner {
    flex-direction: row;
    align-items: stretch;
    justify-content: space-between;
  }

  .bd-heritage-links__item {
    flex: 1;
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.bd-footer-signup {
  background-color: #000000;
  color: #ffffff;
}

.bd-footer-signup__ridgeline {
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
  overflow: hidden;
}

.bd-footer-signup__ridgeline svg {
  width: 100%;
  height: auto;
  display: block;
}

.bd-footer-signup__ridgeline .ridgeline-path {
  stroke: rgba(255, 255, 255, 1);
  stroke-width: 6;
}

.bd-footer-signup__inner {
  margin: 0 auto;
  display: grid;
  gap: clamp(2rem, 6vw, 4.5rem);
  padding: 0 24px;
  align-items: flex-start;
}

.bd-footer-signup__primary {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 360px;
  gap: clamp(1.75rem, 4vw, 2.75rem);
}

.bd-footer-signup__headline {
  font-size: 24px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.bd-footer-signup__form {
  display: flex;
  flex-direction: column;
  gap: 1.3rem;
}

.bd-footer-signup__field {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
}

.bd-footer-signup__field input {
  flex: 1;
  background: transparent;
  border: none;
  color: #ffffff;
  font-size: 1.05rem;
  letter-spacing: 0.05em;
  outline: none;
}

.bd-footer-signup__field input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.bd-footer-signup__field--sms {
  gap: 1rem;
}

.bd-footer-signup__country {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding-right: 0.75rem;
  border-right: 1px solid rgba(255, 255, 255, 0.35);
}

.bd-footer-signup__country-caret {
  width: 12px;
  height: 8px;
  color: rgba(255, 255, 255, 0.7);
}

.bd-footer-signup__flag {
  width: 24px;
  height: 16px;
  object-fit: cover;
  border-radius: 2px;
}

.bd-footer-signup__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.35rem 0.4rem;
  color: #ffffff;
  background: none;
  border: none;
  cursor: pointer;
  transition:
    color 0.25s ease,
    transform 0.25s ease;
}

.bd-footer-signup__submit svg {
  width: 1.35rem;
  height: 1.35rem;
}

.bd-footer-signup__submit:hover,
.bd-footer-signup__submit:focus {
  color: rgba(255, 255, 255, 0.8);
  transform: translateX(2px);
}

.bd-footer-signup__social {
  display: flex;
  gap: 1rem;
}

.bd-footer-signup__social-link {
  width: 3.1rem;
  height: 3.1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #ffffff;
  text-decoration: none;
  transition:
    background-color 0.25s ease,
    color 0.25s ease,
    transform 0.25s ease;
}

.bd-footer-signup__social-link svg {
  width: 1.45rem;
  height: 1.45rem;
}

.bd-footer-signup__social-link:hover,
.bd-footer-signup__social-link:focus {
  background-color: #ffffff;
  color: #000000;
  transform: translateY(-2px);
}

.bd-footer-signup__secondary {
  display: flex;
  flex-direction: column;
  gap: clamp(1.75rem, 4vw, 2.5rem);
}

.bd-footer-signup__brand {
  max-width: 160px;
}

.bd-footer-signup__logo {
  width: 100%;
  height: auto;
  display: block;
}

.bd-footer-signup__links {
  display: grid;
  gap: 1.5rem clamp(1.5rem, 4vw, 3rem);
  justify-items: start;
}

.bd-footer-signup__links-group {
  display: flex;
  flex-direction: column;

  gap: 0.65rem;
  line-height: 2;
}

.bd-footer-signup__link {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  transition: color 0.2s ease;
}

.bd-footer-signup__link:hover,
.bd-footer-signup__link:focus {
  color: #ffffff;
}

@media (min-width: 720px) {
  .bd-footer-signup__inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .bd-footer-signup__links {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 719px) {
  .bd-footer-signup__inner {
    text-align: center;
  }

  .bd-footer-signup__primary {
    align-items: center;
  }

  .bd-footer-signup__field {
    justify-content: center;
  }

  .bd-footer-signup__field input {
    text-align: center;
  }

  .bd-footer-signup__social {
    justify-content: center;
  }

  .bd-footer-signup__secondary {
    align-items: center;
  }

  .bd-footer-signup__links {
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1040px) {
  .bd-footer-signup__inner {
    grid-template-columns: minmax(0, 420px) minmax(0, 1fr);
  }

  .bd-footer-signup__social {
    margin-top: 1rem;
  }
}

.bd-footer-legal {
  background-color: #000000;
  color: rgba(255, 255, 255, 0.65);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 20px;
}

.bd-footer-legal__inner {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 0 24px;
}

.bd-footer-legal__primary {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.bd-footer-legal__notice {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
  letter-spacing: 0.04em;
}

.bd-footer-legal__link,
.bd-footer-legal__compliance {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  transition: color 0.2s ease;
}

.bd-footer-legal__link:hover,
.bd-footer-legal__link:focus,
.bd-footer-legal__compliance:hover,
.bd-footer-legal__compliance:focus {
  color: #ffffff;
}

.bd-footer-legal__compliance {
  display: inline-flex;
  align-items: center;
}

@media (min-width: 720px) {
  .bd-footer-legal__primary {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.75rem;
  }

  .bd-footer-legal__primary > *:not(:last-child) {
    position: relative;
    padding-right: 1.75rem;
  }

  .bd-footer-legal__primary > *:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0.65rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 16px;
    background-color: rgba(255, 255, 255, 0.18);
  }

  .bd-footer-legal__notice {
    flex-shrink: 0;
    padding-right: 1.75rem;
  }

  .bd-footer-legal__compliance {
    align-self: flex-start;
  }
}
