/* assets/css/pages/universities.css */

/* Page Header Styles moved to global.css */
/* Section Typography moved to global.css */


.styled-list li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    color: var(--text-muted);
}

.styled-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--brand-primary);
    font-weight: 700;
}

.logo-wall {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    align-items: center;
    margin-top: 3rem;
}

@media (max-width: 768px) {
    .logo-wall {
        gap: 1rem;
    }

    .logo-img {
        height: 60px;
    }
}


.logo-img {
    height: 100px;
    width: auto;
    object-fit: contain;
    /* Removed filter entirely for full color */
    opacity: 1;
    transition: var(--transition);
    padding: 0.5rem;
    background: transparent;
    border-radius: var(--radius-sm);
    /* border: 1px solid var(--border); Removed border to look less 'boxed' */
}

.logo-img:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--brand-primary);
}