

/* Start:/bitrix/templates/aspro-allcorp3/components/bitrix/news.list/staff-list-inner-agidel/style.css?178403005926914*/
/* ==========================================================
   ПОРТРЕТНЫЕ КАРТОЧКИ СОТРУДНИКОВ
   ========================================================== */

:root {
    --staff-green: #4c761a;
    --staff-green-dark: #35570f;
    --staff-green-light: #edf5e7;
    --staff-green-pale: #f7faf4;

    --staff-orange: #ff4e14;
    --staff-orange-dark: #d93b09;
    --staff-orange-light: #fff0ea;

    --staff-yellow: #b97800;
    --staff-yellow-light: #fff6dc;

    --staff-text: #252820;
    --staff-text-secondary: #62685f;
    --staff-text-muted: #8b9188;

    --staff-white: #ffffff;
    --staff-background: #f6f8f4;
    --staff-border: #dfe5db;
    --staff-border-light: #e9ede6;

    --staff-radius-large: 20px;
    --staff-radius-medium: 11px;
    --staff-radius-small: 8px;

    --staff-shadow:
        0 6px 22px rgba(37, 53, 23, 0.07),
        0 1px 4px rgba(37, 53, 23, 0.04);

    --staff-shadow-hover:
        0 16px 38px rgba(37, 53, 23, 0.12),
        0 5px 14px rgba(37, 53, 23, 0.06);
}


/* ==========================================================
   1. БАЗОВЫЕ НАСТРОЙКИ
   ========================================================== */

.staff-brand-wrap,
.staff-brand-wrap * {
    box-sizing: border-box;
}

.staff-brand-wrap {
    display: flex;
    flex-direction: column;
    gap: 44px;

    width: 100%;
    min-width: 0;
}

.staff-brand__section {
    width: 100%;
    min-width: 0;
}


/* ==========================================================
   2. ЗАГОЛОВОК РАЗДЕЛА
   ========================================================== */

.staff-brand__header {
    position: relative;

    margin-bottom: 24px;
    padding: 3px 0 3px 19px;
}

.staff-brand__header::before {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;

    width: 5px;

    background: linear-gradient(
        180deg,
        var(--staff-green) 0%,
        var(--staff-orange) 100%
    );

    border-radius: 20px;
    content: "";
}

.staff-brand__title {
    margin: 0;

    color: var(--white_text_black, var(--staff-text));

    font-size: 27px;
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: -0.3px;

    overflow-wrap: break-word;
}

.staff-brand__desc {
    max-width: 920px;
    margin-top: 8px;

    color: var(--staff-text-secondary);

    font-size: 15px;
    line-height: 1.65;

    overflow-wrap: anywhere;
}

.staff-brand__desc p {
    margin-top: 0;
}

.staff-brand__desc p:last-child {
    margin-bottom: 0;
}


/* ==========================================================
   3. СЕТКА
   ========================================================== */

.staff-brand__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 22px;

    width: 100%;
    min-width: 0;
}

.brand-card,
.brand-card.brand-card--full-width {
    grid-column: auto;
}


/* ==========================================================
   4. КАРТОЧКА
   ========================================================== */

.brand-card,
.brand-card.brand-card--full-width {
    position: relative;

    display: grid;
    grid-template-columns: 240px minmax(0, 1fr);
    align-items: stretch;

    width: 100%;
    min-width: 0;
    min-height: 280px;
    overflow: hidden;

    background: var(--staff-white);
    border: 1px solid var(--staff-border);
    border-radius: var(--staff-radius-large);
    box-shadow: var(--staff-shadow);

    transition:
        border-color 0.25s ease,
        box-shadow 0.25s ease,
        transform 0.25s ease;
}

.brand-card::before {
    position: absolute;
    top: 0;
    right: 0;
    left: 240px;
    z-index: 3;

    height: 4px;

    background: linear-gradient(
        90deg,
        var(--staff-green) 0%,
        var(--staff-green) 78%,
        var(--staff-orange) 100%
    );

    content: "";
}

.brand-card::after {
    display: none;
    content: none;
}

.brand-card:hover {
    border-color: rgba(76, 118, 26, 0.32);
    box-shadow: var(--staff-shadow-hover);
    transform: translateY(-2px);
}


/* ==========================================================
   5. ПАНЕЛЬ С ФОТОГРАФИЕЙ
   ========================================================== */

