.blog-head h3 {
    margin-bottom: 0;
}

.blog-author {
    text-transform: uppercase;
    font-size: 10px;
    color: var(--color-button);
    margin-bottom: 20px;
}

.post {
    position: relative;
}

.post-image {
    position: relative;
    background-color: #eee;
}

.post-image:after {
    content: '';
    display: block;
    padding-bottom: 100%;
}

.post-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: calc(100% - 30px);
    padding: 15px 30px 15px 0;
}

.post-image img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.post-title {
    color: var(--color-black);
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.post-date {
    color: var(--color-button);
    font-size: 10px;
}

.post-link {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.post-excerpt {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.media-post {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 7px 30px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    height: calc(100% - 30px);
    text-align: center;
    margin-bottom: 30px;
}

.media-post-content {
    display: flex;
    flex-direction: column;
    padding: 20px;
    flex-grow: 1;
}

.media-post h5.post-title {
    margin: 0 0 8px 0;
}

.media-post-content p {
    margin: 0 0 20px 0;
    flex-grow: 1;
    font-size: 14px;
}

.media-post-content a {
    color: var(--color-button);
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.media-post-content a i {
    font-weight: normal;
    font-size: 10px;
}

.media-post-content a span + i,
.media-post-content a i + span {
    margin-left: 6px;
}