.trending-articles-container {
    display: flex;
    flex-direction: row;
    gap: 20px;
    margin: 0 auto;
	max-width: none !important;
    width: 100% !important;
}

.trending-article-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 0px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 5px 5px 0 rgba(19, 64, 79, .1);
}

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

.trending-card-image {
    width: 100%;
    height: 170px !important;
    object-fit: cover;
	transition: transform 0.5s ease-in-out;
}

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

.card-content {
    padding: 15px;
}

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

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

.trending-card-title {
    font-size: 16px;
    color: #333;
    text-decoration: none;
    font-weight: bold;
    margin-bottom: 5px;
    display: block;
	line-height: 1.2;
}

.trending-card-title:hover {
    color: green;
}

.card-meta {
    font-size: 12px;
    color: #666;
}

@media (max-width: 600px) {
	.trending-card-image {
		height: 170px !important;
	}
	.trending-card-title {
		font-size: 20px;
	}
	.trending-articles-container {
		flex-direction: column;
}