/* ===== Reset & Base ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  width: 100%;
  height: 100%;
  overflow: hidden;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  color: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

button {
  font-family: inherit;
  border: none;
  background: none;
  color: inherit;
  cursor: pointer;
}

ul {
  list-style: none;
}

/* ===== Video Background ===== */
.video-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  background: #000;
}

.video-bg iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 177.78vh; /* 16:9 */
  height: 100vh;
  min-width: 100vw;
  min-height: 56.25vw; /* 9:16 */
  transform: translate(-50%, -50%);
  border: 0;
}

/* ===== Overlay ===== */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  z-index: 1;
  pointer-events: none;
}

/* ===== Header ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 32px 40px;
}

.header__logo-img {
  height: 18px;
  width: auto;
  display: block;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.02em;
  transition: opacity 0.3s ease;
}

.nav-link:hover {
  color: #ff69b4;
  opacity: 1;
}

/* ===== Language Switcher ===== */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: 12px;
}

.lang-btn {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.02em;
  opacity: 0.4;
  transition: opacity 0.3s ease;
  padding: 0;
}

.lang-btn.active {
  opacity: 1;
}

.lang-btn:hover {
  opacity: 0.8;
}

.lang-divider {
  font-size: 14px;
  opacity: 0.3;
}

/* ===== Header — Mobile (all pages) ===== */
@media (max-width: 767px) {
  .header {
    padding: 16px 20px;
  }

  .header__nav {
    gap: 16px;
  }

  .nav-list {
    gap: 12px;
  }

  .nav-link {
    font-size: 13px;
  }

  /* Language: show only current lang (EN or RU), click toggles */
  .lang-divider {
    display: none;
  }

  .lang-btn:not(.active) {
    display: none;
  }

  .lang-switcher {
    margin-left: 4px;
  }

  .lang-btn {
    font-size: 13px;
  }
}

/* ===== Hero Center Content ===== */
.hero-center {
  position: fixed;
  top: 50%;
  left: 0;
  width: 100%;
  transform: translateY(-50%);
  z-index: 5;
  pointer-events: none;
  display: flex;
  align-items: flex-end;
}

.hero-center__logo {
  flex: 0 0 calc(50% - 10px);
  display: flex;
  justify-content: flex-end;
}

.hero-center__logo img {
  height: 60px;
  width: auto;
  display: block;
}

.hero-center__text {
  margin-left: 20px;
  margin-bottom: -5px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hero-center__line {
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 0.03em;
  line-height: 1.5;
  white-space: nowrap;
}

/* ===== Showreel Button ===== */
.showreel-btn {
  position: fixed;
  bottom: 40px;
  left: 40px;
  z-index: 10;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  border: 1px solid #fff;
  border-radius: 8px;
  background: transparent;
  color: #fff;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.02em;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  cursor: pointer;
  text-decoration: none;
}

.page-home .showreel-btn:hover,
.showreel-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #ff69b4;
  border-color: #ff69b4;
}

.showreel-btn__icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  fill: #fff;
  transition: fill 0.3s ease;
}

.page-home .showreel-btn:hover .showreel-btn__icon,
.showreel-btn:hover .showreel-btn__icon {
  fill: #ff69b4;
}

/* ===== Home Page — Mobile ===== */
@media (max-width: 767px) {
  .page-home .header {
    padding: 20px 20px;
  }

  .page-home .hero-center {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
  }

  .page-home .hero-center__logo {
    flex: none;
    justify-content: center;
    margin-bottom: 16px;
  }

  .page-home .hero-center__logo img {
    height: 48px;
  }

  .page-home .hero-center__text {
    margin-left: 0;
    margin-bottom: 0;
    align-items: center;
    text-align: center;
  }

  .page-home .hero-center__line {
    white-space: normal;
    text-align: center;
  }

  .page-home .showreel-btn {
    left: 50%;
    transform: translateX(-50%);
    bottom: 32px;
  }
}

/* ===== About Page ===== */
.page-about {
  background: #000;
  overflow: hidden;
}

.about {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  z-index: 5;
}

.about__inner {
  width: 50%;
  padding: 0 40px 0 40px;
}

/* ===== Clients Grid ===== */
.clients {
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.clients__grid {
  display: grid;
  grid-template-columns: repeat(4, 100px);
  grid-auto-rows: 100px;
  gap: 10px;
  align-items: center;
  justify-items: center;
}

.clients__item {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: inherit;
}

.clients__item img {
  height: 50px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
  opacity: 0.4;
  transition: opacity 0.3s ease;
}

.clients__item img:hover {
  opacity: 0.65;
}

.clients__item--no-invert img {
  filter: none;
}

.about__content[hidden] {
  display: none;
}

/* ===== About Buttons ===== */
.about__buttons {
  display: flex;
  gap: 10px;
  margin-bottom: 24px;
}

.about-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 22px;
  border: 1px solid #fff;
  border-radius: 8px;
  background: transparent;
  color: #fff;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.02em;
  transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
  text-decoration: none;
}