.brand-card__image-box,
.brand-card.brand-card--full-width .brand-card__image-box {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 240px;
    min-width: 240px;
    height: 100%;
    min-height: 280px;
    padding: 20px;
    overflow: hidden;

    background:
        radial-gradient(
            circle at 20% 15%,
            rgba(255, 255, 255, 0.7) 0,
            rgba(255, 255, 255, 0.7) 44px,
            transparent 45px
        ),
        linear-gradient(
            145deg,
            var(--staff-green-light) 0%,
            var(--staff-green-pale) 65%,
            var(--staff-orange-light) 100%
        );

    border-right: 1px solid var(--staff-border-light);
}

.brand-card__image-box::before {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;

    width: 5px;

    background: var(--staff-green);
    content: "";
}

.brand-card__image-box::after {
    position: absolute;
    right: 0;
    bottom: 0;

    width: 75px;
    height: 5px;

    background: var(--staff-orange);
    content: "";
}


/* ==========================================================
   6. ФОТОГРАФИЯ
   ========================================================== */

.brand-card__img-link,
.brand-card.brand-card--full-width .brand-card__img-link {
    position: relative;
    z-index: 2;

    display: block;

    width: 200px;
    height: 200px;
    min-width: 200px;
    min-height: 200px;
    overflow: hidden;

    background: var(--staff-white);
    border: 5px solid var(--staff-white);
    border-radius: 18px;
    box-shadow:
        0 10px 24px rgba(37, 53, 23, 0.16),
        0 0 0 1px rgba(76, 118, 26, 0.12);

    text-decoration: none;
}

.brand-card__img {
    display: block;

    width: 100%;
    height: 100%;
    min-height: 0;

    background-color: var(--staff-green-light);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;

    filter: none;
    transform: none;

    transition: filter 0.25s ease;
}

.brand-card__img img,
.brand-card__img-link > img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: contain;
    object-position: center;
}

.brand-card:hover .brand-card__img {
    filter: saturate(1.03) contrast(1.01);
}


/* ==========================================================
   7. ТЕКСТОВАЯ ЧАСТЬ
   ========================================================== */

.brand-card__body,
.brand-card.brand-card--full-width .brand-card__body {
    display: flex;
    flex-direction: column;

    width: 100%;
    min-width: 0;
    min-height: 280px;
    padding: 29px 32px 26px;
}

.brand-card__info {
    width: 100%;
    min-width: 0;
}


/* ==========================================================
   8. ДОЛЖНОСТЬ И ИМЯ
   ========================================================== */

.brand-card__post {
    margin: 0 0 7px;

    color: var(--staff-green);

    font-size: 11px;
    font-weight: 800;
    line-height: 1.4;
    letter-spacing: 0.9px;
    text-transform: uppercase;

    overflow-wrap: break-word;
}

.brand-card__name {
    display: block;

    width: fit-content;
    max-width: 100%;
    margin: 0;

    color: var(--white_text_black, var(--staff-text));

    font-size: 24px;
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: -0.3px;

    text-decoration: none;

    overflow-wrap: break-word;
    word-break: normal;

    transition: color 0.2s ease;
}

a.brand-card__name:hover,
a.brand-card__name:focus {
    color: var(--staff-orange);
    text-decoration: none;
}


/* ==========================================================
   9. ТЕКСТ АНОНСА
   ========================================================== */

.brand-card__preview-text {
    max-width: 920px;
    margin-top: 10px;

    color: var(--staff-text-secondary);

    font-size: 14px;
    line-height: 1.6;

    overflow-wrap: anywhere;
    word-break: normal;
}

.brand-card__preview-text p {
    margin-top: 0;
}

.brand-card__preview-text p:last-child {
    margin-bottom: 0;
}


/* ==========================================================
   10. НОВОЕ СВОЙСТВО DESCRIPTION
   ========================================================== */

.brand-card__description {
    position: relative;

    width: 100%;
    min-width: 0;
    margin-top: 18px;
    padding: 16px 18px 16px 21px;

    background: linear-gradient(
        135deg,
        var(--staff-green-pale) 0%,
        var(--staff-white) 72%,
        var(--staff-orange-light) 100%
    );

    border: 1px solid var(--staff-border-light);
    border-radius: var(--staff-radius-medium);
}

