/* css/aai-collaborations-style.css */

.page-header {
    padding: 30px 0;
    margin-bottom: 40px;
    text-align: center;
    border-bottom: 1px solid #dee2e6;
}
.page-header h1 {
    font-size: 2.5rem;
    font-weight: 600;
    color: #343a40;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.page-header .page-subtitle {
    font-size: 1.1rem;
    color: #6c757d;
    max-width: 650px;
    margin: 10px auto 0 auto;
}

.section-title {
    font-size: 1.8rem;
    font-weight: 500;
    color: #1565c0; /* Blue to match theme */
    margin-bottom: 30px;
    text-align: center;
    position: relative;
    padding-bottom: 10px;
}
.section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #1565c0, #42a5f5);
    border-radius: 2px;
}

.collaborator-section {
    margin-bottom: 50px;
}

/* For individual collaborators with logos */
.collaborator-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid #e9ecef;
}
.collaborator-card:last-of-type {
    border-bottom: none;
}
.collaborator-logo {
    flex-shrink: 0;
    width: 150px;
    text-align: center;
}
.collaborator-logo img {
    max-width: 100%;
    max-height: 80px;
    height: auto;
    object-fit: contain;
}
.collaborator-info h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #0d47a1; /* Darker blue for name */
    margin-bottom: 5px;
}
.collaborator-info p {
    margin-bottom: 3px;
    font-size: 0.95rem;
    color: #495057;
    line-height: 1.5;
}

/* For industry partners (logos only) */
.industry-logos-grid {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 40px;
}
.industry-logo {
    width: 180px;
    text-align: center;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: filter 0.3s ease, opacity 0.3s ease;
}
.industry-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
}
.industry-logo img {
    max-width: 100%;
    max-height: 70px;
    height: auto;
    object-fit: contain;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .collaborator-card {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    .collaborator-logo {
        width: 120px; /* Smaller logo on mobile */
        margin-bottom: 10px;
    }
}