/* ============================================
   Page 06 — Leadership Team
   ============================================ */

.page-team {
    background: var(--paper);
    padding: 18mm 22mm;
    display: flex;
    flex-direction: column;
}

.page-team .pt-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--line);
}

.page-team .pt-header .pt-title-block .pt-eyebrow {
    font-size: 10px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--accent-dark);
    font-weight: 600;
    margin-bottom: 8px;
}

.page-team .pt-header .pt-title {
    font-family: var(--serif);
    font-size: 32px;
    font-weight: 700;
    color: var(--brand);
    line-height: 1.1;
}

.page-team .pt-header .pt-count {
    font-family: var(--serif);
    font-size: 14px;
    color: var(--ink-soft);
}

.page-team .pt-header .pt-count strong {
    font-size: 28px;
    color: var(--brand);
    font-weight: 700;
}

/* Featured leader — CEO */
.page-team .pt-featured {
    display: grid;
    grid-template-columns: 60mm 1fr;
    gap: 24px;
    background: linear-gradient(135deg, #0b3a5b 0%, #072538 100%);
    border-radius: 14px;
    padding: 24px;
    color: #fff;
    margin-bottom: 18px;
    position: relative;
    overflow: hidden;
}

.page-team .pt-featured::after {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(199,162,75,0.08) 0%, transparent 70%);
}

.page-team .pt-featured .ptf-photo {
    width: 100%;
    aspect-ratio: 3/4;
    border-radius: 10px;
    overflow: hidden;
    background: rgba(255,255,255,0.05);
}

.page-team .pt-featured .ptf-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-team .pt-featured .ptf-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.page-team .pt-featured .ptf-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(199,162,75,0.15);
    border: 1px solid rgba(199,162,75,0.3);
    color: var(--accent-light);
    font-size: 10px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 20px;
    margin-bottom: 14px;
    width: fit-content;
}

.page-team .pt-featured .ptf-name {
    font-family: var(--serif);
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 4px;
}

.page-team .pt-featured .ptf-role {
    font-size: 14px;
    color: var(--accent-light);
    font-weight: 600;
    margin-bottom: 16px;
}

.page-team .pt-featured .ptf-bio {
    font-size: 12.5px;
    line-height: 1.7;
    color: rgba(255,255,255,0.8);
    max-width: 140mm;
}

/* Team grid */
.page-team .pt-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    flex: 1;
}

.page-team .pt-card {
    background: var(--paper-cool);
    border: 1px solid var(--line);
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.page-team .pt-card .ptc-photo {
    aspect-ratio: 1/1;
    overflow: hidden;
    background: linear-gradient(135deg, var(--brand), var(--brand-2));
}

.page-team .pt-card .ptc-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-team .pt-card .ptc-info {
    padding: 14px 16px;
}

.page-team .pt-card .ptc-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 2px;
}

.page-team .pt-card .ptc-role {
    font-size: 10px;
    color: var(--accent-dark);
    font-weight: 600;
    line-height: 1.4;
}
