.highlighted-row {
  border-top: 1px solid #e9e9e9;
  padding: 32px 0;
  margin-top: 48px;
}

.highlighted-row .cta-text {
  margin-top: 32px;
}

.cta-image-row {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.cta-image-row .cta-text {
  max-width: none;
  flex: 1 0 0;
}

.cta-image-row .image-wrapper {
  width: 256px;
  border-radius: 4px;
  border: 1px solid #e9e9e9;
  padding: 4px;
}

@media (max-width: 767px) {
  .cta-image-row {
    flex-direction: column;
    align-items: center;
  }
}

/*** ***/

.image-banner img {
  width: 100%;
}

.service-highlight {
  padding: 8px 32px 32px;
  border-radius: 25px;
  background-color: #f4f4f4;
  margin-top: 32px;
}

.service-highlight.cut-meats img {
  border: 4px solid #000;
}

.readable-text,
.service-highlight p.large-text,
.highlight-col p {
  font-size: 19px;
  line-height: 21px;
}

.highlight-col p {
  margin-bottom: 16px;
}

.image-wrapper img {
  width: 100%;
}

/*** BRANDS ***/

.brand-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.brand-logos .brand-logo {
  display: block;
  text-decoration: none;
  width: 128px;
  height: 128px;
  padding: 16px;
  background-color: #fff;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.2s ease-in-out;
}

.brand-logos .brand-logo.and-more {
  border: 1px solid #fff;
  display: flex;
  align-items: center;
  color: #333;
  font-size: 19px;
  line-height: 19px;
  font-weight: 300;
  text-transform: uppercase;
  transition: all 0.2s ease-in-out;

  &:hover {
    background-color: #f4f4f4;
    border: 1px solid #e9e9e9;
  }
}

.brand-logos .brand-logo.clickable:hover {
  cursor: pointer;
  filter: grayscale(100%);
}

.brand-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/*** MODALS ***/

.image-modal.hidden {
  display: none;
}

.image-modal {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
}

.image-modal .modal-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
}

.image-modal .modal-image-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 500px;
  z-index: 1001;
}

.image-modal .modal-image-wrapper img {
  max-width: 100%;
  max-height: 100%;
}

@media (max-width: 767px) {
  .image-modal .modal-image-wrapper {
    max-width: 90%;
  }
}
