/* Custom styles for EA Visual Artists */

/* Partner Section Styles */
.brand-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
    background: #f8f9fa;
    border: 2px dashed #dee2e6;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.brand-placeholder h4 {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    color: #6c757d;
    text-align: center;
    line-height: 1.2;
}

.brand-box:hover .brand-placeholder {
    background: #e9ecef;
    border-color: #adb5bd;
}

.brand-box:hover .brand-placeholder h4 {
    color: #495057;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .brand-placeholder {
        height: 60px;
    }
    
    .brand-placeholder h4 {
        font-size: 12px;
    }
} 