.members {
    width: 70%;
    margin: 50px auto 0 auto;
}

#affiliation-form {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    row-gap: 15px;
    column-gap: 3%;
    border: 2px solid #353434;
    border-radius: 12px;
    padding: 20px 15px 15px 15px;
    font-family: "Montserrat", "Noto Sans", "Sen", sans-serif;
}

#affiliation-form label {
    border: 1px solid #ff76b2;
    border-radius: 5px;
    padding: 10px 17px;
    text-align: center;
    align-items: center;
    font-weight: 500;
    appearance: none;
    -webkit-appearance: none;
    vertical-align: middle;
}
@supports (-webkit-touch-callout: none) {
  #affiliation-form label {
    padding-inline-start: 0 !important;
  }
}
#affiliation-form label:hover {
    background-color: #fdeaf2;
}

.radio-check {
    background-color: #ffd1e5;
}
.member-line {
    border-left: .1px solid #222;
}
.member-list {
    display: flex;
    margin-top: 50px;
    justify-content: flex-start;
    flex-wrap: wrap;
    column-gap: 5%;
    row-gap: 40px;
}

.member-item {
    font-weight: 600;
    display: flex;
    gap: 10%;
    padding: 20px;
    font-family: "Montserrat", "Noto Sans", "Sen", sans-serif;
}

.member-icon {
    width: 50%;
}

.member-icon img {
    width: 100%;
}

.member-content {
    width: 50%;
}

.member-content .member-name {
    font-size: 24px;
}

.member-link {
    width: 30%;
    max-width: 100%;
    box-shadow: 0 0 8px #00000026;
    border-radius: 12px;
    overflow: hidden;
}

.member-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10%;
}

.top-members h2 {
    text-align: center;
    font-size: 32px;
    margin: 40px 0 40px 0;
}

@media screen and (max-width: 1350px) {
    .members {
        width: 90%;
    }
}
@media screen and (max-width: 1070px) {
    .member-link {
        width: 47.5%;
    }
}
@media screen and (max-width: 1720px) {
    .member-content .member-name {
        font-size: 20px;
    }
}
@media screen and (max-width: 718px) {
    .member-ruby {
        display: none;
    }

    .member-content .member-name {
        font-size: 16px;
    }

    .member-item {
        padding: 10px;
    }

    .member-affiliation {
        font-size: 14px;
    }
}
@media screen and (max-width: 546px) {
    .member-icon {
        width: 40%;
    }

    .member-affiliation {
        font-size: 12px;
    }
}