.post-card {
    position: relative;
    background-color: rgba(2,56,180,0.08);
    display: flex;
    flex-direction: column;
    height: 100%;
}
.post-card .image {
    aspect-ratio: 5/4;
    overflow: hidden;
}
.post-card .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.post-card .content {
    padding: 20px;
}
.post-card .content .date {
    color: var(--secondary-color);
    font-weight: 700;
    margin-bottom: 15px;
    display: block;
}
.post-card .content .title {
    color: var(--secondary-color);
    font-size: 1.125rem;
    font-weight: 700;
}
.post-card .content .excerpt {
    display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;  
  overflow: hidden;
}
.post-card .content .read-more {
    font-weight: 700;
    font-size: 0.875rem;
    margin-top: 50px;
    display: block;
}