/* #before-during-after {
  padding-top: 0;
} */

#before-during-after .bda-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

#before-during-after .bda-img-container {
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

#before-during-after .bda-image {
  display: block;
  width: 100%;
  height: auto;
}

#before-during-after .bda-caption {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background-color: rgba(0, 0, 0, 0.6);
  color: #ffffff;
  padding: 10px 20px;
  font-size: 1rem;
  font-weight: 600;
}

@media screen and (max-width: 1024px) {
  #before-during-after .bda-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  #before-during-after .bda-item--full-mobile {
    grid-column: 1 / -1;
  }
}
