/* =========================================================================
   Home stories - client photo gallery
   ========================================================================= */

.home-stories {
  overflow: hidden;
  background: #0a1220;
  color: #fff;
}

.stories-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.stories-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  opacity: 0.62;
}
.stories-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 18, 32, 0.88) 0%, rgba(10, 18, 32, 0.62) 42%, rgba(10, 18, 32, 0.9) 100%),
    linear-gradient(90deg, rgba(11, 52, 112, 0.42) 0%, rgba(33, 133, 247, 0.16) 50%, rgba(11, 52, 112, 0.42) 100%);
}

.home-stories .wrap {
  position: relative;
  z-index: 1;
}

.home-stories .section-head {
  margin-bottom: 56px;
}

.story-columns {
  display: grid;
  grid-template-columns: 0.92fr 0.92fr 1fr 0.92fr 0.92fr;
  gap: 18px;
  align-items: center;
}

.story-column {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 0;
}

.story-column-1,
.story-column-5 {
  transform: translateY(38px);
}
.story-column-2,
.story-column-4 {
  transform: translateY(-18px);
}

.story-photo {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 24px 58px rgba(11, 52, 112, 0.26);
}
.story-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms var(--ease-out);
}
.story-column:hover .story-photo img {
  transform: scale(1.05);
}

.story-column-1 .story-photo,
.story-column-5 .story-photo {
  aspect-ratio: 0.72;
}
.story-column-2 .story-photo,
.story-column-4 .story-photo {
  aspect-ratio: 0.86;
}
.story-column-3 .story-photo {
  aspect-ratio: 1.32;
}

.home-stories--images-only .story-columns {
  align-items: center;
}
.home-stories--images-only .story-column {
  gap: 0;
}
.home-stories--images-only .story-column-1,
.home-stories--images-only .story-column-5 {
  transform: translateY(14px);
}
.home-stories--images-only .story-column-2,
.home-stories--images-only .story-column-4 {
  transform: translateY(4px);
}
.home-stories--images-only .story-column-3 {
  transform: translateY(-10px);
}
.home-stories--images-only .story-photo {
  width: 100%;
  aspect-ratio: 0.8;
}

.story-quote {
  padding: 18px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--charcoal);
  box-shadow: 0 16px 34px rgba(11, 52, 112, 0.22);
}
.story-column-3 .story-quote {
  background: rgba(10, 18, 32, 0.82);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(8px);
}
.story-quote p {
  margin: 0;
  color: inherit;
  font-size: 13px;
  line-height: 1.5;
  font-style: italic;
}

@media (max-width: 1100px) {
  .story-columns {
    grid-template-columns: repeat(3, 1fr);
  }
  .story-column-1,
  .story-column-2,
  .story-column-3,
  .story-column-4,
  .story-column-5 {
    transform: none;
  }
  .home-stories--images-only .story-column-1,
  .home-stories--images-only .story-column-2,
  .home-stories--images-only .story-column-3,
  .home-stories--images-only .story-column-4,
  .home-stories--images-only .story-column-5 {
    transform: none;
  }
}

@media (max-width: 720px) {
  .story-columns {
    grid-template-columns: 1fr;
  }
  .story-column-1 .story-photo,
  .story-column-2 .story-photo,
  .story-column-3 .story-photo,
  .story-column-4 .story-photo,
  .story-column-5 .story-photo {
    aspect-ratio: 4 / 3;
  }
  .home-stories--images-only .story-column-1 .story-photo,
  .home-stories--images-only .story-column-2 .story-photo,
  .home-stories--images-only .story-column-3 .story-photo,
  .home-stories--images-only .story-column-4 .story-photo,
  .home-stories--images-only .story-column-5 .story-photo {
    aspect-ratio: 0.8;
  }
}
