/* Chillex Pty Ltd - Media placeholders and tiles */

.media-placeholder {
  background: var(--color-bg-alt);
  border: 1px dashed var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  color: var(--color-text-muted);
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
}

.media-placeholder__icon {
  width: 32px;
  height: 32px;
  stroke: var(--color-text-muted);
  fill: none;
  stroke-width: 1.5;
}

.media-placeholder__label {
  font-size: 11px;
  color: var(--color-text-muted);
}

.media-tile {
  aspect-ratio: 4 / 3;
  width: 100%;
}

.media-tile--wide {
  aspect-ratio: 16 / 6;
}

.media-tile--ratio-3-2 {
  aspect-ratio: 3 / 2;
}

.media-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.media-gallery--split {
  grid-template-columns: repeat(2, 1fr);
}

.media-gallery figure,
.media-gallery .media-tile {
  margin: 0;
}

figure.media-tile {
  overflow: hidden;
}

.media-tile img,
.media-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.services-hub__media figure.media-tile {
  height: 100%;
  min-height: 280px;
}

.hero__video-wrap {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero__video-placeholder {
  position: absolute;
  inset: 0;
  z-index: 2;
  background-color: var(--color-primary);
  min-height: 100%;
}

.hero__video-wrap .hero__video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 1;
}

