.block .featured-media {
  padding-top: 2rem;
  padding-bottom: 2rem;
  padding-left: 1rem;
  padding-right: 1rem;
}

.block .featured-media .fm-content {
  display: flex;
  flex-flow: column nowrap;
  gap: 1rem;
}

.block .featured-media .fm-content .fm-item {
  display: flex;
  flex-flow: row nowrap;
  gap: 1rem;
  align-items: flex-start;
  text-decoration: none;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.block .featured-media .fm-content .fm-items .fm-item:not(:last-of-type),
.block .featured-media .fm-content .fm-main-item .fm-item {
  border-bottom: 2px solid var(--steam-gray);
}

.block .featured-media .fm-content .fm-item img {
  width: 33.33333337%;
  height: auto;
  border-radius: 4px;
  flex-shrink: 0; /* Prevents the image from shrinking */
  box-shadow: 0 1px 2px 0 var(--box-shadow-color);
}

.block .featured-media .fm-content .fm-item .fm-item-content .fm-item-title {
  color: black;
  font-family: var(--acumin-pro);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.4;
  text-decoration: none;
}

.block .featured-media .fm-content .fm-item:hover .fm-item-content .fm-item-title {
  text-decoration: underline;
}

.block .featured-media .fm-content .fm-item .fm-item-content .fm-item-label,
.block .featured-media .fm-content .fm-item .fm-item-content .fm-item-date {
  color: var(--cool-gray);
  font-family: var(--united-sans-cond);
  font-size: 0.875rem;
  font-weight: 900;
  letter-spacing: 2px;
  line-height: 1.5;
  text-transform: uppercase;
  padding-left: 0.1rem;
}

.block.--bg-black .featured-media .fm-content .fm-item .fm-item-content .fm-item-label,
.block.--bg-black .featured-media .fm-content .fm-item .fm-item-content .fm-item-date {
  color: var(--light-gray);
}

.block.--bg-light-gray .featured-media .fm-content .fm-item .fm-item-content .fm-item-label,
.block.--bg-light-gray .featured-media .fm-content .fm-item .fm-item-content .fm-item-date {
  color: black;
}

.block .featured-media .fm-content .fm-main-item .fm-item {
  flex-flow: column nowrap;
}

.block .featured-media .fm-content .fm-main-item .fm-item img {
  width: 100%;
}

.block .featured-media .fm-read-more {
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
  padding-top: 2rem;
  padding-bottom: 1rem;
}

.block.--bg-black .featured-media .fm-heading,
.block.--bg-black .featured-media .fm-content .fm-item .fm-item-content .fm-item-title {
  color: white;
}

@media screen and (min-width: 576px) {
  .block .featured-media .fm-content .fm-main-item .fm-item .fm-item-content .fm-item-title {
    font-size: 1.25rem;
  }
}

@media screen and (min-width: 768px) {
  .block .featured-media .fm-content .fm-items .fm-item .fm-item-content .fm-item-title {
    font-size: 1.25rem;
  }
}

@media screen and (min-width: 992px) {
  .block .featured-media .fm-content {
    flex-flow: row nowrap;
    gap: 2rem;
  }

  .block .featured-media .fm-content .fm-main-item,
  .block .featured-media .fm-content .fm-items {
    width: 50%;
  }

  .block .featured-media .fm-content .fm-main-item .fm-item {
    border: none;
  }

  .block .featured-media .fm-content .fm-main-item .fm-item .fm-item-content .fm-item-title {
    font-size: 1.75rem;
  }

  .block .featured-media .fm-read-more {
    justify-content: flex-start;
  }
}
