main {
    background: linear-gradient(#379CD0, #00293F);
    background-repeat: no-repeat;
    background-size: cover;
}

.assos-list .container {
    margin: 0 auto;
    padding: 0 20px;
}

.assohead {
    display: flex;
    justify-content: center;
    flex-direction: column;
    margin-bottom: 15px;
    text-align: center;
    padding: 30px 0 20px;
    color: white;
}

.assohead h2 {
    font-weight: 800;
    font-size: 1.8rem;
    margin-bottom: 6px;
}

.assohead p {
    opacity: 0.85;
    font-size: 1rem;
}

.result-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 20px;
    height: 40px;
}

#campus-select {
    padding: 8px 12px;
    border-radius: 8px;
    border: none;
    font-size: 1rem;
    cursor: pointer;
    font-family: inherit;
}

.result-span {
    display: flex;
    align-items: flex-end;
    height: 100%;
    color: white;
    font-weight: bold;
}

.no-asso {
    display: flex;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    font-weight: 450;
}

.assos-container {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.asso-item {
    height: 280px;
    display: flex;
    background: #004080;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.asso-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.asso-item a {
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    text-decoration: none;
}

.asso-logo {
    align-self: center;
    height: 200px;
    width: 200px;
    object-fit: contain;
    border-radius: 50%;
    margin: 20px;
    flex-shrink: 0;
    background: rgba(255,255,255,0.1);
}

.asso-logo--placeholder {
    align-self: center;
    height: 200px;
    width: 200px;
    border-radius: 50%;
    margin: 20px;
    flex-shrink: 0;
    background: rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    font-weight: 900;
    color: rgba(255,255,255,0.8);
}

.asso-content {
    flex: 1;
    padding: 15px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #fff;
    gap: 6px;
}

.asso-campus-badge {
    display: inline-block;
    padding: 2px 10px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    background: rgba(255,255,255,0.2);
    width: fit-content;
}

.asso-content h3 {
    margin: 0;
    font-size: 1.6rem;
    font-weight: bold;
}

.asso-tagline {
    margin: 0;
    font-size: 0.95rem;
    font-style: italic;
    opacity: 0.85;
}

.asso-content p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.4;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}
