.manus-post-grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 20px 0;
    align-items: stretch; /* Kartların aynı satırda eşit yükseklikte olmasını sağlar */
}

.manus-post-card {
    background: #fff;
    overflow: hidden;
    box-shadow: 0 15px 45px rgba(0,0,0,0.07);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%; /* Kartın tüm yüksekliği kaplamasını sağlar */
}

.manus-post-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.manus-post-image {
    height: 220px;
    background-size: cover;
    background-position: center;
    flex-shrink: 0; /* Resmin daralmasını engeller */
}

.manus-post-content {
    padding: 35px;
    flex-grow: 1; /* İçeriğin kalan boşluğu doldurmasını sağlar */
    display: flex;
    flex-direction: column;
}

.manus-post-title {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.manus-post-excerpt {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
    flex-grow: 1; /* Metin kısa olsa bile boşluğu doldurarak butonu aşağı iter */
}

.manus-read-more {
    display: inline-block;
    padding: 14px 35px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    align-self: flex-start;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    margin-top: auto; /* Butonu her zaman en alta sabitler */
}

.manus-read-more:hover {
    opacity: 0.9;
    transform: scale(1.02);
}

/* Responsive */
@media (max-width: 768px) {
    .manus-post-grid-container {
        grid-template-columns: 1fr;
    }
}
