﻿.latest-feed-section {
    margin-bottom: 30px;
    border-radius: 10px;
}
.latest-feed-container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
}

.sidebar .latest-feed-container {
	grid-template-columns: 1fr;
    gap: 10px;
	padding: 0 10px;
}

.latest-feed-card {
    width: 100%;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
    text-decoration: none !important;
    display: flex;
    flex-direction: column;
}
.latest-feed-card:hover {
    transform: translateY(-5px);
}
.latest-feed-thumb {
    height: 100%;
    min-height: 120px;
    max-height: 120px;
    background-repeat: no-repeat;
    background-position: center;
    width: 100%;
}
.latest-feed-details {
    padding: 15px;
    display: flex;
    height: 100%;
    flex-direction: column;
}
.latest-feed-title {
    font-size: 16px;
    font-weight: bold;
    line-height: 24px;
    color: #333;
    text-decoration: none;
    margin-bottom: 5px;
	margin-top: 0;
}

.latest-feed-excerpt {
    font-size: 14px;
    color: #666;
    margin: 0;
}

.latest-feed-meta {
    font-size: 12px;
    color: #666;
    margin-top: auto;
}

@media screen and (max-width: 920px) {
    .latest-feed-container {
        grid-template-columns: 1fr 1fr;
    }
}
@media screen and (max-width: 580px) {
    .latest-feed-container {
        grid-template-columns: 1fr;
    }
}