.content-gallery {
  background: var(--color-bg);
}

.content-gallery__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--grid-gap);
  align-items: start;
}

.content-gallery__text {
  display: flex;
  flex-direction: column;
  height: 100%;
  gap: var(--space-5);
}

.content-gallery__wysiwyg {
  font-family: var(--font-family-body);
  font-size: var(--font-size-body);
  line-height: var(--line-height-body);
  color: var(--color-text);
}

.content-gallery__wysiwyg p {
  margin: 0 0 var(--space-4);
}

.content-gallery__wysiwyg p:last-child {
  margin-bottom: 0;
}

.content-gallery__buttons {
  display: flex;
  gap: var(--space-3);
  flex-wrap: wrap;
  margin-top: auto;
}

.content-gallery__gallery {
  position: relative;
  min-width: 0;
}

.content-gallery__gallery .yacht-gallery {
  width: 100%;
  min-width: 0;
  height: 320px;
  background: var(--color-bg-alt);
  overflow: hidden;
}

.content-gallery__gallery .yacht-gallery__image {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.content-gallery__gallery .yacht-gallery__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.content-gallery__gallery .yacht-gallery__nav {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 var(--space-1);
  pointer-events: none;
  z-index: 10;
}

.content-gallery__gallery .yacht-gallery__nav .swiper-nav-btn {
  width: 30px;
  height: 30px;
  pointer-events: auto;
}

.content-gallery__gallery .yacht-gallery__nav .swiper-nav-btn svg {
  width: 12px;
  height: 11px;
}

.content-gallery__gallery .yacht-gallery-thumbs {
  margin-top: var(--space-1);
  margin-inline: 35px;
}

.content-gallery__gallery .yacht-gallery-thumbs__image {
  width: 60px;
  height: 60px;
  overflow: hidden;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.content-gallery__gallery .yacht-gallery-thumbs__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.content-gallery__gallery .yacht-gallery-thumbs .swiper-slide {
  opacity: 0.6;
  transition: opacity 0.2s ease;
}

.content-gallery__gallery .yacht-gallery-thumbs .swiper-slide-thumb-active {
  opacity: 1;
}

@media (max-width: 768px) {
  .content-gallery__content {
    gap: var(--space-6);
  }

  .content-gallery__gallery .yacht-gallery {
    height: 280px;
  }

  .content-gallery__gallery .yacht-gallery-thumbs {
    margin-inline: var(--space-1);
  }

  .content-gallery__wysiwyg {
    font-size: var(--font-size-small);
  }
}

@media (max-width: 520px) {
  .content-gallery__gallery .yacht-gallery-thumbs {
    margin-inline: 65px;
  }
}

@media (max-width: 500px) {
  .content-gallery__content {
    grid-template-columns: 1fr;
  }

  .content-gallery__gallery {
    order: 1;
  }

  .content-gallery__text {
    order: 2;
  }

  .content-gallery__gallery .yacht-gallery {
    aspect-ratio: 16/10;
    height: auto;
  }

  .content-gallery__gallery .yacht-gallery__image {
    height: 100%;
  }

  .content-gallery__gallery .yacht-gallery-thumbs__image {
    width: var(--space-9);
    height: var(--space-9);
  }
}

@media (max-width: 400px) {
  .content-gallery__gallery .yacht-gallery-thumbs {
    margin-inline: var(--space-6);
  }
}
