.prominent {
  margin: var(--section-margin) 0;
}
.prominent__wrapper {
  background: #F7F8F8;
  padding: var(--card-padding);
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.prominent__title {
  max-width: 338px;
  font-size: 36px;
  width: 100%;
}
.prominent__title span {
	font-size: 32px;
	display: block;
}
.prominent__grid {
  display: grid;
  grid-template-columns: repeat(5,minmax(0,1fr));
  justify-content: center;
  align-items: center;
  gap: 12px;
  width: 100%;
}
.prominent__logo {
  height: 80px;
  display: flex;
  padding: 14px;
  justify-content: center;
  align-items: center;
  border-radius: 20px;
}
.prominent__logo img {
  max-width: 100%;
	max-height: 100%;
	width: 100%;
	height: auto;
	object-fit: contain;
}

@media (width < 1080px) {
  .prominent__wrapper {
    flex-direction: column;
  }
  .prominent__title {
    text-align: center;
    max-width: 100%;
  }
}

@media (width < 768px){
	.prominent__grid {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
	}

	.prominent__logo {
		width: calc(50% - 6px);
	}
}

@media (width < 576px) {
  .prominent__logo {
    width: calc(50% - 10px);
  }
  .prominent__title {
    margin: 0 auto;
  }
}