.about-btn:hover {
  background: #ff69b4;
  border-color: #ff69b4;
  color: #fff;
}

.about__title {
  font-size: 59px;
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1.3;
  margin-bottom: 32px;
  color: #ff69b4;
}

.about__text {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.6;
  letter-spacing: 0.01em;
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.85);
}

.about__text--closing {
  margin-top: 24px;
  margin-bottom: 0;
  color: #fff;
}

.about__label {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.01em;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.85);
}

.about__list {
  list-style: none;
  padding: 0;
  margin: 0 0 0 0;
}

.about__list li {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.7;
  letter-spacing: 0.01em;
  color: rgba(255, 255, 255, 0.55);
  padding-left: 20px;
  position: relative;
}

.about__list li::before {
  content: '—';
  position: absolute;
  left: 0;
}

/* ===== About Page — Mobile ===== */
@media (max-width: 767px) {
  .page-about .header {
    padding: 20px 20px;
  }

  .page-about .about {
    flex-direction: column;
    align-items: stretch;
    padding-top: 64px;
    overflow-y: auto;
    box-sizing: border-box;
  }

  .page-about .about__inner {
    width: 100%;
    padding: 0 20px 32px;
    order: 0;
  }

  .page-about .about__title {
    font-size: 32px;
    margin-bottom: 24px;
  }

  .page-about .about__list {
    margin-bottom: 8px;
  }

  .page-about .about__list li {
    font-size: 14px;
  }

  .page-about .about__text {
    font-size: 14px;
  }

  .page-about .clients {
    width: 100%;
    padding: 24px 20px 40px;
    order: 1;
    align-items: flex-start;
    justify-content: center;
  }

  .page-about .clients__grid {
    grid-template-columns: repeat(4, 72px);
    grid-auto-rows: 72px;
    gap: 8px;
  }

  .page-about .clients__item img {
    height: 36px;
  }
}

/* ===== Contact Page ===== */
.page-contact {
  background: #000;
  overflow: hidden;
}

.contact {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
  padding: 192px 40px 40px;
  overflow-y: auto;
}

.contact__left {
  width: 40%;
}

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

.contact__row {
  display: flex;
  gap: 24px;
}

.contact__label {
  width: 100px;
  flex-shrink: 0;
  font-size: 14px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.4);
}

.contact__link {
  font-size: 15px;
  font-weight: 400;
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact__link:hover {
  color: #ff69b4;
}

/* Contact Form */
.contact__form {
  max-width: 480px;
}

.contact__form-title {
  font-size: 28px;
  font-weight: 400;
  margin-bottom: 32px;
  color: #ff69b4;
}

.contact__field {
  margin-bottom: 20px;
}

.contact__input,
.contact__textarea {
  width: 100%;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 14px 18px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 300;
  color: #fff;
  outline: none;
  transition: border-color 0.3s ease;
  resize: none;
}

.contact__input::placeholder,
.contact__textarea::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.contact__input:focus,
.contact__textarea:focus {
  border-color: #ff69b4;
}

.contact__field-label {
  font-size: 14px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 12px;
}

.contact__methods {
  display: flex;
  gap: 16px;
}

.contact__method {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s ease;
}

.contact__method:hover {
  color: #fff;
}

.contact__method input[type="radio"] {
  appearance: none;
  width: 16px;
  height: 16px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  cursor: pointer;
  position: relative;
}

.contact__method input[type="radio"]:checked {
  border-color: #ff69b4;
}

.contact__method input[type="radio"]:checked::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 8px;
  height: 8px;
  background: #ff69b4;
  border-radius: 50%;
}

.contact__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 40px;
  border: 1px solid #fff;
  border-radius: 8px;
  background: transparent;
  color: #fff;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
  margin-top: 8px;
}

.contact__submit:hover {
  background: #ff69b4;
  border-color: #ff69b4;
}

.contact__form-trigger {
  font-size: 15px;
  font-weight: 400;
  color: #ff69b4;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: color 0.3s ease;
  font-family: inherit;
}

.contact__form-trigger:hover {
  color: #fff;
}

/* Inline Form (appears under trigger) */
.contact__form-wrap {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.4s ease, margin 0.4s ease;
  margin-top: 0;
}

