.sns-link-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 24px;
}

.sns-link {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: #2D2D2E;
}

.sns-link__icon {
    width: 20px;
    height: 20px;
    border-radius: 4px;
    flex-shrink: 0;
    object-fit: cover;
}

.sns-link__label {
    font-size: 13px;
    color: #2D2D2E;
}

.sns-link__arrow {
    font-size: 13px;
    color: #C0C0C0;
    line-height: 1;
}

/* ===== 슈퍼어드민 모임상태 변경 팝업 ===== */
.team-status-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
}

.team-status-popup.is-open {
    display: block;
}

.team-status-popup__dimm {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.team-status-popup__box {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 280px;
    max-width: calc(100% - 40px);
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    box-sizing: border-box;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.team-status-popup__title {
    font-size: 16px;
    font-weight: 700;
    color: #2D2D2E;
    text-align: center;
    margin-bottom: 16px;
}

.team-status-popup__list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}

.team-status-popup__list li {
    margin-bottom: 8px;
    /* 항목 전체를 선택 가능한 카드 형태로 구성 */
    border: 1px solid #E5E5E5;
    border-radius: 8px;
    background: #fff;
    transition: background-color 0.15s ease, border-color 0.15s ease;
}

.team-status-popup__list li:last-child {
    margin-bottom: 0;
}

.team-status-popup__list label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 15px;
    color: #2D2D2E;
    /* 모바일 탭 타깃 확보 + 항목 전체 클릭 영역 */
    min-height: 44px;
    padding: 0 14px;
    box-sizing: border-box;
}

.team-status-popup__list input[type="radio"] {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    /* 선택 시 라디오 원 색상도 강조색과 통일 */
    accent-color: #2D2D2E;
}

/* ===== 선택된 항목 강조 (JS로 is-selected 토글, :has 미사용) ===== */
.team-status-popup__list li.is-selected {
    background: #F2F2F3;
    border-color: #2D2D2E;
}

.team-status-popup__list li.is-selected label {
    color: #2D2D2E;
    font-weight: 700;
}

.team-status-popup__btns {
    display: flex;
    gap: 10px;
}

.team-status-popup__btn {
    flex: 1;
    height: 44px;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
}

.team-status-popup__btn--cancel {
    background: #F0F0F0;
    color: #6C6C6C;
}

.team-status-popup__btn--confirm {
    background: #2D2D2E;
    color: #fff;
}
