/* eGUMUS V5 - RECENT POSTS & CARDS */

.recent-posts-v4 {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid var(--border);
}

/* Grid Yapısı - Yatay 3'lü Grid */
.recent-grid-v4 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

/* Kart Tasarımı (Dikey Kart) */
.recent-card-v4 {
    display: flex;
    flex-direction: column; /* Görsel üstte, yazı altta */
    gap: 16px;
    border-radius: var(--radius-md);
    background: #fff;
    border: 1px solid var(--border);
    overflow: hidden;
    transition: all 0.3s ease;
    text-decoration: none;
    height: 100%;
}

.recent-card-v4:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent);
}

/* Kart Görseli */
.recent-img-v4 {
    width: 100%;
    height: 200px; /* Sabit yükseklik */
    overflow: hidden;
    position: relative;
    border-bottom: 1px solid var(--border);
}

.recent-img-v4 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.recent-card-v4:hover .recent-img-v4 img {
    transform: scale(1.1);
}

/* Derin Analiz Etiketi */
.deep-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--accent);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: var(--radius-pill);
    text-transform: uppercase;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    display: block; /* Artık görünür */
    z-index: 2;
}

/* Kart Bilgileri */
.recent-info-v4 {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 0 20px 20px 20px;
}

.recent-date-v4 {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 600;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    gap: 6px;
}

.recent-date-v4::before {
    content: '';
    display: block;
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
}

.recent-title-v4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-main);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.2s ease;
}

.recent-card-v4:hover .recent-title-v4 {
    color: var(--accent);
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .recent-grid-v4 {
        grid-template-columns: 1fr;
    }
}
