@charset "utf-8";
.nw-people-wrapper .nw-fs-7 { font-size: 0.875rem !important; }
.nw-people-wrapper .nw-fs-8 { font-size: 0.775rem !important; }

/* 2줄 이상 말줄임 처리 */
.nw-people-wrapper .nw-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* 플러스 버튼 스타일 */
.nw-people-wrapper .nw-plus-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid #dee2e6;
    background-color: #f8f9fa;
    color: #6c757d;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    text-decoration: none;
    transition: all 0.2s;
}
.nw-people-wrapper .nw-plus-btn:hover {
    background-color: #6c757d;
    color: #ffffff;
    border-color: #6c757d;
}

/* 탭 라벨 (그레이 톤) */
.nw-people-wrapper .nw-tab-label {
    border: 1px solid #dee2e6;
    background-color: #ffffff;
    color: #495057;
    font-weight: 600;
    padding: 6px 14px;
    font-size: 0.875rem;
    border-radius: 6px;
    display: inline-block;
}
.nw-people-wrapper .nw-tab-label.active {
    background-color: #6c757d;
    color: #ffffff;
    border-color: #6c757d;
}

/* 날짜 카드 스타일 */
.nw-people-wrapper .nw-notice-card {
    border: 1px solid #e9ecef;
    border-radius: 12px;
    background: #ffffff;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.nw-people-wrapper .nw-notice-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.06);
}

/* 날짜 강조 숫자 */
.nw-people-wrapper .nw-day-text {
    font-size: 2rem;
    font-weight: 800;
    color: #495057;
    line-height: 1;
}

/* Swiper 컨테이너 관련 */
.nw-people-wrapper .nw-swiper-container {
    border-radius: 16px;
    overflow: hidden;
}

/* 우측 대표 인터뷰 배너 카드 */
.nw-people-wrapper .nw-main-hero-card {
    border-radius: 16px;
    min-height: 270px;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.nw-people-wrapper .role-button {
    cursor: pointer;
    transition: color 0.2s;
}
.nw-people-wrapper .role-button:hover {
    color: #212529 !important;
}