/* WHEEL_ELITE_MAX_PROFIT_PRODUCT_GALLERY_V1 */
.we-profit-gallery {
  min-width: 0;
}

.we-profit-gallery__stage {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 24px;
  background: #0b0d11;
  box-shadow: 0 24px 70px rgba(0,0,0,.3);
  aspect-ratio: 1;
}

.we-profit-gallery__stage img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.we-profit-gallery__thumbs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 12px;
}

.we-profit-gallery__thumb {
  padding: 0;
  overflow: hidden;
  border: 2px solid transparent;
  border-radius: 14px;
  background: #11151b;
  cursor: pointer;
  aspect-ratio: 1;
}

.we-profit-gallery__thumb[aria-current="true"] {
  border-color: #ff4e49;
  box-shadow: 0 0 0 2px rgba(255,78,73,.2);
}

.we-profit-gallery__thumb:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 3px;
}

.we-profit-gallery__thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.we-profit-gallery__caption,
.we-profit-media-notice,
.we-profit-authorization-note {
  color: #b7bcc5;
  font-size: .86rem;
  line-height: 1.55;
}

.we-profit-gallery__caption {
  margin: 10px 2px 0;
}

.we-profit-authorization-note {
  margin: 14px 0 0;
  padding: 14px 16px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 14px;
  background: rgba(255,255,255,.04);
}

.we-profit-confirmation-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.we-profit-confirmation-grid article {
  padding: 18px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 16px;
  background: rgba(255,255,255,.035);
}

.we-profit-confirmation-grid h3 {
  margin: 0 0 8px;
  font-size: 1rem;
}

.we-profit-confirmation-grid p {
  margin: 0;
  color: #b7bcc5;
}

@media (max-width: 760px) {
  .we-profit-confirmation-grid {
    grid-template-columns: 1fr;
  }
}
