.ga-carousel {
  width: 100%;
}

.ga-car-frame {
  position: relative;
  width: 100%;
  margin-top: 12px;
  aspect-ratio: 800/630;
  background: #0e0d14;
  border-radius: 2px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, .12);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ga-car-main {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.ga-car-main.photo {
  object-fit: cover;
}

.ga-car-arrow {
  position: absolute;
  top: 50%;
  z-index: 1;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(20, 20, 20, .45);
  color: #fff;
  transform: translateY(-50%);
  transition: background .18s;
  cursor: pointer;
}

.ga-car-arrow:hover {
  background: rgba(20, 20, 20, .7);
}

.ga-car-arrow:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

.ga-car-dot:focus-visible {
  outline: 2px solid #333;
  outline-offset: 2px;
}

.ga-car-arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 9px;
  height: 9px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
}

.ga-car-arrow.prev {
  left: 10px;
}

.ga-car-arrow.prev::before {
  transform: translate(-35%, -50%) rotate(135deg);
}

.ga-car-arrow.next {
  right: 10px;
}

.ga-car-arrow.next::before {
  transform: translate(-65%, -50%) rotate(-45deg);
}

.ga-car-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 8px;
}

.ga-car-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: var(--ga-dot, #c5c2bd);
  cursor: pointer;
}

.ga-car-dot.active {
  background: var(--ga-dot-active, #333);
}

.ga-car-items {
  display: flex;
  gap: 8px;
  margin-top: 8px;
}

.ga-car-item {
  flex: 1;
  min-width: 0;
  aspect-ratio: 16/9;
  cursor: pointer;
  border-radius: 2px;
  overflow: hidden;
  border: 2px solid transparent;
  transition: opacity .18s, border-color .18s;
  opacity: .65;
}

.ga-car-item.active {
  border-color: #333;
  opacity: 1;
}

.ga-car-item:hover {
  opacity: 1;
}

.ga-car-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ga-carousel[data-thumbs="off"] .ga-car-items {
  display: none;
}
