.personal {
    position: relative;
    text-align: left;
    margin: 0 -15px; /* Компенсация внутренних отступов карусели */
}

/* Фикс для Owl Carousel — чтобы элементы были одной высоты */
.personal .owl-stage {
    display: flex;
    align-items: stretch; /* Растягиваем все ячейки на одинаковую высоту */
}

.personal .owl-item {
    display: flex;
    height: auto !important; /* Убираем фиксированную высоту от Owl */
}

.personal__item {
    font-size: 14px;
    cursor: pointer;
    display: flex;
    flex-direction: column; /* Фото сверху, текст снизу */
    width: 100%; /* Занимает всю ширину колонки */
    height: 100%; /* Растягиваем на всю высоту */
    margin: 0;
    padding: 0 15px; /* Отступы по бокам */
    box-sizing: border-box;
}

.personal__thumb {
    display: block;
    position: relative;
    width: 100%; /* Ширина подстраивается под колонку */
    height: auto; /* Высота автоматически */
    aspect-ratio: 1/1; /* Квадратное фото */
    margin: 0;
}

.personal__thumbnail {
    display: block;
    width: 100%;
    height: 100%;
    margin: 0;
    overflow: hidden;
    border-radius: 0; /* Убираем скругления, если были */
}

.personal__thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Фото заполняет квадрат без искажений */
    display: block;
}

/* Блок с текстом */
.personal__info {
    display: flex;
    flex-direction: column;
    flex-grow: 1; /* Текст занимает оставшееся место */
    padding: 15px 0 10px 0; /* Отступ сверху и снизу */
}

.personal__info-fio {
    display: block;
    text-transform: uppercase;
    font-size: 15px;
    line-height: 1.4;
    font-weight: 700;
    color: #222222;
    margin: 0 0 5px 0;
    white-space: normal;
    word-break: break-word;
}

.personal__info-text {
    display: block;
    font-size: 14px;
    line-height: 1.4;
    font-weight: 400;
    color: #555555;
    margin: 0;
    white-space: normal;
    word-break: break-word;
}

/* Анимации при наведении (оставил как есть) */
.personal__thumb-zoom {
    display: block;
    width: 0px;
    height: 0px;
    margin-top: -250px;
    margin-left: -15px;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transition: all 0.4s ease-in;
    transition: all 0.4s ease-in;
    background: url("images/zoom2.png");
    z-index: 10;
}

.personal__thumb:hover .personal__thumb-zoom {
    display: block;
    margin-top: -15px;
    margin-left: -15px;
    text-decoration: none;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
}

.personal__thumb-background {
    display: block;
    position: absolute !important;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: url(images/patternhover1.png) repeat;
    -webkit-transition: all 0.4s ease-in;
    transition: all 0.4s ease-in;
    z-index: 5;
}

.personal__thumb:hover .personal__thumb-background {
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(images/patternhover1.png) repeat;
    -webkit-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
}

/* Точки навигации (стилизуем, если нужно) */
.owl-dots {
    margin-top: 30px;
    text-align: center;
}

.owl-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    margin: 0 6px;
    background: #cccccc !important;
    border-radius: 50%;
    transition: all 0.3s;
}

.owl-dot.active {
    background: #333333 !important;
    transform: scale(1.2);
}

/* Адаптация */
@media screen and (max-width: 1280px) {
    .personal__info-fio {
        font-size: 14px;
    }
    .personal__info-text {
        font-size: 13px;
    }
}

@media screen and (max-width: 768px) {
    .personal {
        margin: 0 -10px;
    }
    .personal__item {
        padding: 0 10px;
    }
    .personal__info-fio {
        font-size: 13px;
    }
    .personal__info-text {
        font-size: 12px;
    }
}

@media screen and (max-width: 419px) {
    .personal__info {
        padding: 10px 0 5px 0;
    }
    .personal__info-fio {
        font-size: 12px;
        margin-bottom: 3px;
    }
    .personal__info-text {
        font-size: 11px;
    }
}

/* Прячем текстовые кнопки Prev/Next */
.owl-prev, 
.owl-next,
.owl-nav button,
.owl-nav [class*="prev"],
.owl-nav [class*="next"] {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    width: 0 !important;
    height: 0 !important;
    pointer-events: none !important;
}

/* Если нужны только точки */
.owl-dots {
    display: block !important;
    margin-top: 30px;
    text-align: center;
}