@font-face {
  font-family: 'M PLUS 1';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../assets/fonts/m-plus-1-v16-latin-regular.woff2') format('woff2');
}

@font-face {
  font-family: 'M PLUS 1';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../assets/fonts/m-plus-1-v16-latin-500.woff2') format('woff2');
}

@font-face {
  font-family: 'M PLUS 1';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../assets/fonts/m-plus-1-v16-latin-700.woff2') format('woff2');
}

:root {
  --bg-start: #0c1511;
  --bg-end: #1f2b22;
  --text-main: #eef1ff;
  --text-soft: #b9bfd8;
  --accent: #fd5383;
  --accent-hover: #e74a4c;
  --accent-aux: #456526;
  --border: rgba(255, 255, 255, 0.12);
  --max-width: 1160px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "M PLUS 1", sans-serif;
  color: var(--text-main);
  background: linear-gradient(180deg, var(--bg-start), var(--bg-end));
}

a {
  color: inherit;
  text-decoration: none;
}

.hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 20px 56px;
}

.hero__header {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 21, 16, 0.38), rgba(11, 21, 16, 0.9));
}

.hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(10px, 1.6vw, 24px);
  width: min(72vw, 520px);
  transform: translateX(-288px);
}

.hero__logo {
  width: clamp(170px, 40vw, 520px);
}

.hero__logo img {
  width: 100%;
  max-height: clamp(120px, 28vh, 380px);
  object-fit: contain;
  display: block;
}

.lang-switcher {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 3;
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  gap: 8px;
}

.lang-switcher__toggle {
  font-family: inherit;
  font-size: 16px;
  font-weight: 700;
  padding: 10px 18px;
  border-radius: 999px;
  color: #fff;
  background: var(--accent);
  border: 1px solid var(--border);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 0.2s ease;
}

.lang-switcher__toggle:hover {
  background: var(--accent-hover);
}

.lang-switcher__toggle::after {
  content: "";
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-right: 6px solid currentColor;
  transition: transform 0.2s ease;
}

.lang-switcher--open .lang-switcher__toggle::after {
  transform: rotate(180deg);
}

.lang-switcher__menu {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 8px;
  list-style: none;
  background: rgba(12, 23, 17, 0.72);
  border: 1px solid var(--border);
  border-radius: 999px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(8px);
  pointer-events: none;
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
}

.lang-switcher--open .lang-switcher__menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  pointer-events: auto;
}

.lang-switcher__current,
.lang-switcher__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.lang-switcher__flag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.lang-switcher__flag img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.lang-switcher__code {
  line-height: 1;
}

.lang-switcher__link {
  font-size: 15px;
  font-weight: 700;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--text-soft);
  transition: 0.2s ease;
  white-space: nowrap;
}

.lang-switcher__link:hover {
  color: var(--text-main);
  background: rgba(255, 255, 255, 0.08);
}

.section-nav-wrapper {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(8px);
  background: rgba(12, 22, 17, 0.84);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section-nav {
  width: min(var(--max-width), 96vw);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  padding: 12px 0;
}

.section-nav__item {
  padding: 10px 16px;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--text-soft);
  font-weight: 600;
  font-size: 14px;
  transition: 0.2s ease;
}

.section-nav__item:hover,
.section-nav__item.active {
  color: #fff;
  border-color: rgba(253, 83, 131, 0.75);
  background: rgba(253, 83, 131, 0.2);
}

.content {
  width: min(var(--max-width), 94vw);
  margin: 0 auto;
  padding: 36px 0 20px;
}

.content-section {
  padding: 34px 6px;
}

.content-section + .content-section {
  margin-top: 36px;
}

/* Trailer block kept in DOM for later; toggle by removing this class */
.content-section--trailer-hidden {
  display: none !important;
}

.section-title {
  margin: 0 0 18px;
  text-align: center;
  font-size: clamp(26px, 3.2vw, 40px);
  font-weight: 700;
}

.image-block {
  overflow: hidden;
}

.image-block img {
  width: 100%;
  display: block;
}

