.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
}

.section-title {
    margin: 0;
    color: #475467;
    font-size: 1rem;
    font-weight: 700;
}

.section-add {
    display: inline-flex;
    min-height: 36px;
    align-items: center;
    justify-content: center;
    padding: 0 14px;
    border: 1px solid #198754;
    border-radius: 10px;
    background: #198754;
    color: #fff;
    font-size: .88rem;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    transition:
        background .15s ease,
        border-color .15s ease;
}

.section-add:hover {
    background: #157347;
    border-color: #157347;
    color: #fff;
}
/* Сворачиваемые разделы карточки человека */

.collapsible-section {
    padding: 0;
    overflow: hidden;
}

.collapsible-section-summary {
    display: flex;
    align-items: center;
    gap: 12px;

    padding: 18px 20px;

    cursor: pointer;
    list-style: none;
    user-select: none;
}

.collapsible-section-summary::-webkit-details-marker {
    display: none;
}

.collapsible-section-summary::marker {
    content: "";
}

.collapsible-section-summary::before {
    content: "▶";

    flex: 0 0 auto;

    color: #667085;
    font-size: 0.85rem;
    line-height: 1;

    transition: transform 0.15s ease;
}

.collapsible-section[open]
    > .collapsible-section-summary::before {
    content: "▼";
}

.collapsible-section-summary:hover {
    background: rgba(0, 0, 0, 0.025);
}

.collapsible-section-title {
    min-width: 0;

    color: #101828;
    font-size: 1.2rem;
    font-weight: 700;
}

.collapsible-section-content {
    padding: 0 20px 20px;
}

.collapsible-section-actions {
    display: flex;
    justify-content: flex-end;

    margin-bottom: 14px;
}

@media (max-width: 700px) {
    .collapsible-section-summary {
        padding: 16px;
    }

    .collapsible-section-content {
        padding: 0 16px 16px;
    }
}

/* Количество записей в заголовке раздела */

.collapsible-section-count {
    display: inline-flex;
    min-width: 24px;
    height: 24px;
    align-items: center;
    justify-content: center;

    margin-left: 7px;
    padding: 0 8px;

    border-radius: 999px;
    background: #f2f4f7;
    color: #667085;

    font-size: 0.82rem;
    font-weight: 700;
    line-height: 1;
}