.featured-region {
  width: 100%;
}

.psc-featured-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background-color: #252525;
  background-image: url('/sites/default/files/homepage/featured/slide-bg-sm.jpg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  color: #fff;
}

.psc-featured-section::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(110deg, rgba(18, 18, 18, .78), rgba(18, 18, 18, .58));
  content: '';
}

.psc-featured-section .field--name-body {
  font-size: inherit;
}

.psc-featured-section__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.psc-featured-section__card {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 320px;
  border-left: 1px solid rgba(255, 255, 255, .2);
}

.psc-featured-section__card:first-child {
  border-left: 0;
}

.psc-featured-section__link {
  display: flex;
  width: 100%;
  min-height: 100%;
  flex-direction: column;
  justify-content: space-between;
  gap: 30px;
  padding: 42px 28px 34px;
  color: #fff;
  text-align: center;
  text-decoration: none;
  transition: background-color .25s ease, transform .25s ease;
}

.psc-featured-section__description {
  margin: 0;
  color: rgba(255, 255, 255, .9);
  font-size: 14px;
  line-height: 1.6;
}

.psc-featured-section__description ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.psc-featured-section__main {
  margin-top: auto;
}

.psc-featured-section__icon {
  display: grid;
  width: 52px;
  height: 52px;
  margin: 0 auto 15px;
  place-items: center;
  color: #fff;
  transition: transform .25s ease;
}

.psc-featured-section__icon svg {
  width: 42px;
  height: 42px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.psc-featured-section__title {
  margin: 0;
  color: #fff;
  font-family: Oswald, Arial, sans-serif;
  font-size: 25px;
  font-weight: 400;
  line-height: 1.2;
  text-transform: uppercase;
}

.psc-featured-section__link:hover {
  background-color: rgba(162, 63, 55, .95);
  color: #fff;
}

.psc-featured-section__link:hover .psc-featured-section__icon {
  transform: translateY(-4px);
}

.psc-featured-section__link:focus-visible {
  position: relative;
  z-index: 1;
  outline: 3px solid #fff;
  outline-offset: -5px;
  background-color: rgba(162, 63, 55, .95);
}

@media (max-width: 991px) {
  .psc-featured-section {
    background-attachment: scroll;
  }

  .psc-featured-section__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .psc-featured-section__card {
    min-height: 285px;
    border-bottom: 1px solid rgba(255, 255, 255, .2);
  }

  .psc-featured-section__card:nth-child(odd) {
    border-left: 0;
  }

  .psc-featured-section__card:nth-last-child(-n + 2) {
    border-bottom: 0;
  }
}

@media (max-width: 600px) {
  .psc-featured-section__grid {
    grid-template-columns: 1fr;
  }

  .psc-featured-section__card {
    min-height: 0;
    border-left: 0;
  }

  .psc-featured-section__card:nth-last-child(2) {
    border-bottom: 1px solid rgba(255, 255, 255, .2);
  }

  .psc-featured-section__link {
    min-height: 245px;
    gap: 24px;
    padding: 34px 22px 30px;
  }

  .psc-featured-section__description {
    font-size: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .psc-featured-section {
    background-attachment: scroll;
  }

  .psc-featured-section__link,
  .psc-featured-section__icon {
    transition: none;
  }
}