.image-block--full img {
  min-height: clamp(280px, 42vw, 520px);
  object-fit: cover;
  object-position: center;
}

.section-block__text {
  margin: 18px 0 0;
  font-size: 18px;
  line-height: 1.8;
  color: var(--text-soft);
  text-align: left;
}

.trailer-frame {
  border: 1px solid var(--border);
  padding: 10px;
  background: #0e1713;
}

.trailer-frame__inner {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 10px;
}

.trailer-frame__inner iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.faq {
  display: grid;
  gap: 12px;
}

.faq__item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  padding: 14px;
}

.faq__question {
  margin: 0 0 8px;
  font-size: 17px;
}

.faq__answer {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.6;
}

.end-visual {
  position: relative;
  width: 100%;
  margin: 34px 0 0;
  height: clamp(280px, 46vw, 620px);
  display: flex;
  justify-content: center;
  align-items: flex-end;
  overflow: hidden;
  pointer-events: none;
}

.end-visual img,
.end-visual video {
  width: min(1500px, 100%);
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
  display: block;
  filter: saturate(0.95) brightness(0.86);
}

.end-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(12, 21, 17, 0) 0%, rgba(12, 21, 17, 0.16) 36%, rgba(12, 21, 17, 0.8) 100%),
    linear-gradient(90deg, rgba(12, 21, 17, 0.95) 0%, rgba(12, 21, 17, 0) 16%, rgba(12, 21, 17, 0) 84%, rgba(12, 21, 17, 0.95) 100%);
}

.end-visual::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: clamp(28px, 5vw, 58px);
  background: linear-gradient(180deg, rgba(31, 43, 34, 1), rgba(31, 43, 34, 0));
}

.end-visual--a {
  height: clamp(250px, 40vw, 520px);
}

.end-visual--b {
  height: clamp(300px, 48vw, 640px);
}

.end-visual--b img,
.end-visual--b video {
  width: min(1700px, 108%);
  filter: saturate(0.92) brightness(0.82);
}

.end-visual--b::before {
  background:
    linear-gradient(180deg, rgba(12, 21, 17, 0.04) 0%, rgba(12, 21, 17, 0.26) 42%, rgba(12, 21, 17, 0.88) 100%),
    linear-gradient(90deg, rgba(12, 21, 17, 0.98) 0%, rgba(12, 21, 17, 0.2) 14%, rgba(12, 21, 17, 0.2) 86%, rgba(12, 21, 17, 0.98) 100%);
}

.end-visual-combo {
  position: relative;
}

.end-visual--c {
  height: clamp(340px, 54vw, 700px);
}

.end-visual--c img,
.end-visual--c video {
  width: min(1650px, 104%);
  filter: saturate(0.9) brightness(0.78);
}

.end-visual-combo__info {
  position: absolute;
  left: clamp(12px, 3vw, 30px);
  right: clamp(12px, 3vw, 30px);
  bottom: clamp(14px, 3vw, 28px);
  padding: clamp(12px, 2vw, 18px);
  background: linear-gradient(180deg, rgba(12, 21, 17, 0.28), rgba(12, 21, 17, 0.72));
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.end-visual-combo__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: clamp(8px, 2vw, 16px);
  width: 100%;
}

.end-visual-combo__game {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
  flex: 0 1 auto;
}

.end-visual-combo__icon {
  width: clamp(64px, 8vw, 92px);
  height: clamp(64px, 8vw, 92px);
  flex-shrink: 0;
  border-radius: 50%;
  overflow: hidden;
}

.end-visual-combo__icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 50%;
}

.end-visual-combo__meta {
  display: grid;
  gap: 4px;
}

.end-visual-combo__name {
  font-size: clamp(18px, 2.2vw, 26px);
  font-weight: 700;
  color: #fff;
}

.end-visual-combo__sub {
  color: var(--text-soft);
  font-size: clamp(12px, 1.4vw, 15px);
}

.end-visual-combo__play {
  min-width: clamp(180px, 24vw, 290px);
  height: clamp(54px, 7vw, 84px);
  flex-shrink: 0;
}

