.akg-post-grid {
    display: grid;
    grid-gap: 30px;
    margin: 20px 0;
}

/* Grid Columns Logic */
.akg-cols-2 { grid-template-columns: repeat(2, 1fr); }
.akg-cols-3 { grid-template-columns: repeat(3, 1fr); }
.akg-cols-4 { grid-template-columns: repeat(4, 1fr); }

.akg-post-card {
    transition: transform 0.3s ease;
}

.akg-post-card:hover {
    transform: translateY(-5px);
}

.akg-post-thumb {
    width: 100%;
    height: 300px; /* Consistent height */
    overflow: hidden;
    border-radius: 15px; /* Rounded corners like screenshot */
    margin-bottom: 15px;
}

.akg-post-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s ease;
}

.akg-post-card:hover .akg-post-thumb img {
    transform: scale(1.1);
}

.akg-post-date {
    display: block;
    font-size: 13px;
    color: #888;
    margin-bottom: 8px;
    font-weight: 500;
}

.akg-post-title {
    font-size: 18px;
    line-height: 1.3;
    margin: 0 0 10px 0;
    font-weight: 700;
}

.akg-post-title a {
    color: #222;
    text-decoration: none;
    transition: color 0.3s;
}

.akg-post-title a:hover {
    color: #e12b2b; /* Theme Red color */
}

.akg-post-excerpt {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

/* Responsive */
@media (max-width: 991px) {
    .akg-post-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 767px) {
    .akg-post-grid { grid-template-columns: 1fr; }
}