.eyebrow {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--main-color);
    margin-bottom: 14px;
}

h1.page-title {
    font-weight: 800;
    text-transform: uppercase;
    color: var(--main-color);
    line-height: 1.25;
}

.lead-text {
    color: var(--text-muted);
    max-width: 640px
}

.photo {
    width: 370px;
    float: right;
    margin: 0 0 30px 30px;
}
.photo:not(:has(img)) {
    padding: 8px;
    background: var(--grey-color);
    border: 1px dashed var(--grey-border);
    color: var(--text-muted);
    font-size: 12px;
    text-align: center;
}

.person-name {
    font-weight: 800;
    text-transform: uppercase;
    color: var(--main-color);
    margin-bottom: 4px;
}

.person-role {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-color)
}

.person-group {
    margin-bottom: 16px;
}

.person-row {
    margin-bottom: 24px;
}
.person-row::after {
    content: "";
    display: table;
    clear: both;
}

.section-label {
    margin-top: 24px;
    margin-bottom: 14px;
    padding: 0;
}

.check-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px
}

.check-list li {
    display: flex;
    gap: 10px;
    font-size: 14.5px;
    line-height: 1.5
}

.check-list li::before {
    content: '✓';
    color: var(--main-color);
    font-weight: 700;
    flex-shrink: 0
}

.stat-card {
    border: 1px solid var(--grey-border);
    border-radius: 10px;
    padding: 16px;
    background: #fff;
    display: flex;
    flex-direction: column;
    gap: 6px;
    height: 100%;
}

.stat-card .num {
    font-weight: 800;
    color: var(--main-color);
    font-size: 1.4rem
}

.stat-card .desc {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.4
}

.work-item {
    border: 1px solid var(--grey-border);
    border-radius: 10px;
    padding: 14px 16px;
    font-size: 14.5px;
    line-height: 1.5;
}

.work-item .num {
    color: var(--main-color);
    font-weight: 800;
    margin-right: 8px
}

.italic-note {
    font-size: 14px;
    color: var(--text-muted);
    font-style: italic
}

hr.divider {
    border: none;
    border-top: 1px solid var(--grey-border);
    margin: 32px 0
}

@media (max-width: 1199.98px) {
    .photo {
        width: 200px;
    }
}

@media (max-width: 479.98px) {
    .photo {
        width: 100px;
        margin: 0 0 10px 10px;
    }
}