.end-visual-combo--minimal .end-visual-combo__meta {
  display: none;
}

.end-visual-combo--text-only .end-visual-combo__play {
  display: none;
}

.end-visual-combo--soft .end-visual-combo__info {
  background: linear-gradient(180deg, rgba(12, 21, 17, 0.2), rgba(12, 21, 17, 0.62));
  border-color: rgba(255, 255, 255, 0.08);
}

.section-play {
  margin-top: 18px;
  display: flex;
  justify-content: center;
}

.section-play__btn,
.footer-block__play-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 320px;
  height: 90px;
  padding: 0 52px;
  border-radius: 0;
  background: url("../assets/common/button.webp") center / 100% 100% no-repeat;
  color: #fff;
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 0.03em;
  transition: transform 0.2s ease, filter 0.2s ease;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.45);
}

.hero__play-btn {
  min-width: clamp(190px, 24vw, 320px);
  height: clamp(56px, 7vw, 90px);
  padding: 0 clamp(18px, 2.4vw, 44px);
}

.section-play__btn:hover,
.footer-block__play-btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.08) saturate(1.05);
}

.social-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.social-links__item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text-soft);
  font-size: 15px;
  transition: 0.2s ease;
}

.social-links__item::before {
  content: "";
  width: 18px;
  height: 18px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  opacity: 0.9;
}

.social-links__item--instagram::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23fd5383'%3E%3Cpath d='M12 2.163c3.204 0 3.584.012 4.85.07 3.252.148 4.771 1.691 4.919 4.919.058 1.265.069 1.645.069 4.849 0 3.205-.012 3.584-.069 4.849-.149 3.225-1.664 4.771-4.919 4.919-1.266.058-1.644.07-4.85.07-3.204 0-3.584-.012-4.849-.07-3.26-.149-4.771-1.699-4.919-4.92-.058-1.265-.07-1.644-.07-4.849 0-3.204.013-3.583.07-4.849.149-3.227 1.664-4.771 4.919-4.919 1.266-.057 1.645-.069 4.849-.069zm0 5.838a4 4 0 1 0 0 8 4 4 0 0 0 0-8zm6.4-1.7a1.44 1.44 0 1 0 0-2.88 1.44 1.44 0 0 0 0 2.88z'/%3E%3C/svg%3E");
}

.social-links__item--youtube::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23e74a4c'%3E%3Cpath d='M23.5 6.2a3 3 0 0 0-2.1-2.1C19.5 3.5 12 3.5 12 3.5s-7.5 0-9.4.6A3 3 0 0 0 .5 6.2C0 8.1 0 12 0 12s0 3.9.5 5.8a3 3 0 0 0 2.1 2.1c1.9.6 9.4.6 9.4.6s7.5 0 9.4-.6a3 3 0 0 0 2.1-2.1c.5-1.9.5-5.8.5-5.8s0-3.9-.5-5.8zM9.5 15.6V8.4L15.8 12l-6.3 3.6z'/%3E%3C/svg%3E");
}

.social-links__item:hover {
  color: #fff;
}

.related-games--in-combo {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  justify-content: center;
}

.related-games__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.related-games__icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  display: block;
}

.related-games__icon--placeholder {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  border-radius: 50%;
}

.related-games__link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 16px 7px 7px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(12, 23, 17, 0.55);
  color: var(--text-main);
  font-size: 15px;
  font-weight: 600;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

a.related-games__link:hover {
  border-color: rgba(253, 83, 131, 0.45);
  background: rgba(253, 83, 131, 0.12);
  color: #fff;
}

.related-games__link--soon {
  color: var(--text-soft);
  cursor: default;
  opacity: 0.72;
}

.related-games__badge {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-soft);
  padding: 3px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
}

.footer {
  width: min(var(--max-width), 94vw);
  margin: 10px auto 0;
  padding: 16px 0 28px;
}

.footer__bottom-row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 16px;
}

