.featured-view {
  & .view-content {
    grid-template-rows: 1fr;
    grid-column-gap: var(--grid-gap);

    @media (min-width: 62.5rem) {
      grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    & .views-row {
      padding: 1rem;
      background-color: #f6f8f8;
      transition: box-shadow .5s ease;

      &:hover {
        box-shadow: 0 0 10px 2px #cbcbcb;
      }
    }
  }
}

.featured-view-title {
  padding-block-end: 1rem;
  border-block-end: 2px solid;
  color: #8c8c8c;
  line-height: 1.25;

  @media (min-width: 43.75rem) {
    font-size: 2.25rem;
    line-height: 1.25;
  }

  @media (min-width: 75rem) {
    font-size: 3rem;
  }

  @media (min-width: 90rem) {
    font-size: 3.5rem;
  }

  @media (min-width: 96rem) {
    font-size: 4rem;
  }
}


.featured-view .more-link {
  justify-self: center;

  & a {
    display: block;
    max-width: 260px;
    padding: 1rem;
    background-color: beige;
    text-decoration: none;
  }
}