.brand-card__description::before {
    position: absolute;
    top: 11px;
    bottom: 11px;
    left: 0;

    width: 4px;

    background: linear-gradient(
        180deg,
        var(--staff-green) 0%,
        var(--staff-orange) 100%
    );

    border-radius: 0 8px 8px 0;
    content: "";
}

.brand-card__description-label {
    margin-bottom: 7px;

    color: var(--staff-green);

    font-size: 10px;
    font-weight: 800;
    line-height: 1.4;
    letter-spacing: 0.7px;
    text-transform: uppercase;

    overflow-wrap: break-word;
}

.brand-card__description-text {
    width: 100%;
    min-width: 0;

    color: var(--staff-text-secondary);

    font-size: 14px;
    font-weight: 500;
    line-height: 1.65;

    white-space: normal;
    overflow-wrap: anywhere;
    word-break: normal;
}


/* ==========================================================
   11. РАЗДЕЛИТЕЛЬ
   ========================================================== */

.brand-card__divider {
    flex: 0 0 auto;

    width: 100%;
    height: 1px;
    margin: 20px 0 16px;

    background: linear-gradient(
        90deg,
        var(--staff-border) 0%,
        var(--staff-border-light) 86%,
        transparent 100%
    );
}


/* ==========================================================
   12. КОНТАКТЫ
   ========================================================== */

.brand-card__props,
.brand-card.brand-card--full-width .brand-card__props {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;

    width: 100%;
    min-width: 0;
    margin: 0;
}

.brand-card__prop,
.brand-card.brand-card--full-width .brand-card__prop {
    display: grid;
    grid-template-columns: 90px minmax(0, 1fr);
    align-items: center;
    gap: 10px;

    width: 100%;
    min-width: 0;
    min-height: 48px;
    padding: 9px 12px;

    background: var(--staff-background);
    border: 1px solid var(--staff-border-light);
    border-radius: var(--staff-radius-medium);

    transition:
        background-color 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.brand-card__prop:hover {
    background: var(--staff-white);
    border-color: rgba(76, 118, 26, 0.27);
    box-shadow: 0 3px 10px rgba(37, 53, 23, 0.05);
}

.brand-card__prop-label {
    display: block;

    min-width: 0;

    color: var(--staff-text-muted);

    font-size: 10px;
    font-weight: 700;
    line-height: 1.35;
    letter-spacing: 0.3px;
    text-transform: uppercase;

    overflow-wrap: break-word;
    word-break: normal;
}

.brand-card__prop-val {
    display: block;

    width: 100%;
    min-width: 0;
    max-width: 100%;

    color: var(--white_text_black, var(--staff-text));

    font-size: 13px;
    font-weight: 700;
    line-height: 1.45;
    text-align: left;

    white-space: normal;
    overflow-wrap: anywhere;
    word-break: normal;
}


/* ==========================================================
   13. ПОЧТА И ТЕЛЕФОН
   ========================================================== */

.brand-card__prop-val a[href^="mailto:"],
.brand-card__prop-val a[href^="tel:"] {
    display: inline;

    max-width: 100%;

    color: var(--white_text_black, var(--staff-text));

    text-decoration: none;
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: normal;

    border-bottom: 1px dashed rgba(76, 118, 26, 0.48);
}

.brand-card__prop-val a[href^="mailto:"] {
    font-size: clamp(11px, 1.05vw, 13px);
    letter-spacing: -0.1px;
}

.brand-card__prop-val a:hover,
.brand-card__prop-val a:focus {
    color: var(--staff-orange);
    border-bottom-color: var(--staff-orange);
    text-decoration: none;
}

.brand-link {
    display: inline;

    max-width: 100%;

    color: var(--white_text_black, var(--staff-text));

    text-decoration: none;
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: normal;

    border-bottom: 1px dashed rgba(76, 118, 26, 0.48);
}

.brand-link:hover,
.brand-link:focus {
    color: var(--staff-orange);
    border-bottom-color: var(--staff-orange);
    text-decoration: none;
}


/* ==========================================================
   14. СТАТУСЫ
   ========================================================== */

.status-open {
    color: var(--staff-green);
    font-weight: 700;
}

.status-closed {
    color: var(--staff-orange);
    font-weight: 700;
}

.status-lunch {
    color: var(--staff-yellow);
    font-weight: 700;
}

.brand-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: fit-content;
    max-width: 100%;
    padding: 5px 9px;

    border-radius: 30px;

    font-size: 9px;
    font-weight: 800;
    line-height: 1.3;
    letter-spacing: 0.45px;
    text-align: center;
    text-transform: uppercase;
    white-space: nowrap;
}

