.home-spotlight-grid {
  display: grid;
  grid-gap: 1rem;
}

.home-spotlight-grid__hero {
  display: grid;
  grid-gap: 1rem;
}
.home-spotlight-grid__hero:not(.home-spotlight-grid__hero--double) .home-spotlight-grid__card .home-spotlight-grid__copy {
  max-width: 66.66667%;
}

.home-spotlight-grid__hero--double {
  grid-template-columns: repeat(auto-fit, minmax(min(30.625rem, 100%), 1fr));
}

.home-spotlight-grid__main {
  display: grid;
  grid-gap: 1rem;
}
@media (min-width: 992px) {
  .home-spotlight-grid__main {
    grid-template-columns: repeat(auto-fit, minmax(min(20.3125rem, 100%), 1fr));
  }
}

.home-spotlight-grid__card {
  position: relative;
  display: flex;
  flex-direction: column-reverse;
  justify-content: space-between;
  grid-gap: 1rem;
  min-height: 17rem;
  background-color: #ffffff;
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  color: inherit;
  border: 0.0625rem solid;
  border-radius: 0.3rem;
  padding: 0.9375rem;
  text-decoration: none;
  transition: box-shadow 0.35s ease, transform 0.35s ease;
  text-wrap: pretty;
  overflow: hidden;
}
.home-spotlight-grid__card::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 80%;
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.home-spotlight-grid__card:focus, .home-spotlight-grid__card:focus-visible {
  outline: none;
  box-shadow: 0 0 0.5rem #d10074;
}
@media (hover: hover) {
  .home-spotlight-grid__card:hover {
    color: inherit;
    box-shadow: 0 0 0.5rem #d10074;
    text-decoration: none;
    transform: translateY(-0.125rem);
  }
  .home-spotlight-grid__card:hover .home-spotlight-grid__swatch {
    outline: none;
    color: #ffffff;
    background-color: #d10074;
    text-decoration: none;
  }
}

.home-spotlight-grid__card p:last-of-type {
  margin-bottom: 0;
}

.home-spotlight-grid__copy {
  position: relative;
}

.home-spotlight-grid__swatch {
  position: relative;
  align-self: flex-start;
  max-height: 1.875rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: #ffffff;
  background-color: #69003a;
  margin: 0;
  padding: 0.3125rem 0.625rem;
  text-transform: uppercase;
  transition: background-color 0.35s ease;
}
