/* =========================================
   LOGO CAROUSEL STYLES
   ========================================= */

   .dp-press-section {
    padding: 60px 0;
    border-bottom: 1px solid #e0e0e0; /* Тонкая линия снизу как в оригинале */
    background-color: #ffffff;
    overflow: hidden;
}

.dp-press-section .dp-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.dp-press-item {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80px; /* Фиксированная высота для выравнивания */
    opacity: 0.6; /* Полупрозрачность по умолчанию */
    transition: opacity 0.3s ease;
    padding: 0 20px;
}

.dp-press-item:hover {
    opacity: 1; /* Полная яркость при наведении */
}

.dp-press-item img {
    max-height: 40px; /* Ограничение высоты логотипа */
    width: auto !important; /* Owl Carousel любит ставить width: 100%, сбрасываем это */
    max-width: 100%;
    object-fit: contain;
    display: block;
}

/* --- Mobile --- */
@media (max-width: 768px) {
    .dp-press-section {
        padding: 40px 0;
    }
    
    .dp-press-item {
        height: 60px;
        padding: 0 10px;
    }
    
    .dp-press-item img {
        max-height: 30px;
    }
}