.personnel-record-heading {
    margin-bottom: 18px;
}

/* Central dark-mode treatment for the complete personnel record. */
:root[data-theme="dark"] .personnel-group-heading {
    border-color: var(--ui-border);
}

:root[data-theme="dark"] .personnel-group-heading strong,
:root[data-theme="dark"] .personnel-identity-content h2,
:root[data-theme="dark"] .personnel-side-card h3,
:root[data-theme="dark"] .personnel-detail-card h2,
:root[data-theme="dark"] .personnel-data-grid dd,
:root[data-theme="dark"] .personnel-timeline strong,
:root[data-theme="dark"] .personnel-name-link,
:root[data-theme="dark"] .personnel-current-rank strong,
:root[data-theme="dark"] .personnel-rank-current strong {
    color: var(--ui-text);
}

:root[data-theme="dark"] .personnel-identity-card,
:root[data-theme="dark"] .personnel-side-card,
:root[data-theme="dark"] .personnel-detail-card,
:root[data-theme="dark"] .personnel-stat-grid article {
    color: var(--ui-text);
    border-color: var(--ui-border);
    background: var(--ui-panel);
}

:root[data-theme="dark"] .personnel-detail-card > header,
:root[data-theme="dark"] .personnel-timeline article:not(:last-child)::before {
    border-color: var(--ui-border);
}

:root[data-theme="dark"] .personnel-existing-clothing,
:root[data-theme="dark"] .personnel-clothing-list article,
:root[data-theme="dark"] .personnel-order-list article,
:root[data-theme="dark"] .personnel-record-list article,
:root[data-theme="dark"] .personnel-document-list article,
:root[data-theme="dark"] .personnel-size-grid article,
:root[data-theme="dark"] .personnel-card-empty,
:root[data-theme="dark"] .personnel-current-rank,
:root[data-theme="dark"] .personnel-rank-current,
:root[data-theme="dark"] .personnel-inactive-clothing,
:root[data-theme="dark"] .personnel-inactive-clothing-list article {
    color: var(--ui-text);
    border-color: var(--ui-border);
    background: var(--ui-muted);
}

:root[data-theme="dark"] .personnel-quick-actions a,
:root[data-theme="dark"] .personnel-quick-actions button {
    color: var(--ui-text);
    background: var(--ui-muted);
    border-color: var(--ui-border);
}

