/* EXPERIENCES */

.experiences {
  position: relative;
  padding: 40px 0;
}

/* background */
.experiences__image {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.experiences__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* overlay */
.experiences::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.9);
  z-index: 1;
}

/* content */
.experiences__container {
  position: relative;
  z-index: 2;
}

.experiences__header {
  margin-bottom: 32px;
}

.experiences__content {
  display: grid;
  gap: 24px;
}

/* desktop */
@media (min-width: 768px) {
  .experiences {
    padding: 80px 0;
  }

  .experiences__content {
    grid-template-columns: repeat(3, 1fr);
  }
}