.fessup-uni-list {
    display: flex;
    flex-direction: column;
    gap: 1em;
    max-width: 700px;
    margin: 0 auto;
}

.fessup-uni-list__item {
    display: flex;
    align-items: center;
    gap: 1em;
    padding: 1em 1.2em;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.06);
}

.fessup-uni-list__logo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.fessup-uni-list__logo--placeholder {
    background: #e0e0e0;
}

.fessup-uni-list__name {
    font-weight: 700;
    font-size: 1.1em;
    color: #333;
    flex: 1;
}

.fessup-uni-list__links {
    display: flex;
    gap: 0.6em;
    flex-shrink: 0;
}

.fessup-uni-list__btn {
    display: inline-block;
    padding: 0.5em 1em;
    background: #333;
    color: #fff;
    border-radius: 6px;
    font-size: 0.85em;
    text-decoration: none;
    white-space: nowrap;
}

.fessup-uni-list__btn:hover {
    background: #555;
    color: #fff;
    text-decoration: none;
}

@media (max-width: 500px) {
    .fessup-uni-list__item {
        flex-wrap: wrap;
    }

    .fessup-uni-list__name {
        flex: 1;
    }

    .fessup-uni-list__links {
        width: 100%;
    }

    .fessup-uni-list__btn {
        flex: 1;
        text-align: center;
    }
}