.footer__links {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer__links a {
  color: var(--text-soft);
  font-size: 13px;
}

.footer__links a:hover {
  color: #fff;
}

.footer__separator {
  color: rgba(255, 255, 255, 0.35);
}

.social-links--footer {
  flex-direction: row;
  align-items: center;
  gap: 14px;
}

.social-links--footer .social-links__item {
  font-size: 13px;
}

.footer__copyright {
  margin: 0;
  color: #99a0bf;
  font-size: 13px;
}

.carousel {
  margin-top: 6px;
}

.carousel__slide-area {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel__container {
  width: min(980px, 100%);
  overflow: hidden;
}

.carousel__track {
  display: flex;
}

.carousel__slide {
  flex: 0 0 100%;
}

.carousel__slide img {
  display: block;
  width: 100%;
}

.carousel__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 31px;
  height: 31px;
  border: none;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  z-index: 3;
}

.carousel__nav::before {
  content: none;
}

.carousel__nav img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.carousel__nav::after {
  content: none;
  display: none;
}

.carousel__nav--prev {
  left: 8px;
}

.carousel__nav--next {
  right: 8px;
}

.carousel__pagination {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 14px;
}

.carousel__dot {
  width: 12px;
  height: 12px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  background: transparent;
  cursor: pointer;
}

.carousel__dot.active {
  background: var(--accent-aux);
  border-color: var(--accent-aux);
}

.carousel--style-b .carousel__nav {
  width: 46px;
  height: 46px;
}

.carousel--style-b .carousel__nav::after {
  content: none;
  display: none;
}

.carousel--style-b .carousel__pagination {
  gap: 14px;
}

.carousel--style-b .carousel__dot {
  width: 44px;
  height: 7px;
  border: none;
  background: rgba(255, 255, 255, 0.25);
}

.carousel--style-b .carousel__dot.active {
  background: #fd5383;
}

@media (max-width: 900px) {
  .hero {
    min-height: clamp(260px, 46vw, 360px);
    height: auto;
    display: block;
    padding: 52px 16px 22px;
  }

  .hero__header {
    object-position: center 24%;
  }

  .hero__content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 360px;
    margin: 0 auto;
    transform: none;
    gap: 12px;
  }

  .hero__logo {
    width: clamp(140px, 38vw, 220px);
  }

  .hero__logo img {
    max-height: clamp(72px, 15vw, 108px);
  }

  .section-play__btn,
  .footer-block__play-btn {
    min-width: 280px;
    height: 78px;
    font-size: 28px;
    padding: 0 36px;
  }

  .footer-block__info {
    flex-direction: column;
    gap: 16px;
  }

  .footer-side {
    align-items: flex-start;
    min-width: 0;
  }

  .footer__bottom-row {
    grid-template-columns: 1fr;
    justify-items: start;
    gap: 10px;
  }

  .social-links--footer {
    flex-wrap: wrap;
    gap: 10px;
  }

  .end-visual-combo__top {
    flex-direction: column;
    align-items: center;
    gap: 18px;
  }

  .end-visual-combo__game {
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
  }

  .end-visual-combo__meta {
    justify-items: center;
    text-align: center;
  }

  .related-games--in-combo {
    flex: none;
    width: 100%;
    justify-content: center;
  }

  .related-games__list {
    flex-direction: column;
    align-items: center;
    gap: 8px;
    width: 100%;
  }

  .related-games__link {
    width: min(100%, 320px);
    justify-content: center;
  }

  .end-visual-combo__play {
    width: min(280px, 88vw);
    max-width: 310px;
    align-self: center;
    flex-shrink: 0;
  }

  .lang-switcher {
    flex-direction: column;
    align-items: flex-end;
    top: 12px;
    right: 12px;
    z-index: 50;
    max-width: calc(100vw - 24px);
  }

  .lang-switcher__menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 10px;
    border-radius: 16px;
    max-width: min(240px, calc(100vw - 24px));
    max-height: min(70vh, 420px);
    overflow-y: auto;
    transform: translateY(-8px);
  }

  .lang-switcher--open .lang-switcher__menu {
    transform: translateY(0);
  }

  .lang-switcher__link {
    justify-content: flex-start;
    width: 100%;
    white-space: nowrap;
  }

  .end-visual-combo {
    position: relative;
    overflow: hidden;
    min-height: clamp(280px, 55vw, 400px);
  }

  .end-visual.end-visual--c {
    position: absolute;
    inset: 0;
    margin: 0;
    width: 100%;
    height: 100%;
    min-height: 0;
  }

  .end-visual--c img,
  .end-visual--c video {
    width: min(1650px, 104%);
    height: 100%;
    max-height: none;
    object-fit: cover;
    object-position: center center;
  }

  .end-visual-combo__info {
    position: relative;
    z-index: 2;
    margin: 0;
    padding: clamp(16px, 4vw, 20px);
    border-left: none;
    border-right: none;
    border-bottom: none;
  }
}