:root[data-theme="dark"] .personnel-quick-actions a:hover,
:root[data-theme="dark"] .personnel-quick-actions button:hover {
    color: #fff;
    background: var(--tenant-primary, #168dc1);
}

:root[data-theme="dark"] :is(
    .personnel-number,
    .personnel-primary-organization,
    .personnel-contact-list dt,
    .personnel-stat-grid span,
    .personnel-card-kicker,
    .personnel-data-grid dt,
    .personnel-timeline p,
    .personnel-timeline small,
    .personnel-record-list p,
    .personnel-document-list p,
    .personnel-size-grid span,
    .personnel-card-empty,
    .personnel-current-rank span,
    .personnel-current-rank small,
    .personnel-rank-current span,
    .personnel-clothing-main small,
    .personnel-clothing-main span,
    .personnel-order-list p,
    .personnel-clothing-meta > span,
    .personnel-existing-clothing > p,
    .personnel-existing-clothing label span
) {
    color: var(--ui-text-muted);
}

:root[data-theme="dark"] :is(
    .personnel-primary-role,
    .personnel-contact-list a,
    .personnel-detail-card header a,
    .personnel-document-list a,
    .personnel-existing-clothing summary,
    .personnel-name-link
) {
    color: #64c8ef;
}

.personnel-record-layout {
    display: grid;
    grid-template-columns: 290px minmax(0, 1fr);
    gap: 20px;
    align-items: start;
}

.personnel-profile-completeness {
    margin-bottom: 1rem;
    padding: 1rem 1.25rem;
}

.personnel-profile-completeness-layout {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.personnel-profile-completeness h2 {
    margin: .2rem 0;
}

.personnel-profile-completeness p {
    margin: 0;
}

.personnel-profile-completeness-meter {
    flex: 0 1 360px;
    min-width: 220px;
}

.personnel-profile-completeness-track {
    height: 12px;
    overflow: hidden;
    border-radius: 999px;
    background: #e4ebef;
}

.personnel-profile-completeness-track > span {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, #ef5a37, #f28a67);
}

.personnel-group-heading {
    align-items: end;
    border-bottom: 2px solid #dbe6eb;
    display: flex;
    gap: 0.65rem;
    grid-column: 1 / -1;
    justify-content: space-between;
    margin-top: 0.35rem;
    padding: 0.7rem 0.15rem 0.55rem;
}

.personnel-group-heading span {
    color: #e7502e;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.personnel-group-heading strong {
    color: #173f52;
    font-size: 0.95rem;
}

.personnel-group-heading-final {
    margin: 1.15rem 0 0.75rem;
}

.personnel-equipment-card {
    grid-column: 1 / -1;
}

.personnel-clothing-card,
.personnel-orders-card,
.personnel-documents-card {
    margin-top: 0.9rem;
}

.personnel-clothing-list,
.personnel-order-list {
    display: grid;
    gap: 0.75rem;
}

.personnel-existing-clothing {
    background: #f7fafb;
    border: 1px solid #d8e4e9;
    border-radius: 0.75rem;
    margin-bottom: 1rem;
    padding: 0.85rem 1rem;
}

.personnel-existing-clothing summary {
    color: #174f69;
    cursor: pointer;
    font-weight: 800;
}

.personnel-existing-clothing form {
    display: grid;
    gap: 0.8rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 1rem;
}

.personnel-existing-clothing label {
    display: grid;
    gap: 0.35rem;
}

.personnel-existing-clothing label span {
    color: #526878;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
}

.personnel-existing-clothing input,
.personnel-existing-clothing select {
    min-width: 0;
    width: 100%;
}

.personnel-existing-wide {
    grid-column: span 2;
}

.personnel-existing-actions {
    align-items: end;
    display: flex;
}

.personnel-existing-clothing > p {
    color: #607083;
    font-size: 0.8rem;
    margin: 0.8rem 0 0;
}

.personnel-clothing-list article,
.personnel-order-list article {
    align-items: center;
    background: #f8fafc;
    border: 1px solid #dbe4ec;
    border-radius: 0.75rem;
    display: flex;
    gap: 1rem;
    justify-content: space-between;
    padding: 1rem;
}

.personnel-clothing-main,
.personnel-clothing-meta,
.personnel-order-status {
    display: grid;
    gap: 0.3rem;
}

.personnel-clothing-main small,
.personnel-clothing-main span,
.personnel-order-list p,
.personnel-clothing-meta > span {
    color: #607083;
}

.personnel-clothing-meta {
    justify-items: end;
}

.personnel-clothing-meta form {
    align-items: end;
    display: flex;
    gap: 0.5rem;
}

.personnel-clothing-meta label {
    font-size: 0.75rem;
    font-weight: 700;
}

.personnel-clothing-meta input {
    max-width: 6rem;
}

.personnel-inactive-clothing { margin-top: 1rem; padding: 1rem; border: 1px solid #efd8ce; border-radius: 0.75rem; background: #fffaf8; }
.personnel-inactive-clothing h3,
.personnel-inactive-clothing p { margin: 0; }
.personnel-inactive-clothing p { margin-top: 0.25rem; color: #607083; }
.personnel-inactive-clothing-list { display: grid; gap: 0.5rem; margin-top: 0.85rem; }
.personnel-inactive-clothing-list article { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 0.75rem; border: 1px solid #efd8ce; border-radius: 0.65rem; background: #fff; }
.personnel-inactive-clothing-list article > div { display: grid; gap: 0.2rem; }
.personnel-inactive-clothing-list article > div:last-child { justify-items: end; }
.personnel-clothing-condition { padding: 0.3rem 0.55rem; border-radius: 999px; font-size: 0.75rem; font-weight: 800; }
.personnel-clothing-condition.is-defective { color: #9b3a1f; background: #fff0e9; }
.personnel-clothing-condition.is-retired { color: #586775; background: #edf1f4; }

.personnel-order-status {
    justify-items: end;
    min-width: 9rem;
}

@media (max-width: 720px) {
    .personnel-existing-clothing form {
        grid-template-columns: 1fr;
    }

    .personnel-existing-wide {
        grid-column: auto;
    }

    .personnel-clothing-list article,
    .personnel-order-list article {
        align-items: stretch;
        flex-direction: column;
    }

    .personnel-clothing-meta,
    .personnel-order-status {
        justify-items: start;
    }
}

.personnel-profile-sidebar {
    display: grid;
    gap: 14px;
    position: sticky;
    top: 78px;
}

.personnel-identity-card,
.personnel-side-card,
.personnel-detail-card,
.personnel-stat-grid article {
    border: 1px solid #d8e2e7;
    border-radius: 10px;
    background: #ffffff;
    box-shadow: 0 5px 20px rgb(18 48 64 / 6%);
}

.personnel-identity-card {
    overflow: hidden;
}

.personnel-photo-frame {
    position: relative;
    min-height: 315px;
    background:
        linear-gradient(
            145deg,
            #e8f0f3,
            #ccdce3
        );
}

.personnel-photo-frame > a:first-child,
.personnel-photo-frame img {
    display: block;
    width: 100%;
    height: 315px;
}

.personnel-photo-frame img {
    object-fit: cover;
    object-position: center top;
}

.personnel-photo-placeholder {
    display: grid;
    place-items: center;
    width: 100%;
    height: 315px;
    color: #ffffff;
    background:
        linear-gradient(
            145deg,
            #174f69,
            #347f91
        );
}

.personnel-photo-placeholder span {
    display: grid;
    place-items: center;
    width: 116px;
    height: 116px;
    border: 3px solid rgb(255 255 255 / 55%);
    border-radius: 50%;
    font-size: 42px;
    font-weight: 700;
}

.personnel-mourning-ribbon {
    position: absolute;
    z-index: 3;
    top: 16px;
    right: 16px;
    width: 38px;
    height: 50px;
    border: 8px solid #080808;
    border-bottom-color: transparent;
    border-radius: 50% 50% 42% 42%;
    filter: drop-shadow(0 3px 4px rgb(0 0 0 / 30%));
    pointer-events: none;
}

.personnel-mourning-ribbon::before,
.personnel-mourning-ribbon::after {
    content: '';
    position: absolute;
    top: 26px;
    width: 9px;
    height: 35px;
    border-radius: 2px;
    background: #080808;
    transform-origin: top center;
}

.personnel-mourning-ribbon::before {
    left: 5px;
    transform: rotate(28deg);
}

.personnel-mourning-ribbon::after {
    right: 5px;
    transform: rotate(-28deg);
}

.personnel-photo-edit {
    position: absolute;
    right: 10px;
    bottom: 10px;
    padding: 7px 11px;
    border-radius: 6px;
    color: #ffffff;
    background: rgb(15 70 101 / 88%);
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    backdrop-filter: blur(5px);
}

.personnel-identity-content {
    padding: 18px;
    text-align: center;
}

.personnel-identity-content h2 {
    margin: 11px 0 5px;
    color: #163b4e;
    font-size: 23px;
}

.personnel-number,
.personnel-primary-role,
.personnel-primary-organization {
    margin: 5px 0;
}

.personnel-primary-role {
    color: #236b82;
    font-weight: 700;
}

.personnel-primary-organization {
    color: #687d87;
    font-size: 13px;
}

.personnel-status {
    display: inline-flex;
    align-items: center;
    padding: 5px 9px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.personnel-status-active {
    color: #17633a;
    background: #dff4e8;
}

.personnel-status-inactive,
.personnel-status-left,
.personnel-status-retired {
    color: #785b13;
    background: #fff0c9;
}

.personnel-status-deceased {
    color: #5c6670;
    background: #e8edf0;
}

.personnel-side-card {
    padding: 16px;
}

.personnel-side-card h3 {
    margin: 0 0 12px;
    color: #174f69;
    font-size: 14px;
}

.personnel-contact-list {
    display: grid;
    gap: 11px;
    margin: 0;
}

.personnel-contact-list div {
    display: grid;
    gap: 2px;
}

.personnel-contact-list dt {
    color: #6f828c;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

.personnel-contact-list dd {
    margin: 0;
    overflow-wrap: anywhere;
}

.personnel-contact-list a {
    color: #174f69;
    text-decoration: none;
}

.personnel-quick-actions {
    display: grid;
    gap: 5px;
}

.personnel-quick-actions a,
.personnel-quick-actions button {
    display: block;
    width: 100%;
    padding: 9px 10px;
    border: 0;
    border-radius: 6px;
    color: #274754;
    background: #f3f7f8;
    font: inherit;
    font-size: 13px;
    font-weight: 650;
    text-align: left;
    text-decoration: none;
    cursor: pointer;
}

.personnel-quick-actions a:hover,
.personnel-quick-actions button:hover {
    color: #ffffff;
    background: #246b82;
}

.personnel-record-content {
    min-width: 0;
}

.personnel-stat-grid {
    display: grid;
    grid-template-columns:
        repeat(
            5,
            minmax(110px, 1fr)
        );
    gap: 12px;
    margin-bottom: 15px;
}

.personnel-stat-grid article {
    padding: 15px;
}

.personnel-stat-grid span {
    display: block;
    color: #6b7f89;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

.personnel-stat-grid strong {
    display: block;
    margin-top: 4px;
    color: #174f69;
    font-size: 26px;
}

.personnel-card-grid {
    display: grid;
    grid-template-columns:
        repeat(
            2,
            minmax(0, 1fr)
        );
    gap: 15px;
}

.personnel-detail-card {
    min-width: 0;
    padding: 18px;
}

.personnel-detail-card > header {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    align-items: flex-start;
    margin-bottom: 16px;
    padding-bottom: 11px;
    border-bottom: 1px solid #e2e9ec;
}

.personnel-detail-card h2 {
    margin: 3px 0 0;
    color: #174f69;
    font-size: 18px;
}

.personnel-detail-card header a {
    color: #246b82;
    font-size: 12px;
    font-weight: 750;
    text-decoration: none;
}

.personnel-card-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 8px;
}

.personnel-card-kicker {
    color: #7b8d96;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.personnel-data-grid {
    display: grid;
    grid-template-columns:
        repeat(
            2,
            minmax(0, 1fr)
        );
    gap: 14px 22px;
}

.personnel-data-grid dl {
    margin: 0;
}

.personnel-data-grid dt {
    color: #758790;
    font-size: 11px;
    font-weight: 700;
}

.personnel-data-grid dd {
    margin: 4px 0 0;
    color: #203f4d;
    font-weight: 650;
}

.personnel-data-wide {
    grid-column: 1 / -1;
}

.personnel-timeline {
    display: grid;
    gap: 0;
}

.personnel-timeline article {
    position: relative;
    display: grid;
    grid-template-columns: 18px minmax(0, 1fr);
    gap: 10px;
    padding-bottom: 18px;
}

.personnel-timeline article:not(:last-child)::before {
    content: "";
    position: absolute;
    top: 13px;
    bottom: -2px;
    left: 6px;
    width: 1px;
    background: #bdd0d8;
}

.personnel-timeline-dot {
    position: relative;
    z-index: 1;
    width: 13px;
    height: 13px;
    margin-top: 2px;
    border: 3px solid #d9e8ed;
    border-radius: 50%;
    background: #246b82;
}

.personnel-timeline strong {
    color: #203f4d;
}

.personnel-timeline p {
    margin: 3px 0;
    color: #657983;
}

.personnel-timeline small {
    color: #81929a;
}

.personnel-record-list,
.personnel-document-list {
    display: grid;
    gap: 9px;
}

.personnel-record-list article,
.personnel-document-list article {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: center;
    padding: 11px;
    border: 1px solid #e0e8eb;
    border-radius: 7px;
    background: #f8fafb;
}

.personnel-record-list p,
.personnel-document-list p {
    margin: 3px 0 0;
    color: #6d8089;
    font-size: 12px;
}

.personnel-document-list a {
    flex: 0 0 auto;
    color: #246b82;
    font-size: 12px;
    font-weight: 750;
    text-decoration: none;
}

.personnel-result-badge {
    flex: 0 0 auto;
    padding: 4px 7px;
    border-radius: 999px;
    color: #36535f;
    background: #e6eef1;
    font-size: 10px;
    font-weight: 800;
}

.personnel-result-passed,
.personnel-result-active {
    color: #17633a;
    background: #dff4e8;
}

.personnel-result-failed,
.personnel-result-revoked {
    color: #8a2c2c;
    background: #f9dddd;
}

.personnel-result-planned,
.personnel-result-suspended {
    color: #785b13;
    background: #fff0c9;
}

.personnel-size-grid {
    display: grid;
    grid-template-columns:
        repeat(
            5,
            minmax(80px, 1fr)
        );
    gap: 9px;
}

.personnel-size-grid article {
    padding: 11px 8px;
    border: 1px solid #dde7ea;
    border-radius: 7px;
    text-align: center;
    background: #f7f9fa;
}

.personnel-size-grid span {
    display: block;
    min-height: 28px;
    color: #70838c;
    font-size: 10px;
}

.personnel-size-grid strong {
    display: block;
    margin-top: 5px;
    color: #174f69;
    font-size: 19px;
}

.personnel-card-empty {
    padding: 20px;
    border: 1px dashed #c5d2d7;
    border-radius: 7px;
    color: #71848d;
    text-align: center;
    background: #f8fafb;
}

.personnel-notes-card {
    margin-top: 15px;
}

.personnel-notes-card > p {
    margin: 0;
    line-height: 1.6;
}

.personnel-name-link {
    color: #174f69;
    text-decoration: none;
}

.personnel-name-link:hover {
    text-decoration: underline;
}

@media (max-width: 1180px) {
    .personnel-stat-grid {
        grid-template-columns:
            repeat(
                3,
                minmax(110px, 1fr)
            );
    }

    .personnel-size-grid {
        grid-template-columns:
            repeat(
                3,
                minmax(80px, 1fr)
            );
    }
}

@media (max-width: 900px) {
    .personnel-record-layout {
        grid-template-columns: 1fr;
    }

    .personnel-profile-sidebar {
        position: static;
        grid-template-columns:
            minmax(240px, 320px)
            minmax(0, 1fr);
    }

    .personnel-identity-card {
        grid-row: span 2;
    }

    .personnel-card-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .personnel-profile-sidebar {
        grid-template-columns: 1fr;
    }

    .personnel-identity-card {
        grid-row: auto;
    }

    .personnel-stat-grid {
        grid-template-columns:
            repeat(
                2,
                minmax(100px, 1fr)
            );
    }

    .personnel-data-grid {
        grid-template-columns: 1fr;
    }

    .personnel-data-wide {
        grid-column: auto;
    }

    .personnel-size-grid {
        grid-template-columns:
            repeat(
                2,
                minmax(80px, 1fr)
            );
    }
}

/*
 * Dienstgrade in der Personalkartei
 */

.personnel-current-rank {
    display: grid;
    gap: 2px;
    margin: 13px 0;
    padding: 11px 12px;
    border: 1px solid #cbdce3;
    border-radius: 7px;
    background: #f1f7f9;
}

.personnel-current-rank span,
.personnel-rank-current span {
    color: #71858e;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.personnel-current-rank strong {
    color: #174f69;
    font-size: 15px;
}

.personnel-current-rank small {
    color: #71858e;
}

.personnel-rank-current {
    align-items: center;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 16px;
    padding: 14px;
    border: 1px solid #bfd6df;
    border-left: 4px solid #246b82;
    border-radius: 7px;
    background: #f1f7f9;
}

.personnel-rank-current-insignia {
    flex: 0 0 auto;
    max-height: 76px;
    object-fit: contain;
    width: 64px;
}

.personnel-rank-current > div {
    display: grid;
    gap: 3px;
}

.personnel-rank-current strong {
    color: #174f69;
}

.personnel-rank-current p {
    margin: 0;
    color: #6d8089;
    font-size: 12px;
}

.personnel-rank-history {
    display: grid;
}

.personnel-rank-history article {
    position: relative;
    display: grid;
    grid-template-columns: 18px minmax(0, 1fr);
    gap: 10px;
    padding-bottom: 15px;
}

.personnel-rank-history article:not(:last-child)::before {
    content: "";
    position: absolute;
    top: 13px;
    bottom: -1px;
    left: 6px;
    width: 1px;
    background: #c4d5dc;
}

.personnel-rank-history-dot {
    position: relative;
    z-index: 1;
    width: 13px;
    height: 13px;
    margin-top: 3px;
    border: 3px solid #dbe7eb;
    border-radius: 50%;
    background: #81939b;
}

.personnel-rank-history-dot.is-current {
    background: #e25b36;
}

.personnel-rank-history p {
    margin: 3px 0;
    color: #6d8089;
    font-size: 12px;
}

.personnel-rank-history small {
    color: #81929a;
}

.personnel-clothing-status-actions {
    display: flex;
    justify-content: flex-end;
    gap: 6px;
    margin-top: 7px;
}

.personnel-clothing-status-actions form {
    margin: 0;
}

.personnel-equipment-columns {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.personnel-equipment-columns-single {
    grid-template-columns: minmax(0, 1fr);
}

.personnel-card-action-button {
    padding: 0;
    border: 0;
    background: transparent;
    color: #087caf;
    font: inherit;
    font-weight: 700;
    cursor: pointer;
}

.personnel-award-popover {
    width: min(680px, calc(100vw - 32px));
    padding: 0;
    border: 1px solid #cbd9df;
    border-radius: 14px;
    background: #fff;
    color: #18313d;
    box-shadow: 0 22px 70px rgba(8, 35, 48, 0.28);
}

.personnel-award-popover::backdrop {
    background: rgba(5, 27, 38, 0.55);
}

.personnel-award-popover > header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 18px 20px;
    border-bottom: 1px solid #dce5e9;
}

.personnel-award-popover > header h3 {
    margin: 0;
}

.personnel-award-popover .personnel-award-form {
    padding: 20px;
}

.personnel-popover-close {
    width: 38px;
    height: 38px;
    padding: 0;
    border: 1px solid #cbd9df;
    border-radius: 9px;
    background: #f7fafb;
    color: #18313d;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
}

.personnel-pager-card {
    grid-column: 1 / -1;
}

.personnel-equipment-columns > section {
    min-width: 0;
    padding: 16px;
    border: 1px solid #d8e2e7;
    border-radius: 12px;
    background: #f8fafb;
}

.personnel-equipment-columns h3 {
    margin: 0 0 12px;
    color: #174f69;
    font-size: 16px;
}

.personnel-equipment-box-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
}

.personnel-equipment-box-heading h3 {
    margin: 0;
}

.personnel-equipment-box-heading a {
    color: #17627d;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
}

.personnel-equipment-list {
    display: grid;
    gap: 10px;
}

.personnel-equipment-list > article {
    display: grid;
    gap: 8px;
    padding: 12px;
    border: 1px solid #dce5e9;
    border-radius: 9px;
    background: #fff;
}

.personnel-equipment-list > article > div:first-child {
    display: grid;
    gap: 3px;
}

.personnel-equipment-list span,
.personnel-equipment-list small {
    color: #667b86;
}

@media (max-width: 820px) {
    .personnel-equipment-columns {
        grid-template-columns: 1fr;
    }
}
