/* Modern Kart Tasarımı */
.content-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    max-width: 400px;
    margin: 0 auto;
}

.content-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.card-image {
    position: relative;
    padding-top: 66.67%; /* 3:2 aspect ratio */
    overflow: hidden;
    background: #f8f9fa;
}

.card-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

/* Görsel olmadığında gösterilecek placeholder */
.card-image:empty {
    background: linear-gradient(45deg, #f1f1f1 25%, #e9ecef 25%, #e9ecef 50%, #f1f1f1 50%, #f1f1f1 75%, #e9ecef 75%, #e9ecef 100%);
    background-size: 20px 20px;
}

.content-card:hover .card-image img {
    transform: scale(1.05);
}

.card-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #2d3436;
    margin-bottom: 1rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 2.8em;
}

.card-text {
    color: #636e72;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 4.8em;
}

.card-footer {
    padding: 1.25rem 1.5rem;
    background: transparent;
    border-top: 1px solid rgba(0,0,0,0.05);
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.card-date {
    font-size: 0.875rem;
    color: #b2bec3;
}

.card-link {
    color: #dc3545;
    font-weight: 500;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s ease;
}

.card-link:hover {
    gap: 0.75rem;
    color: #c82333;
}

/* Badge Stilleri */
.badge {
    padding: 0.4em 0.8em;
    font-size: 0.75rem;
    font-weight: 500;
    border-radius: 30px;
}

.badge-floating {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 1;
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .content-card {
        max-width: 100%;
    }
    
    .card-body {
        padding: 1.25rem;
    }
    
    .card-footer {
        padding: 1rem 1.25rem;
    }
    
    .card-title {
        font-size: 1.1rem;
        min-height: auto;
    }
    
    .card-text {
        font-size: 0.9rem;
        -webkit-line-clamp: 2;
        min-height: auto;
    }
} 