

/* Start:/local/templates/generator/components/bitrix/news/team/style.css?17775220763137*/
/* ======================================== */
/* ЛИСТИНГ «НАША КОМАНДА»                    */
/* ======================================== */
.team-list {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
    color: #231f20;
    --team-green: #42ae45;
}

.team-list__section {
    margin-bottom: 60px;
}

.team-list__section-title {
    font-weight: bold;
    font-size: 32px;
    line-height: 124%;
    letter-spacing: 0.01em;
    color: #231f20;
    margin: 0 0 40px;
}

@media (max-width: 768px) {
    .team-list {
        padding: 30px 15px;
    }
    .team-list__section-title {
        font-size: 24px;
        margin-bottom: 24px;
    }
}

.team-list__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

@media (max-width: 1024px) {
    .team-list__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .team-list__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .team-list__grid {
        grid-template-columns: 1fr;
    }
}

/* ======================================== */
/* КАРТОЧКА СОТРУДНИКА                      */
/* ======================================== */
.team-card {
    background: white;
    border-radius: 12px;
    height: 100%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    border: 1px solid #eee;
    box-sizing: border-box;
    text-decoration: none;
    color: inherit;
    overflow: hidden;
}

.team-card:hover {
    box-shadow: 0 8px 24px rgba(66, 174, 69, 0.15);
    transform: translateY(-2px);
}

.team-card__photo {
    position: relative;
    width: 100%;
    padding-bottom: 130%;
    overflow: hidden;
    background: #f0f1f2;
    flex-shrink: 0;
}

.team-card__photo img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-card__photo-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e8e9ea;
}

.team-card__photo-placeholder svg {
    width: 50%;
    height: auto;
    max-width: 80px;
}

.team-card__info {
    padding: 16px 20px 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
}

.team-card__name {
    font-weight: 600;
    font-size: 18px;
    line-height: 1.4;
    color: #231f20;
}

.team-card__position {
    font-weight: normal;
    font-size: 14px;
    line-height: 1.4;
    color: #676767;
}

@media (max-width: 768px) {
    .team-card__info {
        padding: 12px 14px 16px;
    }
    .team-card__name {
        font-size: 16px;
    }
    .team-card__position {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .team-card__photo {
        padding-bottom: 125%;
    }
    .team-card__info {
        padding: 10px 12px 14px;
    }
    .team-card__name {
        font-size: 15px;
    }
}
/* End */


/* Start:/local/templates/generator/components/bitrix/news.detail/team_detail/style.css?17774877666316*/
/* ======================================== */
/* ДЕТАЛЬНАЯ СТРАНИЦА СОТРУДНИКА             */
/* ======================================== */
.team-detail {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
    color: #231f20;
    --team-green: #42ae45;
}

.team-detail__layout {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 60px;
    align-items: start;
}

@media (max-width: 1024px) {
    .team-detail__layout {
        grid-template-columns: 300px 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .team-detail__layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .team-detail {
        padding: 30px 15px;
    }
}

/* Основное фото */
.team-detail__main-photo {
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 20px;
}

.team-detail__main-photo img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    transition: opacity 0.3s;
}

/* Галерея миниатюр */
.team-detail__gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.team-detail__gallery-item {
    border-radius: 8px;
    overflow: hidden;
    display: block;
    border: 2px solid transparent;
    cursor: pointer;
    padding: 0;
    background: none;
    transition: border-color 0.3s;
}

.team-detail__gallery-item.active {
    border-color: var(--team-green);
}

.team-detail__gallery-item img {
    width: 100%;
    height: 80px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s;
}

.team-detail__gallery-item:hover img {
    transform: scale(1.05);
}

/* Кнопка скачивания резюме */
.team-detail__resume {
    margin-top: 20px;
}

.team-detail__resume-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--team-green);
    color: #fff;
    border-radius: 16px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: transform 0.3s;
}

.team-detail__resume-btn:hover {
    background: var(--team-green);
    color: #fff;
    transform: translateY(-2px);
}

/* Правая колонка */
.team-detail__name {
    font-weight: bold;
    font-size: 36px;
    line-height: 1.2;
    color: #231f20;
    margin: 0 0 8px;
}

.team-detail__position {
    font-weight: 500;
    font-size: 18px;
    line-height: 1.4;
    color: #676767;
    margin-bottom: 20px;
}

/* Соцсети */
.team-detail__socials {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 30px;
}

.team-detail__social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s;
}

.team-detail__social-link:hover {
    transform: translateY(-3px);
}

.team-detail__social-link img {
    width: 44px;
    height: 44px;
    display: block;
}

/* Описание */
.team-detail__description {
    font-size: 16px;
    line-height: 1.6;
    color: #231f20;
    margin-bottom: 30px;
}

/* Заголовки секций */
.team-detail__section-title {
    font-weight: bold;
    font-size: 24px;
    line-height: 1.3;
    color: #231f20;
    margin: 0 0 20px;
}

/* Подзаголовок с общим стажем */
.team-detail__experience-subtitle {
    font-size: 15px;
    color: #676767;
    margin: -14px 0 24px;
}

/* Компетенции */
.team-detail__competencies {
    margin-bottom: 30px;
}

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

.team-detail__competencies-list li {
    position: relative;
    padding-left: 28px;
    font-size: 16px;
    line-height: 1.5;
    color: #231f20;
}

.team-detail__competencies-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 2px;
    width: 20px;
    height: 20px;
    background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='20 6 9 17 4 12' stroke='%2342ae45' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-size: 20px 20px;
    background-position: center;
    background-repeat: no-repeat;
}

/* Образование */
.team-detail__education {
    margin-bottom: 30px;
}

.team-detail__education-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.team-detail__education-item {
    font-size: 16px;
    line-height: 1.5;
}

.team-detail__years {
    font-weight: 600;
    color: var(--team-green);
}

.team-detail__place {
    font-weight: 500;
}

.team-detail__speciality {
    color: #676767;
}

/* Карьера */
.team-detail__career {
    margin-bottom: 30px;
}

.team-detail__career-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.team-detail__career-header {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 4px;
}

.team-detail__career-position-inline {
    color: #676767;
}

.team-detail__career-desc {
    font-size: 14px;
    line-height: 1.6;
    color: #676767;
    margin-top: 6px;
}

/* Дипломы и сертификаты */
.team-detail__certificates {
    margin-bottom: 30px;
}

.team-detail__certificates-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

@media (max-width: 480px) {
    .team-detail__certificates-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.team-detail__certificate-item {
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #eee;
    display: block;
    transition: transform 0.3s, box-shadow 0.3s;
}

.team-detail__certificate-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

.team-detail__certificate-item img {
    width: 100%;
    height: auto;
    display: block;
}

/* Адаптив */
@media (max-width: 768px) {
    .team-detail__name {
        font-size: 28px;
    }
    .team-detail__position {
        font-size: 16px;
    }
    .team-detail__section-title {
        font-size: 20px;
    }
    .team-detail__experience-subtitle {
        font-size: 14px;
        margin: -10px 0 20px;
    }
}
/* End */
/* /local/templates/generator/components/bitrix/news/team/style.css?17775220763137 */
/* /local/templates/generator/components/bitrix/news.detail/team_detail/style.css?17774877666316 */
