.mda-post-news-box {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid #e5e5e5;
    border-radius: 0;
    background: #fff;
}

.mda-post-news-box__media {
    display: block;
    width: 100%;
    overflow: hidden;
    background: #f5f5f5;
}

.mda-post-news-box__image {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    transition: transform .25s ease;
}

.mda-post-news-box__media:hover .mda-post-news-box__image {
    transform: scale(1.04);
}

.mda-post-news-box__content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 20px;
}

.mda-post-news-box__date {
    margin: 0;
    font-size: 14px;
    color: #777;
}

.mda-post-news-box__title {
    margin: 0;
    font-size: 24px;
    line-height: 1.25;
}

.mda-post-news-box__title a {
    color: inherit;
    text-decoration: none;
}

.mda-post-news-box__title a:hover {
    text-decoration: underline;
}

.mda-post-news-box__excerpt {
    margin: 0;
    color: #444;
    line-height: 1.6;
}

.mda-post-news-box__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 4px;
    padding: 10px 18px;
    border-radius: 0;
    background: #111;
    color: #fff;
    font-weight: 400;
    text-decoration: none;
}

.mda-post-news-box__button:hover {
    opacity: .85;
    color: #fff;
}

@media (max-width: 700px) {
    .mda-post-news-box__content {
        padding: 16px;
    }

    .mda-post-news-box__title {
        font-size: 21px;
    }
}
