.latest-article-card {
    max-width: 600px;
    margin: 0 auto;
    background: #fff;
    border-radius: 10px;
    box-shadow: 5px 5px 0 rgba(19, 64, 79, .1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.card-image-link {
    display: block;
    position: relative;
}

.latest-card-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease-in-out;
}

.card-image-link:hover .latest-card-image {
    transform: scale(1.05);
}

.latest-card-content{
    padding: 18px !important;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.latest-card-category {
    display: inline-block;
    background: #c70905;
    color: #ffffff;
    padding: 5px 10px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 10px;
    align-self: flex-start;
}

.latest-card-category:hover {
	color: #ffffff;
    background: #29a329;
}

.latest-card-title {
	font-family: 'Roboto Flex';
    font-size: 30px;
    color: #000000;
    margin: 0 0 10px;
    font-weight: bold;
    line-height: 1.2;
}

.latest-card-title a {
    color: inherit;
    text-decoration: none;
}

.latest-card-title a:hover {
    text-decoration: none;
}

.card-subtitle {
    font-size: 16px;
    color: #757575;
    margin: 0 0 0px;
    line-height: 1.5;
    flex-grow: 1;
}

.card-author {
    font-size: 14px;
    color: #9e9e9e;
    margin-top: 10px;
    align-self: flex-start;
}