
.card__post {
    background-color: var(--crf--light-grey);
    border-radius: 8px;
    overflow: hidden;
    /*margin: 0 10px;*/
}
.dko-post-slider--light .card__post {
    background-color: white;
}

.card__post-img {
    aspect-ratio: 280/250;
    max-width: 100%;
}
.card__post-img img {
    width: 100%;
    height: 100%;
}
.card__content {
    padding: 20px 20px 25px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: flex-start;
    text-align: left;
}
.card__tag-container {
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    justify-content: space-between;
    column-gap: 55px;
    row-gap: 10px;
    color: var(--crf--shiny-blue);
    margin-bottom: 15px;
    width: 100%;
}
.card__tag {
    border: 1px solid var(--crf--shiny-blue);  
    border-radius: 4px;
    padding: 4px 15px;
    flex: none;
 }

.card--post__excerpt {
   color: black;
   margin-bottom: 25px;
   min-height: 56px;
}

.card__link {
    color: var(--crf--shiny-blue);
    font-weight: 500;
    text-decoration: none;
    text-transform: capitalize;
}

.card__date {
    line-height: 1em;
}