.hero-featured {

  border: 1px solid var(--bg-grey);
  border-radius: 1rem;

  h1 {
    font-family: var(--font-alt);
    font-size: 1.5rem;
    line-height: 1.7rem;
    color: var(--alto-black);
    padding: 1rem 7rem 1rem 2rem;
    position: relative;
    z-index: 3;
  }

  h2 {
    position: absolute;
    background: rgba(50,50,50,.25);
    color: var(--alto-white);
    font-size: 1.8rem;
    font-weight: 600;
    font-family: var(--font-alt);
    display: block;
    min-height: 100%;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    bottom: 0;
    right: 0;
    z-index: 1;
    padding: 6.5rem 1.5rem 1.5rem 1.5rem;
    text-align: center;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    border-radius: 1rem 0 0 1rem;
  }

  img {
    max-width: calc(80% - 3rem);
    max-height: calc(80% - 2rem);
    position: absolute;
    bottom: 3rem;
    left: 2rem;
    z-index: 2;
  }

  a.cta {
    position: absolute;
    display: block;
    width: calc(100% - 4rem);
    height: 3.5rem;
    line-height: 3.5rem;
    bottom: 2rem;
    left: 2rem;
    text-align: center;
    padding: 0 4rem;
    z-index: 4;
    background: rgba(0, 0, 0, .35);
    border-radius: 1.75rem;
    font-size: 1rem;
    color: var(--alto-white);
    text-decoration-color: transparent;
    font-weight: 600;
    backdrop-filter: blur(5px);
    transition: all .2s ease-in;
  }

  a.cta:hover {
    text-decoration-color: var(--alto-white);
    background: rgba(174, 51, 36, .35);
  }

  a.cta:before {
    content: "\f054";
    font-family: var(--font-awe);
    font-weight: 600;
    font-size: 1rem;
    display: block;
    background: var(--alto-black);
    color: var(--alto-white);
    width: 3.5rem;
    border-radius: 1.75rem;
    position: absolute;
    top:0;
    left: 0;
    transition: all .2s ease-in;
  }

  a.cta:hover:before {
    background: var(--dark-red);
    width: 5rem;
  }

  a.cta:after {
    content: "\f054";
    font-family: var(--font-awe);
    font-weight: 600;
    font-size: 1rem;
    display: block;
    position: absolute;
    width: 3.5rem;
    top:0;
    right: 0;
  }
}

@media only screen and (min-width: 601px)  {
  .hero-featured {
    h1 {
      font-size: 2.1rem;
      line-height: 2.3rem;
    }
    h2 {
      font-size: 2.5rem;
      line-height: 2.7rem;
    }
  }
}
