/*
 * @kanway-css-index
 * 文件: css/about/about-team-capabilities.css
 * 层级: 关于我们
 * 引用页面: about-team-expert.html
 * 依赖: about-team-shared.css
 * 修改指引: .about-team-cap-* 能力矩阵
 * 索引: css/00-样式文件索引.css
 */
@import url("about-team-shared.css");

/* 部门能力型 — Team capabilities variant */

.about-team-capabilities .about-team-org {
    margin-bottom: 48px;
}

.about-team-org__title {
    text-align: center;
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 24px;
}

.about-team-org__chart {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    max-width: 720px;
    margin: 0 auto;
}

.about-team-org__root {
    background: #1d5198;
    color: #fff;
    padding: 14px 32px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 16px;
    text-align: center;
}

.about-team-org__connector {
    width: 2px;
    height: 24px;
    background: #adb5bd;
}

.about-team-org__branches {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    width: 100%;
}

.about-team-org__branch {
    background: #f8f9fb;
    border: 1px solid #e1e5ea;
    border-radius: 10px;
    padding: 14px 10px;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    color: #1d5198;
}

.about-team-depts {
    margin-bottom: 48px;
}

.about-team-depts__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.about-team-dept-card {
    background: #fff;
    border: 1px solid #e1e5ea;
    border-radius: 12px;
    padding: 24px;
    transition: box-shadow 0.2s ease;
}

.about-team-dept-card:hover {
    box-shadow: 0 10px 28px rgba(29, 81, 152, 0.08);
}

.about-team-dept-card__head {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 14px;
}

.about-team-dept-card__icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: #e8f0fa;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: #1d5198;
}

.about-team-dept-card h3 {
    margin: 0 0 4px;
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
}

.about-team-dept-card__sub {
    margin: 0;
    font-size: 13px;
    color: #1d5198;
    font-weight: 600;
}

.about-team-dept-card p {
    margin: 0 0 12px;
    font-size: 14px;
    line-height: 1.7;
    color: #6c757d;
}

.about-team-dept-card__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.about-team-dept-card__tags span {
    font-size: 12px;
    padding: 4px 10px;
    background: #f0f4fa;
    color: #1d5198;
    border-radius: 20px;
}

.about-team-matrix {
    margin-bottom: 48px;
}

.about-team-matrix__title {
    text-align: center;
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 24px;
    color: #1a1a1a;
}

.about-team-matrix__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.about-team-matrix__item {
    text-align: center;
    padding: 20px 14px;
    border: 1px solid #e8ecf0;
    border-radius: 10px;
    background: #fafbfc;
}

.about-team-matrix__item i {
    font-size: 28px;
    color: #1d5198;
    margin-bottom: 8px;
}

.about-team-matrix__item h4 {
    margin: 0 0 6px;
    font-size: 15px;
    font-weight: 700;
    color: #1a1a1a;
}

.about-team-matrix__item p {
    margin: 0;
    font-size: 13px;
    line-height: 1.6;
    color: #6c757d;
}

.about-team-culture-strip {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 24px;
    margin: 0;
    padding: 28px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    background: #f8f9fb;
    border-radius: 12px;
    border: 1px solid #e1e5ea;
}

.about-team-culture-strip__visual {
    flex: 0 0 120px;
    width: 120px;
    height: 120px;
    border-radius: 12px;
    background: linear-gradient(135deg, #1d5198 0%, #4a8fd4 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 48px;
}

.about-team-culture-strip__body {
    flex: 1;
    min-width: 240px;
}

.about-team-culture-strip__body h3 {
    margin: 0 0 8px;
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
}

.about-team-culture-strip__body p {
    margin: 0 0 12px;
    font-size: 14px;
    line-height: 1.7;
    color: #6c757d;
}

.about-team-culture-strip__body a {
    font-weight: 600;
    color: #1d5198;
    text-decoration: none;
}

.about-team-culture-strip__body a:hover {
    text-decoration: underline;
}

@media (max-width: 991px) {
    .about-team-org__branches {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-team-depts__grid {
        grid-template-columns: 1fr;
    }

    .about-team-matrix__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .about-team-org__branches {
        grid-template-columns: 1fr;
    }

    .about-team-matrix__grid {
        grid-template-columns: 1fr;
    }
}
