.halyk-coverflow-wrap {
    width: 100vw;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    
    padding: 30px 0 60px;
    overflow: hidden;
    user-select: none;
    -webkit-user-select: none;
}

.halyk-coverflow-stage {
    position: relative;
    width: 100%;
    height: 58vw;          
    max-height: 760px;     
    min-height: 500px;
    perspective: 1200px;
    perspective-origin: 50% 50%;
    transform-style: preserve-3d;
    cursor: grab;
    touch-action: pan-y;   
}

.halyk-coverflow-stage:active { cursor: grabbing; }

.halyk-cf-slide {
    position: absolute;
    width: 33%;            
    max-width: 580px;      
    min-width: 320px;
    left: 50%;             
    top: 50%;
    transform: translate(-50%, -50%); 
    will-change: transform, opacity;
    transform-style: preserve-3d;
    backface-visibility: hidden;
    -webkit-user-drag: none;
}

.halyk-slide-inner {
    width: 100%;
    background: #112A31;
    border: 12px solid #fff;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: none; /* УБРАЛИ ТЕНЬ */
    display: flex;
    flex-direction: column;
    position: relative;
}

.halyk-slide-inner .image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 10 / 11;
    overflow: hidden;
    flex-shrink: 0;
}

.halyk-slide-inner .image-wrapper img {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    user-drag: none;
    -webkit-user-drag: none;
    pointer-events: none; 
}

.halyk-slide-inner .slide-content {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 16px;
    background: #fff;
    min-height: 75px;
}

.halyk-slide-inner .slide-content h3 {
    margin: 0;
    font-size: 16px;      
    font-weight: 500;
    line-height: 1.35;
    color: #112A31;
    flex: 1 1 auto;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    white-space: normal;
}

.halyk-slide-inner .slide-content .category {
    flex: 0 0 35%; /* Отдаем рубрике гарантированные 35% ширины плашки */
    max-width: 160px; /* Чтобы не раздувалась на больших экранах */
    font-size: 10px;
    font-weight: 400;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: right;
    line-height: 1.25;
    white-space: normal;
    word-break: break-word;
}

.halyk-slide-inner .slide-link {
    position: absolute;
    inset: 0;
    z-index: 5;
    user-drag: none;
    -webkit-user-drag: none;
}

.halyk-cf-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 25px;
}

.halyk-cf-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: #112A31;
    opacity: 0.25;
    cursor: pointer;
    transition: all 0.3s;
    display: block;
}

.halyk-cf-dot.active {
    width: 18px;
    border-radius: 3px;
    opacity: 1;
}

@media (max-width: 1024px) {
    .halyk-cf-slide { width: 42%; } 
}
@media (max-width: 768px) {
    .halyk-cf-slide { width: 65%; } 
    .halyk-coverflow-stage { min-height: 480px; }
}
