/* Referanslar Bölümü Stilleri */
.references-card {
    transition: all 0.3s ease;
    border: none;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.references-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.references-card .card-img-container {
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 150px;
    background-color: #f8f9fa;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.references-card .card-img-container img {
    max-height: 100px;
    max-width: 100%;
    object-fit: contain;
    transition: all 0.3s ease;
}

.references-card:hover .card-img-container img {
    transform: scale(1.05);
}

.references-card .card-body {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.references-card .card-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.references-card .card-text {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    flex-grow: 1;
}

/* Responsive Ayarlar */
@media (max-width: 767px) {
    .references-card .card-img-container {
        height: 120px;
    }
    
    .references-card .card-img-container img {
        max-height: 80px;
    }
    
    .references-card .card-title {
        font-size: 1.1rem;
    }
    
    .references-card .card-text {
        font-size: 0.9rem;
    }
}