/* Logo Display Fixes for Superio Theme */
.employer-logo {
    width: 140px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border-radius: 6px;
    padding: 5px;
    margin-right: 1.5rem;
    flex-shrink: 0;
    box-shadow: 0 2px 4px rgba(0,0,0,);
}

.employer-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* For job listings */
.layout-job.job-list .employer-logo {
    width: 120px;
    height: 90px;
    margin-right: 1rem;
}

/* For job detail page */
.job-detail-header .employer-logo {
    width: 160px;
    height: 120px;
    margin-right: 2rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .employer-logo {
        width: 100%;
        height: 120px;
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .job-detail-header .employer-logo {
        width: 140px;
        height: 100px;
        margin: 0 auto 1.5rem;
    }
    
    .flex-middle-sm {
        flex-direction: column;
        text-align: center;
    }
}