/* Page-local styling (Face-to-Face blues) */
.page-wrap {
    max-width: 1100px;
    margin: 32px auto;
    padding: 0 16px;
}

.breadcrumb {
    font-size: .95rem;
    color: #666;
    margin-bottom: 18px;
}

.breadcrumb a {
    color: #0D249E;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.title-row {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 24px;
    align-items: start;
}

@media (max-width: 900px) {
    .title-row {
        grid-template-columns: 1fr;
    }
}

.bio-card {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 6px 20px rgba(0,0,0,.06);
    padding: 24px;
}

.page-title {
    margin: 0 0 6px;
    font-size: clamp(1.8rem, 2.5vw, 2.4rem);
    color: #111;
    line-height: 1.2;
}

.subtitle {
    color: #333;
    font-weight: 600;
    margin-bottom: 6px;
}

.lifespan {
    color: #555;
    margin-bottom: 14px;
}

/* Sticky sidebar */
.info-box {
    position: sticky;
    top: 16px;
    background: #f8f9ff;
    border-radius: 14px;
    padding: 18px;
    box-shadow: inset 0 0 0 1px #e8ecff;
}

@media (max-width: 900px) {
    .info-box {
        position: static;
        top: auto;
    }
}

.info-photo {
    width: 100%;
    border-radius: 12px;
    object-fit: cover;
    aspect-ratio: 4/3;
    background: #eee;
}

.info-list {
    margin: 14px 0 0;
    padding: 0;
    list-style: none;
    font-size: .98rem;
    color: #222;
}

.info-list li {
    padding: 6px 0;
    border-bottom: 1px solid #e8e8e8;
}

.info-list li:last-child {
    border-bottom: 0;
}

.label {
    color: #666;
    font-weight: 600;
    margin-right: 6px;
}

.content {
    margin-top: 10px;
}

.content h2 {
    font-size: 1.35rem;
    margin: 26px 0 10px;
    color: #0D249E;
}

.content p {
    line-height: 1.7;
    color: #222;
    margin: 10px 0;
}

.content ul {
    margin: 8px 0 16px 1.1rem;
}

.content li {
    margin: 6px 0;
}

/* Article figures: uncropped, centered */
.content figure {
    margin: 18px auto;
    max-width: 720px;
}

.content figure img {
    width: 100%;
    height: auto;
    object-fit: contain;
    aspect-ratio: auto;
    display: block;
}

.content figcaption {
    font-size: .92rem;
    color: #555;
    margin-top: 8px;
    text-align: center;
}

/* Sidebar “Photos” & “Sources” */
.side-photos {
    margin-top: 14px;
}

.side-photos h3,
.side-sources h3 {
    font-size: 1rem;
    margin: 0 0 8px;
    color: #0D249E;
}

.thumbs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.thumbs img {
    width: 100%;
    height: 100px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 0 0 1px #e6eafe;
}

.thumbs .cap {
    font-size: .88rem;
    color: #555;
    margin-top: 4px;
    text-align: center;
}

.side-sources {
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid #e1e6ff;
}

.side-sources a {
    color: #0D249E;
    text-decoration: none;
}

.side-sources a:hover {
    text-decoration: underline;
}

.tag {
    display: inline-block;
    background: #eaf0ff;
    color: #0D249E;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: .85rem;
    font-weight: 700;
}

.small-note {
    font-size: .9rem;
    color: #555;
}


