.featured-post-card {
    position: relative;
    align-self: stretch;
    display: flex;
    flex-flow: column;
    justify-content: center;
}

@media (max-width: 767px) {
  .featured-post-card:not(:last-child)::after {
    bottom: calc(var(--spacer--xxxl) * -0.5);
    width: 100%;
    height: 1px;
  }
}

.featured-post-card .card__image {
    position: relative;
    display: flex;
}

@media (min-width: 768px) {
  .featured-post-card .card__image {
    grid-column: 1 / span 5;
    align-items: center;
    justify-content: center;
  }
}

.featured-post-card .card__image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    aspect-ratio: 1;
}

.featured-post-card .card__content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

@media (min-width: 768px) {
  .featured-post-card .card__content {
      grid-column: span 12;
  }
}

@media (max-width: 767px) {
  .featured-post-card .card__content {
    padding: 0;
  }
}

@media (min-width: 768px) {
  .featured-post-card:has(.card__image) .card__content {
      grid-column: 6 / span 7;
  }
}

.featured-post-card .card__excerpt :last-child {
    margin-bottom: 0;
}
