.card.card-post {
    border: none;
    border-radius: 0;
}
.card-post .card-body {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.card-post .pic-wrapper img {
    width: 100%;
    max-height: 300px;
    object-fit: cover;
}
.card-post .card-cats {
    width: 100%;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 1px solid #eee;
    color: #888;
}
.card-post .card-cats a {
    font-size: 12px;
    font-weight: 600;
    color: #888;
    text-transform: uppercase;
}
.card-post .card-cats a:hover{
    color: var(--mgh-color-1);
}
.card-post .card-title {
    font-weight: 700;
}
.card-post .card-date {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 80px;
    background: #fff;
    font-size: 14px;
    font-weight: 700;
    color: var(--mgh-color-1);
    text-transform: uppercase;
}
.card-post .card-date .day {
    font-size: 18px;
    line-height: 1;
}
.card-post .card-date .month {
    opacity: .6;
    font-size: 12px;
    line-height: 1;
}
.card-post .btn-post {
    position: relative;
    display: inline-flex;
    align-items: flex-start;
    margin: 20px 0 0 0;
    padding: 0 30px 5px 0;
    background: none;
    border: none;
    border-bottom: 2px solid var(--mgh-color-1);
    border-radius: 0;
    font-size: 14px;
    font-weight: 400;
    color: var(--mgh-color-1);
    text-transform: uppercase;
}
.card-post .btn-post:after {
    content: '';
    position: absolute;
    top: 4px;
    right: 0;
    width: 12px;
    height: 12px;
    overflow: hidden;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="11.996" height="12" viewBox="0 0 11.996 12"><path id="arrow-up-right" d="M41.2,96H42.1v10.733H40.307V99.052L32,107.366l-.634.634L30.1,106.733l.634-.634,8.311-8.311H31.363V96H41.2Z" transform="translate(-30.1 -96)" fill="%23003153"/></svg>');
    background-repeat: no-repeat;
    background-size: contain;
}
.card-post .btn-post:hover:after {
    transform: rotate(45deg);
}