.vkl-team-item-thumb {
                  width: 100%;
                  /* full width of the container */
                  height: 250px;
                  /* fixed height for all images */
                  overflow: hidden;
                  /* hide overflow */
                }

                .vkl-team-item-thumb img {
                  width: 100%;
                  height: 100%;
                  object-fit: cover;
                  /* cover ensures image fills box without distortion */
                  display: block;
                }

                .vkl-team-item-thumb {
                  width: 100%;
                  padding-top: 100%;
                  /* 1:1 aspect ratio */
                  position: relative;
                  overflow: hidden;
                }

                .vkl-team-item-thumb img {
                  position: absolute;
                  top: 0;
                  left: 0;
                  width: 100%;
                  height: 100%;
                  object-fit: cover;
                }
              