.regulation-section {
    position: relative;
}

.regulation-section .inner-container {
    position: relative;
    border-bottom: 1px solid #e5e5e5;
   
}
.regulation-section .shape {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    mix-blend-mode: hard-light;
}

.entities-box{
    display: flex;
    flex-direction: row;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}
.entity-item {
    background-color: rgb(31 37 50);
    padding: 1rem;
    border-radius: 4rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    min-width: 200px;
}

.entity-item .image-box{
    --size: 35px;               /* размер круга */
    --scale: 1;                  /* 1 = без масштабирования */
    --translate-x: 0;            /* смещение по X (можно в %, px) */
    --translate-y: 0;            /* смещение по Y */
    --pos-x: 50%;                /* object-position по X */
    --pos-y: 50%;

    width: var(--size);
    aspect-ratio: 1 / 1;       
    border-radius: 50%;        
    overflow: hidden;          
    display: inline-block;
    position: relative;
}
.entity-item .image-box img{
    position: absolute;
    top: 0; left: 0;
    width: calc(100% * var(--scale));
    height: calc(100% * var(--scale));
    object-fit: cover;
    object-position: var(--pos-x) var(--pos-y);
    transform: translate(var(--translate-x), var(--translate-y));
    transform-origin: center center;
    display: block;

}
.regulation-section .entity-item h3 {
    font-size: 1.35rem;
}


.regulation-section .regulation-title-box {
    font-family: var(--text-font);
    text-align: center;
}

.regulation-section .regulation-title-box h2{
    margin-bottom: 1rem;
}

.regulation-section .regulation-title-box p{
    color: #ffffff;
    font-size: 1.125rem;

}



@media screen and (max-width: 480px) {
    .entity-item {
        min-width: 160px;
        padding: .85rem;
    }
    .regulation-section .entity-item h3 {
        font-size: 1rem;
    }
    
}