.custom-card {
  background-color: #fff;
  border-radius: 16px;
  overflow: hidden;
  display: grid;
}
.custom-card .image img {
  width: 100%;
  height: 100%;
  aspect-ratio: 384/256;
  object-fit: cover;
}
.custom-card .content {
  padding: 32px;
}
.custom-card .read-more {
  margin-top: 24px;
}
.custom-card + .custom-card {
  margin-top: 24px;
}
@media (min-width: 768px) {
  .custom-card {
    grid-template-columns: repeat(10, 1fr);
  }
  .custom-card .image {
    position: relative;
    grid-column: span 4;
  }
  .custom-card .image img {
    aspect-ratio: unset;
    position: absolute;
    top: 0;
    left: 0;
  }
  .custom-card .content {
    grid-column: span 6;
  }
}
.custom-card.is-preview {
  margin-bottom: 24px;
}