/* Genel Grid Yapısı */
.mdb-grid-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 40px 0;
    width: 100%;
}

/* Kart Ana Tasarımı */
.mdb-card {
    background-color: var(--mdb-card-bg, #151922);
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    text-decoration: none !important; /* Tema engellemeleri için */
}

/* Hover Efekti */
.mdb-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.mdb-card:hover .mdb-thumbnail {
    transform: scale(1.05);
}

/* Görsel Alanı */
.mdb-card-image-wrap {
    position: relative;
    width: 100%;
    height: 220px; /* Görsel yüksekliği */
    overflow: hidden;
}

.mdb-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    display: block;
}

.mdb-thumbnail-placeholder {
    width: 100%;
    height: 100%;
    background: #2a3143;
}

/* Kategori Rozeti (Badge) */
.mdb-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 2;
    background: linear-gradient(135deg, #3b82f6 0%, var(--mdb-accent) 100%);
    color: #fff;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* İçerik Alanı */
.mdb-card-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

/* Tarih / Meta */
.mdb-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.mdb-icon {
    width: 16px;
    height: 16px;
    fill: var(--mdb-accent, #FBBF24);
}

.mdb-date {
    color: #fff;
    font-size: 14px;
    opacity: 0.9;
}

/* Başlık */
.mdb-title {
    margin: 0 0 15px 0 !important;
    padding: 0 !important;
}

.mdb-title a {
    color: #ffffff;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.4;
    text-decoration: none;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.3s;
}

.mdb-title a:hover {
    color: var(--mdb-accent, #FBBF24);
}

/* Özet */
.mdb-excerpt {
    color: #9CA3AF;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 25px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex-grow: 1;
}

/* Buton / Link */
.mdb-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--mdb-accent, #FBBF24);
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    margin-top: auto;
    transition: opacity 0.3s;
}

.mdb-read-more:hover {
    opacity: 0.8;
}

.mdb-arrow {
    width: 18px;
    height: 18px;
    fill: currentColor;
    transition: transform 0.3s;
}

.mdb-read-more:hover .mdb-arrow {
    transform: translateX(4px);
}

/* Responsive / Mobil Uyumluluk */
@media (max-width: 992px) {
    .mdb-grid-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .mdb-grid-container {
        grid-template-columns: 1fr;
    }
    .mdb-card-image-wrap {
        height: 250px;
    }
}