.brand-badge::before {
    flex: 0 0 auto;

    width: 5px;
    height: 5px;
    margin-right: 5px;

    background: currentColor;
    border-radius: 50%;

    content: "";
}

.brand-badge--open {
    color: var(--staff-green-dark);
    background: var(--staff-green-light);
    border: 1px solid rgba(76, 118, 26, 0.2);
}

.brand-badge--closed {
    color: var(--staff-orange-dark);
    background: var(--staff-orange-light);
    border: 1px solid rgba(255, 78, 20, 0.2);
}

.brand-badge--lunch {
    color: #8a5900;
    background: var(--staff-yellow-light);
    border: 1px solid #efd58d;
}


/* ==========================================================
   15. ПОДВАЛ
   ========================================================== */

.brand-card__footer {
    display: flex;
    flex: 0 0 auto;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 11px;

    width: 100%;
    min-width: 0;
    margin-top: auto;
    padding-top: 18px;
}

.brand-card__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;

    min-width: 0;
}


/* ==========================================================
   16. КНОПКИ
   ========================================================== */

.brand-card__btn,
.brand-card__max-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: auto !important;
    max-width: 100%;
    min-height: 40px;
    padding: 9px 16px;

    border-radius: var(--staff-radius-small);

    font-family: inherit;
    font-size: 11px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: 0.4px;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;

    cursor: pointer;

    transition:
        color 0.2s ease,
        background-color 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        transform 0.2s ease;
}

.brand-card__btn {
    color: var(--staff-green);
    background: var(--staff-white);
    border: 1px solid var(--staff-green);
}

.brand-card__btn:hover,
.brand-card__btn:focus {
    color: var(--staff-white);
    background: var(--staff-orange);
    border-color: var(--staff-orange);
    box-shadow: 0 5px 12px rgba(255, 78, 20, 0.18);
    text-decoration: none;
    transform: translateY(-1px);
}

.brand-card__max-action {
    display: flex;
    align-items: center;

    width: 100%;
    margin-top: 11px;
}

.brand-card__max-button,
.brand-card__btn--max {
    color: var(--staff-white);

    background: linear-gradient(
        135deg,
        var(--staff-green) 0%,
        var(--staff-green-dark) 100%
    );

    border: 1px solid var(--staff-green);
    box-shadow: 0 4px 10px rgba(76, 118, 26, 0.17);
}

.brand-card__max-button:hover,
.brand-card__max-button:focus,
.brand-card__btn--max:hover,
.brand-card__btn--max:focus {
    color: var(--staff-white);

    background: linear-gradient(
        135deg,
        var(--staff-orange) 0%,
        var(--staff-orange-dark) 100%
    );

    border-color: var(--staff-orange);
    text-decoration: none;
    transform: translateY(-1px);
}


/* ==========================================================
   17. СОЦИАЛЬНЫЕ СЕТИ
   ========================================================== */

.brand-card__socials {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 7px;
}

.brand-card__social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 40px;
    height: 40px;

    color: var(--staff-text-secondary);
    background: var(--staff-background);
    border: 1px solid var(--staff-border);
    border-radius: var(--staff-radius-small);

    text-decoration: none;

    transition:
        color 0.2s ease,
        background-color 0.2s ease,
        border-color 0.2s ease,
        transform 0.2s ease;
}

.brand-card__social-link svg {
    width: 17px;
    height: 17px;
    fill: currentColor;
}

.brand-card__social-link:hover,
.brand-card__social-link:focus {
    color: var(--staff-white);
    background: var(--staff-orange);
    border-color: var(--staff-orange);

    text-decoration: none;
    transform: translateY(-1px);
}


/* ==========================================================
   18. СРЕДНИЕ ЭКРАНЫ
   ========================================================== */

