

/* 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 */
/* /local/templates/generator/components/bitrix/news/team/style.css?17775220763137 */