@media (max-width: 640px) {
  .hero {
    min-height: clamp(240px, 42vw, 320px);
    padding: 48px 12px 18px;
  }

  .hero__content {
    max-width: 320px;
  }

  .hero__logo {
    width: clamp(128px, 36vw, 200px);
  }

  .hero__logo img {
    max-height: clamp(64px, 14vw, 96px);
  }

  .end-visual-combo {
    min-height: clamp(260px, 58vw, 380px);
  }

  .section-play__btn,
  .footer-block__play-btn {
    min-width: 240px;
    height: 68px;
    font-size: 24px;
    padding: 0 24px;
    width: min(270px, 88vw);
  }

  .end-visual-combo__play {
    width: min(260px, 88vw);
  }

  .lang-switcher__toggle {
    font-size: 13px;
    padding: 7px 12px;
    gap: 6px;
  }

  .lang-switcher__flag {
    width: 20px;
    height: 20px;
  }

  .lang-switcher__link {
    font-size: 14px;
    padding: 8px 10px;
  }

  .content-section,
  .footer-block {
    padding: 20px 16px;
  }

  .content-section {
    padding-left: 0;
    padding-right: 0;
  }

  .section-nav__item {
    font-size: 13px;
    padding: 9px 12px;
  }

  .section-block__text {
    font-size: 16px;
    line-height: 1.7;
  }

  .carousel__nav {
    width: 26px;
    height: 26px;
  }

  .carousel--style-b .carousel__nav {
    width: 36px;
    height: 36px;
  }

  .carousel--style-b .carousel__dot {
    width: 34px;
    height: 6px;
  }

  .footer {
    padding-left: 16px;
    padding-right: 16px;
  }

  .end-visual-combo__icon {
    width: 72px;
    height: 72px;
  }

  .end-visual-combo__name {
    font-size: 20px;
  }

  .end-visual-combo__sub {
    font-size: 12px;
    line-height: 1.45;
  }

  .related-games__link {
    font-size: 13px;
    padding: 8px 14px 8px 8px;
  }

  .related-games__icon {
    width: 32px;
    height: 32px;
  }
}

@media (max-width: 480px) {
  .hero {
    min-height: clamp(220px, 58vw, 300px);
    padding: 44px 12px 16px;
  }

  .hero__logo {
    width: clamp(120px, 34vw, 180px);
  }

  .hero__logo img {
    max-height: clamp(60px, 13vw, 88px);
  }

  .end-visual-combo {
    min-height: clamp(240px, 62vw, 340px);
  }

  .hero__play-btn {
    min-width: 170px;
    height: 52px;
    padding: 0 16px;
  }

  .section-play__btn,
  .footer-block__play-btn {
    min-width: 220px;
    height: 62px;
    font-size: 21px;
    padding: 0 20px;
  }

  .carousel--style-b .carousel__nav {
    width: 30px;
    height: 30px;
  }

  .carousel--style-b .carousel__nav--prev {
    left: 2px;
  }

  .carousel--style-b .carousel__nav--next {
    right: 2px;
  }

  .carousel--style-b .carousel__pagination {
    gap: 8px;
    margin-top: 10px;
  }

  .carousel--style-b .carousel__dot {
    width: 24px;
    height: 5px;
  }
}