@media (max-width: 980px) {
    .brand-card,
    .brand-card.brand-card--full-width {
        grid-template-columns: 210px minmax(0, 1fr);
    }

    .brand-card::before {
        left: 210px;
    }

    .brand-card__image-box,
    .brand-card.brand-card--full-width .brand-card__image-box {
        width: 210px;
        min-width: 210px;
        padding: 18px;
    }

    .brand-card__img-link,
    .brand-card.brand-card--full-width .brand-card__img-link {
        width: 174px;
        height: 174px;
        min-width: 174px;
        min-height: 174px;
    }

    .brand-card__body,
    .brand-card.brand-card--full-width .brand-card__body {
        padding: 26px 25px 24px;
    }

    .brand-card__props,
    .brand-card.brand-card--full-width .brand-card__props {
        grid-template-columns: minmax(0, 1fr);
    }

    .brand-card__prop-val a[href^="mailto:"] {
        font-size: 13px;
    }
}


/* ==========================================================
   19. ПЛАНШЕТЫ
   ========================================================== */

@media (max-width: 720px) {
    .staff-brand-wrap {
        gap: 34px;
    }

    .brand-card,
    .brand-card.brand-card--full-width {
        grid-template-columns: 180px minmax(0, 1fr);
        min-height: 250px;
    }

    .brand-card::before {
        left: 180px;
    }

    .brand-card__image-box,
    .brand-card.brand-card--full-width .brand-card__image-box {
        width: 180px;
        min-width: 180px;
        min-height: 250px;
        padding: 15px;
    }

    .brand-card__img-link,
    .brand-card.brand-card--full-width .brand-card__img-link {
        width: 150px;
        height: 150px;
        min-width: 150px;
        min-height: 150px;

        border-width: 4px;
        border-radius: 15px;
    }

    .brand-card__body,
    .brand-card.brand-card--full-width .brand-card__body {
        min-height: 250px;
        padding: 23px 20px 21px;
    }

    .brand-card__name {
        font-size: 21px;
    }

    .brand-card__description {
        padding: 14px 15px 14px 18px;
    }

    .brand-card__prop,
    .brand-card.brand-card--full-width .brand-card__prop {
        grid-template-columns: 78px minmax(0, 1fr);
        gap: 8px;
        padding: 8px 10px;
    }
}


/* ==========================================================
   20. МОБИЛЬНЫЕ УСТРОЙСТВА
   ========================================================== */

@media (max-width: 560px) {
    .staff-brand-wrap {
        gap: 28px;
    }

    .staff-brand__header {
        margin-bottom: 17px;
        padding-left: 15px;
    }

    .staff-brand__header::before {
        width: 4px;
    }

    .staff-brand__title {
        font-size: 22px;
        letter-spacing: 0;
    }

    .staff-brand__desc {
        font-size: 13px;
        line-height: 1.55;
    }

    .staff-brand__grid {
        gap: 16px;
    }

    .brand-card,
    .brand-card.brand-card--full-width {
        display: flex;
        flex-direction: column;

        min-height: 0;

        border-radius: 15px;
    }

    .brand-card::before {
        top: 180px;
        right: 0;
        left: 0;

        height: 4px;
    }

    .brand-card:hover {
        transform: none;
    }

    .brand-card__image-box,
    .brand-card.brand-card--full-width .brand-card__image-box {
        width: 100%;
        min-width: 0;
        height: 184px;
        min-height: 184px;
        padding: 16px;

        border-right: 0;
        border-bottom: 1px solid var(--staff-border-light);
    }

    .brand-card__image-box::before {
        top: 0;
        right: 0;
        bottom: auto;
        left: 0;

        width: auto;
        height: 4px;
    }

    .brand-card__image-box::after {
        width: 65px;
        height: 4px;
    }

    .brand-card__img-link,
    .brand-card.brand-card--full-width .brand-card__img-link {
        width: 152px;
        height: 152px;
        min-width: 152px;
        min-height: 152px;

        border-width: 4px;
        border-radius: 14px;
    }

    .brand-card__body,
    .brand-card.brand-card--full-width .brand-card__body {
        min-height: 0;
        padding: 22px 18px 19px;
    }

    .brand-card__post {
        margin-bottom: 5px;
        font-size: 10px;
        line-height: 1.35;
    }

    .brand-card__name {
        width: 100%;
        font-size: 21px;
        line-height: 1.25;
    }

    .brand-card__preview-text {
        margin-top: 9px;

        font-size: 13px;
        line-height: 1.55;
    }

    .brand-card__description {
        margin-top: 14px;
        padding: 13px 13px 13px 16px;

        border-radius: 9px;
    }

    .brand-card__description::before {
        top: 9px;
        bottom: 9px;

        width: 3px;
    }

    .brand-card__description-label {
        margin-bottom: 5px;
        font-size: 9px;
    }

    .brand-card__description-text {
        font-size: 13px;
        line-height: 1.55;
    }

    .brand-card__divider {
        margin: 16px 0 13px;
    }

    .brand-card__props,
    .brand-card.brand-card--full-width .brand-card__props {
        display: flex;
        flex-direction: column;
        gap: 7px;
    }

    .brand-card__prop,
    .brand-card.brand-card--full-width .brand-card__prop {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 4px;

        min-height: 0;
        padding: 10px 11px;
    }

    .brand-card__prop-label {
        width: 100%;
        font-size: 9px;
    }

    .brand-card__prop-val {
        width: 100%;

        font-size: 12px;
        line-height: 1.5;
    }

    .brand-card__prop-val a[href^="mailto:"],
    .brand-card__prop-val a[href^="tel:"],
    .brand-link {
        white-space: normal;
        overflow-wrap: anywhere;
        word-break: normal;
    }

    .brand-card__prop-val a[href^="mailto:"] {
        font-size: 12px;
        letter-spacing: -0.1px;
    }

    .brand-card__max-action {
        margin-top: 13px;
    }

    .brand-card__max-button {
        width: 100% !important;
    }

    .brand-card__footer {
        flex-direction: column;
        align-items: stretch;
        gap: 11px;

        padding-top: 16px;
    }

    .brand-card__actions,
    .brand-card__socials {
        justify-content: flex-start;
        width: 100%;
    }

    .brand-card__btn {
        width: 100% !important;
    }
}


