.slider-object-main {
    background: #171719;
    position: relative;
    border-radius: 16px;
    height: 429.234px;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 20px;
}

.slider-absolute-background-1 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1; /* Позади всех объектов */
}

.slider-content {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    position: relative; /* Для элементов выше фонового изображения */
    z-index: 1;
}

.slider-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.slider-left {
    display: flex;
    justify-content: center;
    align-items: flex-end; /* Выровняем изображение по низу */
    flex: 1;
    position: relative;
}

.slider-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: center;
    align-items: flex-start;
    color: #FFF;
    padding: 0 20px;
}

.text-h5 {
    font-size: 40px;
    font-weight: 600;
    line-height: 1.2;
}

.text-h5-description {
    font-size: 16px;
    line-height: 1.5;
}

.learn-more-slider {
    background: #FE902F;
    color: #FFF;
    font-size: 16px;
    font-weight: bold;
    padding: 10px 20px;
    border-radius: 8px;
    border: none;
    cursor: url(../images/cursor-active.cur), auto;
    transition: background 0.3s ease;
}

.learn-more-slider:hover {
    background: #f07f1c;
    cursor: url(../images/cursor-active.cur), auto;
}

.learn-more-text {
    font-size: 16px;
    color: #FFF;
    font-weight: 500;
    cursor: url(../images/cursor-active.cur), auto;
    transition: color 0.3s ease;
}

.learn-more-text:hover {
    color: #FE902F;
}

.main-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    align-self: flex-end; /* Убедимся, что изображение касается низа */
    margin-bottom: 0; /* Убираем любые отступы снизу */
}

@media (max-width: 724px) {
    .main-image {
        display: none;
    }

    .slider-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .slider-right {
        align-items: center;
        padding: 0;
    }
}
