/* ── Theme Variables ───────────────────────────────────────────────────────── */
:root {
    --color-primary:   #c2185b;   /* deep pink — names */
    --color-secondary: #0288d1;   /* light blue — titles */
}

/* ── Typography ────────────────────────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
    color: var(--color-secondary);
}

.list-group-item > strong {
    color: var(--color-secondary);
}

.list-group-item p {
    text-align: justify;
}

/* ── Layout ────────────────────────────────────────────────────────────────── */
.bg {
    background: url(/pict/bg/1.png) no-repeat;
    background-size: cover;
    background-position: 50% 0px;
    width: 100vw;
    height: 100vh;
    position: fixed;
    left: 0px;
    top: 0px;
    z-index: -100;
}

.cont {
    padding-top: 100px;
    padding-bottom: 50px;
}

.round {
    border-radius: 10px !important;
}

/* ── Person Block: text only (name + bio, no picture) ──────────────────────── */
.person-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.person-text .person-name {
    font-weight: 700;
    font-size: 1rem;
    color: #000;
    margin: 0;
}

.person-text .person-role {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-secondary);
    opacity: 0.75;
    margin: 0;
}

.person-text .person-bio {
    font-size: 0.875rem;
    color: #444;
    margin: 4px 0 0 0;
    line-height: 1.5;
    text-align: justify;
}

/* ── Person Block: with picture (avatar + name + bio) ──────────────────────── */
.person-pic {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.person-pic .person-avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--color-primary);
    flex-shrink: 0;
}

.person-pic .person-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.person-pic .person-name {
    font-weight: 700;
    font-size: 1rem;
    color: #000;
    margin: 0;
}

.person-pic .person-role {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-secondary);
    opacity: 0.75;
    margin: 0;
}

.person-pic .person-bio {
    font-size: 0.875rem;
    color: #444;
    margin: 4px 0 0 0;
    line-height: 1.5;
    text-align: justify;
}
