/* ── Single Team Profile — hand-rolled to match the v3 widget palette. ── */

.bdc-team-profile { font-family: Inter, system-ui, sans-serif; color: #1a1f1a; }

/* Hero */
.bdc-team-profile__hero {
    background: #1f3f33;
    color: #fff;
    padding: 64px 20px 80px;
}
@media (min-width: 768px) {
    .bdc-team-profile__hero { padding: 96px 32px 120px; }
}
.bdc-team-profile__hero-inner {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}
.bdc-team-profile__eyebrow {
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
    font-weight: 700;
    margin: 0 0 16px;
}
.bdc-team-profile__eyebrow--sage {
    color: #1f3f33;
}
.bdc-team-profile__name {
    margin: 0;
    font-family: Newsreader, serif;
    font-size: 36px;
    font-weight: 600;
    line-height: 1.08;
    letter-spacing: -1px;
    color: #fff;
}
@media (min-width: 768px) {
    .bdc-team-profile__name { font-size: 56px; }
}
.bdc-team-profile__role {
    margin: 12px 0 0;
    font-family: Newsreader, serif;
    font-style: italic;
    font-size: 18px;
    color: rgba(255,255,255,0.88);
}
@media (min-width: 768px) {
    .bdc-team-profile__role { font-size: 22px; }
}
.bdc-team-profile__hero-cta { margin: 32px 0 0; }

/* Phone button */
.bdc-team-profile__phone-btn {
    display: inline-block;
    background: #b86d3c;
    color: #fff !important;
    font-weight: 700;
    font-size: 15px;
    padding: 14px 28px;
    border-radius: 999px;
    text-decoration: none;
    transition: background 180ms ease;
}
.bdc-team-profile__phone-btn:hover { background: #9d5a2f; }
.bdc-team-profile__phone-btn--solid { background: #b86d3c; }

/* Body — photo + bio */
.bdc-team-profile__body {
    padding: 56px 20px;
    background: #fff;
}
@media (min-width: 768px) {
    .bdc-team-profile__body { padding: 96px 32px; }
}
.bdc-team-profile__body-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}
@media (min-width: 900px) {
    .bdc-team-profile__body-inner {
        grid-template-columns: 0.85fr 1.15fr;
        gap: 56px;
        align-items: start;
    }
}
.bdc-team-profile__photo {
    margin: 0;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 4 / 5;
    background: #e2ebe5;
    box-shadow: 0 24px 48px -16px rgba(31, 63, 51, 0.20);
}
.bdc-team-profile__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}
.bdc-team-profile__photo-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1f3f33;
    font-family: Newsreader, serif;
    font-weight: 600;
    font-size: 72px;
}
.bdc-team-profile__bio-heading {
    margin: 0 0 16px;
    font-family: Newsreader, serif;
    font-size: 28px;
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: -0.5px;
    color: #1a1f1a;
}
@media (min-width: 768px) {
    .bdc-team-profile__bio-heading { font-size: 40px; }
}
.bdc-team-profile__bio-text {
    font-size: 16px;
    line-height: 1.7;
    color: #4a524d;
}
@media (min-width: 768px) {
    .bdc-team-profile__bio-text { font-size: 18px; }
}
.bdc-team-profile__bio-text p { margin: 0 0 18px; }
.bdc-team-profile__bio-text p:last-child { margin-bottom: 0; }
.bdc-team-profile__back {
    margin: 32px 0 0;
}
.bdc-team-profile__back a {
    color: #1f3f33;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    border-bottom: 1px solid currentColor;
    padding-bottom: 2px;
}
.bdc-team-profile__back a:hover { color: #b86d3c; }

/* Final CTA */
.bdc-team-profile__cta {
    background: #1f3f33;
    color: #fff;
    text-align: center;
    padding: 64px 20px 80px;
}
@media (min-width: 768px) {
    .bdc-team-profile__cta { padding: 96px 32px 120px; }
}
.bdc-team-profile__cta-inner { max-width: 700px; margin: 0 auto; }
.bdc-team-profile__cta-heading {
    margin: 0 0 16px;
    font-family: Newsreader, serif;
    font-size: 28px;
    font-weight: 600;
    line-height: 1.15;
    color: #fff;
}
@media (min-width: 768px) {
    .bdc-team-profile__cta-heading { font-size: 44px; }
}
.bdc-team-profile__cta-body {
    margin: 0 0 32px;
    font-family: Newsreader, serif;
    font-size: 17px;
    color: rgba(255,255,255,0.88);
    line-height: 1.5;
}
@media (min-width: 768px) {
    .bdc-team-profile__cta-body { font-size: 20px; }
}
