

.featuredPartnership {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.featuredPartnership .background {
  /* overflow: hidden; */
  width: 100%;
  height: 100%;
}
.featuredPartnership .background img {
  width: 100%;
  height: auto;
  object-fit: cover; /* This will ensure the image fills the space and crops if needed */
}

.featuredPartnership .foreground {
  position: absolute;
  color: white;
  left: 0;
  display: flex;
  justify-content: left;
  flex-direction: column;
  /* max-width: 50%; */
  /* min-width: 30%; */

  /* REFER TO ME FOR SIZING*/
  width: clamp(30rem, 40vw, 40rem);
}
