/**
 * Stiluri CSS pentru secțiunea Articole Blog cu slider
 *
 * @package Storefront Child
 */

/* Stiluri pentru secțiunea de Articole Blog */
.blog-posts-section {
    padding: 40px 0;
    margin: 0;
}

/* Header secțiune */
.blog-posts-header {
    text-align: center;
    margin-bottom: 30px;
}

.blog-posts-title {
    font-size: 24px;
    font-weight: 600;
    margin: 0;
    color: #111;
}

/* Container slider */
.blog-posts-slider-wrapper {
    position: relative;
    overflow: hidden;
    margin: 0 -10px;
}

.blog-posts-slider {
    display: flex;
}

/* Fix pentru afișarea inițială - arată doar primele 3 articole până când Slick este inițializat */
.blog-posts-slider:not(.slick-initialized) {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: hidden;
    justify-content: center;
}

.blog-posts-slider:not(.slick-initialized) .blog-post-item {
    width: 33.333%; /* 3 articole pe rând inițial */
    flex: 0 0 33.333%;
    max-width: 350px;
}

.blog-posts-slider:not(.slick-initialized) .blog-post-item:nth-child(n+4) {
    display: none; /* Ascunde orice articol peste 3 până când Slick este inițializat */
}

/* Stiluri pentru Slick */
.blog-posts-slider .slick-track {
    display: flex;
    margin-left: 0;
    margin-right: 0;
}

.blog-posts-slider .slick-slide {
    height: auto;
    padding: 0 15px;
    display: flex;
}

/* Asigură-te că articolele au lățimea corectă în cadrul slide-urilor */
.blog-posts-slider .slick-slide > div {
    width: 100%;
    display: flex;
}

/* Item articol */
.blog-post-item {
    width: 100%;
    padding: 10px;
}

/* Link articol */
.blog-post-link {
    display: block;
    text-decoration: none;
    color: inherit;
    width: 100%;
}

/* Imagine articol - cu dimensiuni fixe */
.blog-post-image {
    margin-bottom: 15px;
    width: 100%;
    height: 220px; /* Înălțime fixă pentru toate imaginile */
    overflow: hidden;
}

.blog-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Păstrează aspectul imaginii și acoperă tot containerul */
    display: block;
}

/* Titlu articol */
.blog-post-title {
    font-size: 16px;
    font-weight: 500;
    margin: 0;
    line-height: 1.4;
    color: #333;
    text-align: center;
}

/* Săgeți de navigare */
.blog-posts-navigation {
    position: absolute;
    top: 0;
    left: 10px;
    right: 10px;
    bottom: 0;
    pointer-events: none;
    z-index: 10;
}

.blog-posts-nav-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 50%;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    cursor: pointer;
    font-size: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    width: 36px;
    height: 36px;
    pointer-events: auto;
    transition: all 0.2s ease;
    z-index: 10;
}

.blog-posts-nav-button.prev-button {
    left: -5px;
}

.blog-posts-nav-button.next-button {
    right: -5px;
}

/* Stilizare hover - fond negru cu săgeată albă */
.blog-posts-nav-button:hover {
    background-color: #000;
    color: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.15);
}

/* Stilizare pentru butoanele dezactivate */
.blog-posts-nav-button.slick-disabled {
    opacity: 0;
    cursor: default;
    pointer-events: none;
}

/* Mesaj pentru lipsa articolelor */
.blog-posts-empty {
    text-align: center;
    padding: 20px 0;
    color: #666;
}

/* Responsive */
@media (max-width: 991px) {
    .blog-posts-slider:not(.slick-initialized) .blog-post-item {
        width: 50%; /* 2 articole pe rând pe tablete */
        flex: 0 0 50%;
    }
    
    .blog-posts-slider:not(.slick-initialized) .blog-post-item:nth-child(n+3) {
        display: none;
    }
    
    .blog-post-image {
        height: 200px; /* Ușor redusă pe tablete */
    }
}

@media (max-width: 767px) {
    .blog-posts-slider:not(.slick-initialized) .blog-post-item {
        width: 100%; /* 1 articol pe rând pe mobile */
        flex: 0 0 100%;
    }
    
    .blog-posts-slider:not(.slick-initialized) .blog-post-item:nth-child(n+2) {
        display: none;
    }
    
    .blog-post-image {
        height: 180px; /* Redusă pe mobile */
    }
}