:root {
    --labd-primary: #0b3b75;
    --labd-primary-dark: #062b59;
    --labd-accent: #0b78b8;

    --labd-bg: #f4f7fb;
    --labd-white: #ffffff;

    --labd-border: #d8e3ed;

    --labd-text: #0b3264;
    --labd-body: #324f69;
    --labd-muted: #7b8c9e;

    --labd-light: #edf4fa;

    --labd-shadow:
        0 5px 20px rgba(11, 50, 100, .06);
}

.labd-page,
.labd-page *,
.labd-page *::before,
.labd-page *::after {
    box-sizing: border-box;
}

.labd-page {
    width: 100%;
    margin: 0;
    padding: 0;
    background: var(--labd-bg);
    font-family: "Open Sans", Arial, sans-serif;
    color: var(--labd-text);
}

.labd-container {
    width: calc(100% - 40px);
    max-width: 1450px;
    margin: 0 auto;
}

.labd-hero {
    position: relative;
    overflow: hidden;
    padding: 48px 0 46px;
    background:
        linear-gradient(
            135deg,
            var(--labd-primary-dark) 0%,
            var(--labd-primary) 100%
        );
    color: #ffffff;
}

.labd-hero::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    top: -210px;
    right: -90px;
    border-radius: 50%;
    background: rgba(255,255,255,.035);
}

.labd-hero::after {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    right: 240px;
    bottom: -230px;
    border-radius: 50%;
    background: rgba(255,255,255,.025);
}

.labd-hero .labd-container {
    position: relative;
    z-index: 2;
}

.labd-eyebrow {
    display: block;
    margin-bottom: 8px;
    color: #7fd3ff;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.6px;
    text-transform: uppercase;
}

.labd-hero h1 {
    max-width: 1050px;
    margin: 0;
    color: #ffffff;
    font-size: 36px;
    font-weight: 800;
    line-height: 1.22;
}

.labd-hero p {
    max-width: 900px;
    margin: 13px 0 0;
    color: rgba(255,255,255,.88);
    font-size: 13px;
    line-height: 1.65;
}

.labd-content {
    padding: 40px 0 65px;
}

.labd-section-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 24px;
}

.labd-section-heading > div:first-child > span {
    display: block;
    margin-bottom: 5px;
    color: var(--labd-accent);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.labd-section-heading h2 {
    position: relative;
    margin: 0;
    padding-bottom: 12px;
    color: var(--labd-text);
    font-size: 27px;
    font-weight: 800;
}

.labd-section-heading h2::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    border-radius: 20px;
    background: var(--labd-accent);
}

.labd-total {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-height: 36px;
    padding: 7px 14px;
    border: 1px solid var(--labd-border);
    border-radius: 25px;
    background: #ffffff;
    color: var(--labd-muted);
    font-size: 10px;
    white-space: nowrap;
}

.labd-total i {
    color: var(--labd-primary);
}

.labd-total strong {
    color: var(--labd-text);
}

.labd-grid {
    display: grid;
    grid-template-columns:
        repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.labd-person {
    overflow: hidden;
    border: 1px solid var(--labd-border);
    border-radius: 14px;
    background: #ffffff;
    box-shadow: var(--labd-shadow);
    transition:
        transform .18s ease,
        box-shadow .18s ease,
        border-color .18s ease;
}

.labd-person:hover {
    transform: translateY(-3px);
    border-color: #bed0e0;
    box-shadow:
        0 9px 28px rgba(11, 50, 100, .10);
}

.labd-photo {
    position: relative;
    width: 100%;
    height: 320px;
    overflow: hidden;
    background: #edf3f8;
}

.labd-photo img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform .3s ease;
}

.labd-person:hover .labd-photo img {
    transform: scale(1.025);
}

.labd-photo-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        linear-gradient(
            135deg,
            #eef4f9 0%,
            #dfeaf4 100%
        );
    color: #7890a8;
    font-size: 68px;
}

.labd-info {
    padding: 18px 18px 20px;
}

.labd-profession {
    display: inline-block;
    margin-bottom: 7px;
    padding: 4px 8px;
    border-radius: 20px;
    background: #edf4fa;
    color: var(--labd-accent);
    font-size: 8px;
    font-weight: 800;
    letter-spacing: .7px;
    text-transform: uppercase;
}

.labd-info h3 {
    margin: 0 0 12px;
    color: var(--labd-text);
    font-size: 15px;
    font-weight: 800;
    line-height: 1.4;
}

.labd-area,
.labd-position {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-top: 8px;
    color: var(--labd-body);
    font-size: 10.5px;
    line-height: 1.5;
}

.labd-area i,
.labd-position i {
    flex-shrink: 0;
    width: 15px;
    margin-top: 2px;
    color: var(--labd-accent);
    font-size: 10px;
}

.labd-area span,
.labd-position span {
    min-width: 0;
}

.labd-empty {
    min-height: 320px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    border: 1px solid var(--labd-border);
    border-radius: 14px;
    background: #ffffff;
    text-align: center;
    box-shadow: var(--labd-shadow);
}

.labd-empty-icon {
    width: 62px;
    height: 62px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    border-radius: 50%;
    background: var(--labd-light);
    color: var(--labd-primary);
    font-size: 25px;
}

.labd-empty h2 {
    margin: 0;
    color: var(--labd-text);
    font-size: 19px;
    font-weight: 800;
}

.labd-empty p {
    max-width: 520px;
    margin: 8px 0 0;
    color: var(--labd-muted);
    font-size: 11px;
    line-height: 1.65;
}

@media (max-width: 1100px) {

    .labd-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767.98px) {

    .labd-section-heading {
        flex-direction: column;
        align-items: flex-start;
    }

    .labd-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
        gap: 15px;
    }

    .labd-photo {
        height: 270px;
    }
}

@media (max-width: 575.98px) {

    .labd-container {
        width: calc(100% - 24px);
    }

    .labd-hero {
        padding: 31px 0;
    }

    .labd-eyebrow {
        font-size: 8px;
        line-height: 1.5;
    }

    .labd-hero h1 {
        font-size: 23px;
    }

    .labd-hero p {
        font-size: 11.5px;
    }

    .labd-content {
        padding: 28px 0 42px;
    }

    .labd-section-heading h2 {
        font-size: 22px;
    }

    .labd-grid {
        grid-template-columns: 1fr;
    }

    .labd-photo {
        height: 360px;
    }

    .labd-info {
        padding: 17px;
    }

    .labd-info h3 {
        font-size: 14px;
    }
}

@media (max-width: 390px) {

    .labd-hero h1 {
        font-size: 20px;
    }

    .labd-photo {
        height: 315px;
    }
}