.dp-ti-slider-section {
    padding: 80px 20px;
    background-color: #f5f5f5;
    overflow: hidden; /* Чтобы слайдер не вылезал */
}

.dp-ti-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 40% 55%;
    gap: 5%;
    align-items: center;
    min-height: 500px; /* Гарантируем высоту */
}

/* Текстовая часть */
.dp-ti-text-wrapper {
    position: relative;
    z-index: 2;
}

.dp-ti-text-slide h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
    font-family: 'PP Fraktion Sans', sans-serif;
    color: #000;
}

.dp-ti-text-slide p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 30px;
}

/* Навигация (стрелки) */
.dp-ti-nav {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.dp-ti-btn {
    width: 50px;
    height: 50px;
    border: 1px solid #000;
    background: transparent;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    padding: 0;
}

.dp-ti-btn:hover {
    background: #000;
    color: #fff;
}

.dp-ti-btn svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
}

/* Картинки */
.dp-ti-image-wrapper {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    /* Фикс для Owl Carousel, чтобы картинки не прыгали */
    width: 100%; 
    display: block; 
}

.dp-ti-image-slide img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 30px;
}

/* Адаптив */
@media (max-width: 991px) {
    .dp-ti-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .dp-ti-nav {
        justify-content: center;
        margin-bottom: 30px; /* Отступ до картинки */
    }

    .dp-ti-image-wrapper {
        order: -1; /* Картинка сверху на мобильном */
        margin-bottom: 20px;
    }
}