#near-jelly-fish {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
}

#near-jelly-fish .ice-surface {
    min-width: 70svw;
    max-width: 70svw;
}

#near-jelly-fish>div.img-container {
    opacity: 0;
}

#near-jelly-fish>div.img-container.fade-in {
    opacity: 1;
    animation: fadeIn 3s forwards ease-out;
}

#near-jelly-fish .img-container {
    display: flex;
    width: 20svw;
    flex-direction: column;
    gap: 2rem;
}

#near-jelly-fish .img-container img {
    width: auto;
    height: auto;
    max-width: 15svw;
    object-fit: contain;
}

#near-jelly-fish .img-container img:nth-child(odd) {
    align-self: flex-start;
}

#near-jelly-fish .img-container img:nth-child(even) {
    align-self: flex-end;
}

.mobile-jelly-fish {
    display: none;
}

@media (max-width: 768px) {
    #near-jelly-fish {
        flex-direction: column;
    }

    #near-jelly-fish .ice-surface {
        min-width: 100%;
        max-width: 100%;
    }

    #near-jelly-fish>div.img-container {
        display: none;
    }

    .mobile-jelly-fish {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .mobile-jelly-fish .img-container {
        display: flex;
        flex-direction: row;
        gap: 2rem;
        justify-content: center;
        align-items: center;
        opacity: 0;
    }

    .mobile-jelly-fish .img-container.fade-in {
        opacity: 1;
        animation: fadeIn 3s forwards ease-out;
    }

    .mobile-jelly-fish .img-container img {
        width: auto;
        height: auto;
        max-width: 30svw;
        object-fit: contain;
    }
}

div.members div.contents ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

div.members div.contents ul li h4 {
    margin: 0 0 0.5rem 0;
    padding: 0;
    font-weight: 600;
}

div.members div.contents ul li p {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    margin-bottom: 0.5rem;
}

div.members div.contents ul li p.no-flex {
    display: block;
}

div.members div.contents ul.member-role-long li p {
    flex-direction: column;
}

div.members div.contents ul li p span {
    display: block;
    margin: 0.1rem 0;
}

div.members div.contents ul li p span:nth-child(1) {
    width: fit-content;
    min-width: 6em;
}

div.members div.contents ul li p span:nth-child(2) {
    width: fit-content;
    min-width: calc(100% - 8em);
    max-width: 100%;
}

div.members div.contents ul li ul li p a:has(img) {
    display: flex;
    gap: 0.25rem;
}

div.members div.contents ul li ul li p img.activity-icon {
    height: 1.2rem;
    margin-right: 0rem;
}