/**
 * Dodo Bilişim Featured Company Logo Styles
 * Logo için özel stiller
 */

/* Featured Company Kartı için Logo Stilleri */
.featured-hosting-card.featured-company .hosting-logo-container {
    margin-bottom: 1.5rem;
    padding-top: 2rem;
}

.featured-hosting-card.featured-company .hosting-logo-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.featured-hosting-card.featured-company .hosting-logo {
    max-width: 180px;
    max-height: 60px;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.1));
    transition: all 0.3s ease;
}

.featured-hosting-card.featured-company:hover .hosting-logo {
    transform: scale(1.05);
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.15));
}

/* Rank-1 Center için özel stil */
.featured-hosting-card.rank-1.center.featured-company .hosting-logo {
    max-width: 200px;
    max-height: 65px;
}

/* Responsive */
@media (max-width: 768px) {
    .featured-hosting-card.featured-company .hosting-logo {
        max-width: 150px;
        max-height: 50px;
    }
    
    .featured-hosting-card.rank-1.center.featured-company .hosting-logo {
        max-width: 160px;
        max-height: 55px;
    }
}