.contact__form-wrap--open {
  max-height: 500px;
  opacity: 1;
  margin-top: 24px;
}

.contact__form-frame {
  position: absolute;
  width: 0;
  height: 0;
  border: 0;
  opacity: 0;
  pointer-events: none;
  left: -9999px;
}

.contact__form-success {
  display: none;
  margin-top: 16px;
  font-size: 15px;
  font-weight: 400;
  color: #ff69b4;
}

.contact__form-success.is-visible {
  display: block;
}

/* ===== Contact Page — Mobile ===== */
@media (max-width: 767px) {
  .page-contact .header {
    padding: 20px 20px;
  }

  .page-contact .contact {
    padding: 100px 20px 40px;
  }

  .page-contact .contact__left {
    width: 100%;
  }

  .page-contact .contact__form-trigger {
    white-space: nowrap;
  }

  .page-contact .contact__form {
    max-width: none;
    width: 100%;
  }
}

/* ===== Active nav link ===== */
.nav-link--active {
  opacity: 0.5;
}

/* ===== Cases Page ===== */
.page-cases {
  background: #000;
  overflow: hidden;
}

.cases {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  z-index: 5;
  padding-top: 92px;
}

/* ===== Cases Filter Bar ===== */
.cases-filter {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  box-sizing: border-box;
  padding: 0 40px 24px;
  flex-shrink: 0;
}

.cases-filter__group {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-right: 32px;
}

.cases-filter__group:last-child {
  margin-right: 0;
}

.cases-filter__btn {
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.02em;
  opacity: 0.4;
  transition: opacity 0.3s ease, color 0.3s ease;
  cursor: pointer;
}

.cases-filter__btn:hover {
  opacity: 1;
  color: #ff69b4;
}

.cases-filter__btn--active {
  opacity: 1;
}

.cases-filter__showreel {
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.02em;
  opacity: 0.4;
  transition: opacity 0.3s ease, color 0.3s ease;
  text-decoration: none;
  color: #fff;
}

.cases-filter__showreel:hover {
  opacity: 1;
  color: #ff69b4;
}

.cases-filter__client {
  margin-left: auto;
}

.cases-filter__label {
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.02em;
  opacity: 0.4;
  margin-right: 8px;
}

.cases-filter__select {
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: #fff;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 4px;
  padding: 6px 10px;
  cursor: pointer;
  opacity: 0.7;
  min-width: 140px;
}

.cases-filter__select:hover,
.cases-filter__select:focus {
  opacity: 1;
  border-color: rgba(255, 255, 255, 0.5);
  outline: none;
}

.cases-filter__select option {
  background: #1a1a1a;
  color: #fff;
}

/* ===== Cases List ===== */
.cases-list {
  flex: 1;
  overflow-y: auto;
  padding: 0 40px;
  scrollbar-width: none;
}

.cases-list::-webkit-scrollbar {
  display: none;
}

.cases-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  text-decoration: none;
  color: #fff;
  cursor: pointer;
  transition: opacity 0.4s ease;
}

.cases-item__info {
  flex: 1;
}

.cases-item__title {
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 0.02em;
  opacity: 0.5;
  transition: font-size 0.4s ease, opacity 0.4s ease, color 0.3s ease;
}

.cases-item__thumb {
  width: 160px;
  height: 90px;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 4px;
  transition: width 0.4s ease, height 0.4s ease;
}

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

/* Active project — larger */
.cases-item--active {
  padding: 32px 0;
}

.cases-item:hover .cases-item__title {
  color: #ff69b4;
}

.cases-item--active .cases-item__title {
  font-size: 36px;
  font-weight: 400;
  opacity: 1;
}

.cases-item--active .cases-item__thumb {
  width: 340px;
  height: 200px;
}

/* Hidden by filter */
.cases-item--hidden {
  display: none;
}