/* ==========================================================
   21. ОЧЕНЬ УЗКИЕ ЭКРАНЫ
   ========================================================== */

@media (max-width: 370px) {
    .staff-brand__title {
        font-size: 20px;
    }

    .brand-card__image-box,
    .brand-card.brand-card--full-width .brand-card__image-box {
        height: 166px;
        min-height: 166px;
    }

    .brand-card::before {
        top: 162px;
    }

    .brand-card__img-link,
    .brand-card.brand-card--full-width .brand-card__img-link {
        width: 136px;
        height: 136px;
        min-width: 136px;
        min-height: 136px;
    }

    .brand-card__body,
    .brand-card.brand-card--full-width .brand-card__body {
        padding-right: 15px;
        padding-left: 15px;
    }

    .brand-card__name {
        font-size: 19px;
    }

    .brand-card__description {
        padding-right: 11px;
        padding-left: 15px;
    }

    .brand-card__description-text {
        font-size: 12px;
    }

    .brand-card__prop-val a[href^="mailto:"] {
        font-size: 11px;
    }
}


/* ==========================================================
   22. НАВИГАЦИЯ
   ========================================================== */

.staff-brand-wrap .bottom_nav_wrapper {
    width: 100%;
    margin-top: 28px;
}

.staff-brand-wrap .bottom_nav {
    width: 100%;
}


/* ==========================================================
   23. ДОСТУПНОСТЬ
   ========================================================== */

.brand-card__img-link:focus-visible,
.brand-card__name:focus-visible,
.brand-card__btn:focus-visible,
.brand-card__max-button:focus-visible,
.brand-card__social-link:focus-visible,
.brand-link:focus-visible,
.brand-card__prop-val a:focus-visible {
    outline: 3px solid rgba(255, 78, 20, 0.3);
    outline-offset: 3px;
}


/* ==========================================================
   24. ОТКЛЮЧЕНИЕ АНИМАЦИЙ
   ========================================================== */

@media (prefers-reduced-motion: reduce) {
    .brand-card,
    .brand-card__img,
    .brand-card__prop,
    .brand-card__btn,
    .brand-card__max-button,
    .brand-card__social-link {
        transition: none;
    }

    .brand-card:hover,
    .brand-card__btn:hover,
    .brand-card__max-button:hover,
    .brand-card__social-link:hover {
        transform: none;
    }
}
/* End */
/* /bitrix/templates/aspro-allcorp3/components/bitrix/news.list/staff-list-inner-agidel/style.css?178403005926914 */
