/* ===== Person Card Carousel ===== */

.pcc-wrapper {
    background-color: #111111;
    padding: 60px 40px;
    box-sizing: border-box;
    width: 100%;
    overflow: hidden;
    position: relative;
}

/* 标题 */
.pcc-section-title {
    text-align: center;
    color: #ffffff;
    margin: 0 0 40px 0;
    font-size: 2em;
    font-weight: 700;
    line-height: 1.3;
}

/* 容器 */
.pcc-carousel-container {
    position: relative;
    overflow: hidden;
}

/* 轨道：滑动核心 */
.pcc-carousel-track {
    display: flex;
    gap: 20px;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
    align-items: flex-start;
}

/* 单张卡片 */
.pcc-card {
    flex: 0 0 auto;
    box-sizing: border-box;
    cursor: default;
}

/* 图片区域 */
.pcc-card-image {
    width: 100%;
    aspect-ratio: 4/5;
    overflow: hidden;
    border-radius: 16px;
    background-color: #333;
    margin-bottom: 14px;
}

.pcc-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    border-radius: 16px;
    display: block;
    transition: transform 0.3s ease;
}

.pcc-card-image:hover img {
    transform: scale(1.03);
}

.pcc-card-image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #333 0%, #555 100%);
}

/* 文字内容 */
.pcc-card-content {
    padding: 0 4px;
}

.pcc-card-name {
    color: #ffffff;
    font-weight: 700;
    font-size: 1em;
    margin: 0 0 6px 0;
    line-height: 1.3;
}

.pcc-card-role {
    color: #cccccc;
    font-size: 0.85em;
    margin: 0 0 10px 0;
    line-height: 1.5;
}

.pcc-card-quote {
    color: #aaaaaa;
    font-size: 0.85em;
    font-style: italic;
    line-height: 1.5;
    margin: 0;
}

/* ===== 导航按钮 ===== */
.pcc-nav-wrap {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.pcc-nav-btn {
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease, transform 0.2s ease;
    flex-shrink: 0;
}

.pcc-nav-btn:hover {
    background-color: rgba(255, 255, 255, 0.30);
    transform: scale(1.05);
}

.pcc-nav-btn:active {
    transform: scale(0.95);
}

.pcc-nav-btn svg {
    pointer-events: none;
}

.pcc-nav-btn.pcc-disabled {
    opacity: 0.35;
    cursor: not-allowed;
}
.pcc-nav-btn.pcc-disabled:hover {
    transform: none;
    background-color: rgba(255, 255, 255, 0.15);
}

/* ===== 导航位置变体 ===== */

/* 右下角（默认，如图） */
.pcc-nav-bottom-right .pcc-nav-wrap {
    justify-content: flex-end;
}

/* 底部居中 */
.pcc-nav-bottom-center .pcc-nav-wrap {
    justify-content: center;
}

/* 两侧居中（覆盖式） */
.pcc-nav-middle-sides {
    position: relative;
}
.pcc-nav-middle-sides .pcc-nav-wrap {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    justify-content: space-between;
    pointer-events: none;
    margin-top: 0;
    padding: 0 10px;
    z-index: 10;
}
.pcc-nav-middle-sides .pcc-nav-btn {
    pointer-events: all;
}

/* ===== 响应式 ===== */

/* 平板端 ≤ 1024px */
@media (max-width: 1024px) {
    .pcc-wrapper {
        padding: 50px 30px;
    }
    .pcc-section-title {
        font-size: 1.7em;
    }
    .pcc-card-name {
        font-size: 0.95em;
    }
}

/* 手机端 ≤ 767px */
@media (max-width: 767px) {
    .pcc-wrapper {
        padding: 40px 20px;
    }
    .pcc-section-title {
        font-size: 1.5em;
        margin-bottom: 28px;
    }
    .pcc-carousel-track {
        gap: 14px;
    }
    .pcc-card-image {
        border-radius: 12px;
        margin-bottom: 10px;
    }
    .pcc-card-image img {
        border-radius: 12px;
    }
    .pcc-card-name {
        font-size: 1em;
    }
    .pcc-card-role,
    .pcc-card-quote {
        font-size: 0.82em;
    }
    .pcc-nav-btn {
        width: 38px;
        height: 38px;
    }
}

/* 超小屏 ≤ 480px */
@media (max-width: 480px) {
    .pcc-wrapper {
        padding: 32px 16px;
    }
    .pcc-section-title {
        font-size: 1.3em;
    }
}
