.btcpa-featured-resources {
  display: grid;
  row-gap: 4.5rem;
  column-gap: 2.5rem; }
  @media (min-width: 600px) {
    .btcpa-featured-resources {
      grid-template-columns: 1fr 1fr; } }
  @media (min-width: 55em) {
    .btcpa-featured-resources {
      grid-template-columns: 1fr 1fr 1fr; } }
  .btcpa-featured-resources .post {
    text-decoration: none;
    overflow: hidden;
    background-color: var(--wp--preset--color--white);
    border-radius: 4px 60px 4px 4px;
    transition: all 300ms ease;
    box-shadow: none;
    position: relative;
    color: var(--wp--preset--color--dark-blue); }
    .btcpa-featured-resources .post .image {
      display: block;
      aspect-ratio: 404 / 226;
      position: relative; }
      .btcpa-featured-resources .post .image:after {
        position: absolute;
        transition: opacity 300ms ease;
        background-color: rgba(0, 58, 112, 0.8);
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        content: '';
        display: block;
        z-index: 1;
        opacity: 0; }
      .btcpa-featured-resources .post .image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block; }
    .btcpa-featured-resources .post .content {
      padding: 2rem 2rem 6.75rem; }
    .btcpa-featured-resources .post .title {
      font-size: 1.25rem;
      line-height: 1.2;
      font-family: var(--wp--preset--font-family--heading);
      font-weight: 500;
      color: var(--wp--preset--color--dark-blue);
      -webkit-line-clamp: 4;
      -webkit-box-orient: vertical;
      overflow: hidden;
      text-overflow: ellipsis;
      display: -webkit-box;
      margin: 0;
      background: transparent !important; }
    .btcpa-featured-resources .post .date {
      font-family: var(--wp--preset--font-family--heading);
      font-weight: 500;
      font-size: 1.25rem;
      background: transparent !important; }
    .btcpa-featured-resources .post .meta {
      position: absolute;
      bottom: 2rem;
      left: 2rem;
      right: 5rem;
      font-family: var(--wp--preset--font-family--heading);
      font-weight: 500;
      color: var(--wp--preset--color--blue);
      font-size: 1.125rem;
      line-height: 23px;
      height: 46px;
      display: flex;
      justify-content: center;
      flex-direction: column;
      margin: 0;
      overflow: hidden;
      text-overflow: ellipsis;
      background: transparent !important; }
    .btcpa-featured-resources .post .arrow {
      position: absolute;
      bottom: 2rem;
      right: 2rem;
      display: block;
      width: 46px;
      height: 46px;
      border-radius: 50%;
      border-width: 1.25px;
      border-color: var(--wp--preset--color--dark-blue);
      border-style: solid;
      background-color: transparent;
      background-image: url("../img/arrow-right-blue.svg");
      background-repeat: no-repeat;
      background-position: center;
      transition: all 300ms ease;
      transform-origin: center; }
    .btcpa-featured-resources .post:hover, .btcpa-featured-resources .post:focus {
      box-shadow: 0px 130px 52px rgba(0, 0, 0, 0.01), 0px 73px 44px rgba(0, 0, 0, 0.05), 0px 32px 32px rgba(0, 0, 0, 0.09), 0px 8px 18px rgba(0, 0, 0, 0.1); }
      .btcpa-featured-resources .post:hover .image:after, .btcpa-featured-resources .post:focus .image:after {
        opacity: 1; }
      .btcpa-featured-resources .post:hover .title, .btcpa-featured-resources .post:focus .title {
        text-decoration: underline; }
      .btcpa-featured-resources .post:hover .arrow, .btcpa-featured-resources .post:focus .arrow {
        background-color: var(--wp--preset--color--gold);
        border-color: var(--wp--preset--color--gold);
        transform: rotate(-45deg); }