/* ===== Cases Page — Mobile ===== */
@media (max-width: 767px) {
  .page-cases .header {
    padding: 20px 20px;
  }

  .page-cases .cases {
    padding-top: 64px;
  }

  .page-cases .cases-filter {
    flex-wrap: wrap;
    gap: 16px;
    padding: 0 20px 20px;
  }

  .page-cases .cases-filter__group--desktop-only {
    display: none;
  }

  .page-cases .cases-filter__client {
    display: none;
  }

  .page-cases .cases-filter__group {
    gap: 12px;
  }

  .page-cases .cases-filter__btn,
  .page-cases .cases-filter__showreel {
    font-size: 14px;
    min-height: 44px;
    padding: 8px 4px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    -webkit-tap-highlight-color: rgba(255, 105, 180, 0.2);
    cursor: pointer;
  }

  .page-cases .cases-filter__showreel {
    padding: 8px 12px;
  }

  .page-cases .cases-list {
    padding: 0;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .page-cases .cases-item {
    display: block;
    padding: 0;
    border-bottom: none;
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
  }

  .page-cases .cases-item__thumb {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 0;
  }

  .page-cases .cases-item__thumb::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    pointer-events: none;
  }

  .page-cases .cases-item__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .page-cases .cases-item__info {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 20px;
    z-index: 1;
    pointer-events: none;
  }

  .page-cases .cases-item__title {
    font-size: 18px;
    font-weight: 400;
    opacity: 1;
    color: #fff;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
  }

  .page-cases .cases-item--active .cases-item__title {
    font-size: 18px;
  }

  .page-cases .cases-item--active .cases-item__thumb {
    width: 100%;
    height: 100%;
  }

  .page-cases .cases-item--active {
    padding: 0;
  }

  .page-cases .cases-item--hidden {
    display: none !important;
  }
}

/* ===== Case Detail Page ===== */
.page-case {
  background: #000;
  overflow: hidden;
}

.case {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  z-index: 5;
  padding: 92px 40px 40px;
}

.case__title {
  padding-left: 40%;
  font-size: 64px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 24px;
  flex-shrink: 0;
}

.case__body {
  flex: 1;
  display: flex;
  align-items: flex-start;
  min-height: 0;
}

.case__left {
  width: 40%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-right: 40px;
  flex-shrink: 0;
}

.case__right {
  width: 60%;
  height: 100%;
  flex-shrink: 0;
  display: flex;
  align-items: flex-start;
}

/* Credits */
.case__credits {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.case__credits-row {
  display: flex;
  justify-content: space-between;
  gap: 24px;
}

.case__credits-label {
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0.02em;
  opacity: 0.4;
  white-space: nowrap;
}

.case__credits-value {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.02em;
  text-align: right;
}

/* Description */
.case__description {
  max-width: 360px;
}

.case__description p {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.7;
  letter-spacing: 0.01em;
  opacity: 0.85;
}

/* All Projects link */
.case__back-link {
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0.02em;
  text-decoration: none;
  color: #fff;
  transition: color 0.3s ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  padding-bottom: 4px;
}

.case__back-link:hover {
  color: #ff69b4;
}

.case__back-arrow {
  margin-left: 6px;
}

.case__video {
  width: 100%;
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  height: 0;
  padding-bottom: 56.25%; /* 16:9 */
}

.case__video--vertical {
  padding-bottom: 75%; /* 3:4 */
  width: 100%;
}

.case__video--wide {
  padding-bottom: 75%; /* 4:3 */
}

/* Showreel / video-only case page */
.page-case .case.case--video-only {
  padding: 120px 40px 40px;
  width: 60%;
  max-width: 900px;
  margin: 0 auto;
  box-sizing: border-box;
  left: 50%;
  transform: translateX(-50%);
}

.case--video-only .case__back--top {
  margin-bottom: 24px;
}

.case__video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.case__right--scroll {
  overflow-y: auto;
  scrollbar-width: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.case__right--scroll::-webkit-scrollbar {
  display: none;
}

/* ===== Case Detail Page — Mobile ===== */
@media (max-width: 767px) {
  .page-case .header {
    padding: 20px 20px;
  }

  .page-case .case {
    position: relative;
    padding: 64px 20px 40px;
    overflow-y: auto;
    min-height: 100vh;
    box-sizing: border-box;
  }

  .page-case .case.case--video-only {
    padding: 64px 20px 40px;
    width: 100%;
    max-width: none;
    left: 0;
    transform: none;
  }

  .page-case .case__title {
    padding-left: 0;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 20px;
  }

  .page-case .case__body {
    flex-direction: column;
    align-items: stretch;
    gap: 28px;
    flex: none;
  }

  .page-case .case__right {
    width: 100%;
    height: auto;
    flex-shrink: 0;
    order: 0;
  }

  .page-case .case__left {
    width: 100%;
    order: 1;
    padding-right: 0;
    justify-content: flex-start;
    gap: 24px;
  }

  .page-case .case__video {
    width: 100%;
    border-radius: 0;
  }

  .page-case .case__credits {
    gap: 10px;
  }

  .page-case .case__credits-row {
    flex-wrap: wrap;
    gap: 8px;
  }

  .page-case .case__credits-label,
  .page-case .case__credits-value {
    font-size: 13px;
  }

  .page-case .case__back-link {
    font-size: 16px;
  }

  .page-case .case__right--scroll {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
}
