Наши сотрудники (команда)

HTML

<?php if( have_rows('сотрудники') ): ?>
<div class="team">
    <div class="container">
        <div class="content-title content-title--c"><?php the_field('заголовок_блока_сотрудников'); ?></div>
        <div class="team_block">
            <div class="flex_block">
                <?php while( have_rows('сотрудники') ): the_row(); ?>
                <div class="team--inner">
                    <div class="avatar">
                        <?php 
                        $image = get_sub_field('фото');
                        if( !empty($image) ): ?>
                            <img src="<?php echo $image['sizes']['thumbnail']; ?>" alt="<?php echo $image['alt']; ?>" />
                        <?php endif; ?>
                    </div>
                    <div class="name"><?php the_sub_field('имя'); ?></div>
                    <div class="dolz"><?php the_sub_field('должность'); ?></div>
                </div>
                <?php endwhile; ?>
            </div>
        </div>
    </div>
</div>
<?php endif; ?>

LESS

.team{
    text-align: center;
    padding-top: 150px;
    padding-bottom: 150px;
    
    .team_block{
        .team--inner{
            width: 202px;
            padding: 45px;
            border-radius: 20px;
            margin-right: 30px;
            margin-bottom: 30px;
            background: @color-1;
            box-shadow: 0 15px 20px 0 rgba(0, 85, 247, 0.33);
            color: #fff;
            
            &:nth-child(4n){
                margin-right: 0;
            }
            .avatar{
                width: 140px;
                height: 140px;
                overflow: hidden;
                border-radius: 50%;
                margin: 0 auto;
                margin-bottom: 20px;
                
                img{
                    object-fit: cover;
                    width: 100%;
                    height: 100%;
                    vertical-align: bottom;
                }
            }
            .name{
                font-weight: bold;
                margin-bottom: 10px;
            }
            .dolz{
            }
        }
    }
}
Контакты

Работаем: с ПН по ПТ, с 08:00 до 17:00 (МСК)
Отдыхаем: в СБ и ВС, чтобы быть в тонусе
и реализовывать самые сложные идеи