.company-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 24px 16px 48px;
}

.company-card {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.96);
    border-radius: 20px;
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.22);
    padding: 28px 24px;
    min-height: 180px;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.company-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.28);
}

.disabled-card {
    opacity: 0.5;
    cursor: not-allowed;
    filter: grayscale(100%);
}

.disabled-card:hover {
    transform: none;
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.22);
}

.company-card .school-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.company-card .school-logo img {
    display: block;
    width: 100%;
    max-width: 220px;
    height: auto;
    object-fit: contain;
}

.school-selection .company-grid {
    position: relative;
    z-index: 2;
}

@media (max-width: 768px) {
    .company-grid {
        grid-template-columns: 1fr;
        max-width: 360px;
    }
}
