.ecrire-moments {
  position: relative;
  overflow: hidden;
  padding: clamp(4.5rem, 8vw, 8rem) clamp(1.25rem, 5vw, 5rem);
  background:
    linear-gradient(rgba(95, 56, 66, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(95, 56, 66, .035) 1px, transparent 1px),
    radial-gradient(circle at 12% 18%, rgba(176, 78, 93, .18), transparent 27rem),
    #fff8f2;
  background-size: 2rem 2rem, 2rem 2rem, auto, auto;
}

.ecrire-moments-heading {
  position: relative;
  z-index: 1;
  max-width: 48rem;
  margin: 0 auto clamp(3rem, 6vw, 5.5rem);
  text-align: center;
}

.ecrire-moments-heading h2 {
  margin: .35rem 0 1rem;
}

.ecrire-moments-heading > p:last-child {
  max-width: 42rem;
  margin: 0 auto;
  color: #675157;
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  line-height: 1.7;
}

.ecrire-gallery {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: start;
  max-width: 76rem;
  margin: 0 auto;
}

.ecrire-photo {
  margin: 0;
}

.ecrire-photo .photo-shell {
  overflow: hidden;
  padding: .65rem;
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 22px 50px rgba(70, 42, 47, .16);
}

.ecrire-photo img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: .35rem;
}

.ecrire-photo figcaption {
  margin-top: 1rem;
  color: #644a51;
  font-size: .94rem;
  font-weight: 600;
  line-height: 1.5;
}

.ecrire-photo-main {
  grid-column: 1 / -1;
  width: 78%;
  justify-self: center;
}

.ecrire-photo-main .photo-shell {
  border-radius: 1.5rem;
  transform: rotate(-1.2deg);
}

.ecrire-photo-floor {
  margin-top: 2.5rem;
}

.ecrire-photo-floor .photo-shell {
  border-radius: 4rem 1.25rem 1.25rem 1.25rem;
  transform: rotate(1.5deg);
}

.ecrire-photo-duo .photo-shell {
  border-radius: 1.25rem 4rem 1.25rem 1.25rem;
  transform: rotate(-1deg);
}

.ecrire-photo-circle {
  grid-column: 1 / -1;
  width: 82%;
  justify-self: center;
}

.ecrire-photo-circle .photo-shell {
  border-radius: 1.25rem 1.25rem 4rem 4rem;
}

@media (max-width: 760px) {
  .ecrire-gallery {
    grid-template-columns: 1fr;
  }

  .ecrire-photo-main,
  .ecrire-photo-circle {
    grid-column: auto;
    width: 100%;
  }

  .ecrire-photo-floor {
    width: 94%;
    margin-top: 0;
  }

  .ecrire-photo-duo {
    width: 94%;
    justify-self: end;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .ecrire-photo .photo-shell {
    transition: transform .5s ease, box-shadow .5s ease;
  }

  .ecrire-photo:hover .photo-shell {
    box-shadow: 0 30px 64px rgba(70, 42, 47, .23);
  }

  .ecrire-photo-main:hover .photo-shell {
    transform: translateY(-.4rem) rotate(-.5deg);
  }

  .ecrire-photo-floor:hover .photo-shell {
    transform: translateY(-.4rem) rotate(.7deg);
  }

  .ecrire-photo-duo:hover .photo-shell {
    transform: translateY(-.4rem) rotate(-.4deg);
  }
}
