.EditorPickSection {
    margin-top: 30px;
    margin-bottom: 30px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    padding: 0 15px;
    box-sizing: border-box;
    width: 100%;
}

.EditorPickSection__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #d4af37;
    /* Gold border like in image */
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.EditorPickSection__header h2 {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    text-transform: uppercase;
    margin: 0;
}

.EditorPickSection__header a {
    font-size: 13px;
    color: #666;
    text-decoration: none;
}

.EditorPickSection__header a:hover {
    color: #d32f2f;
}

/* Slider Container */
.EditorPickSection__slider-container {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.EditorPickSection__slider {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    padding-bottom: 15px;
    cursor: grab;
    -webkit-overflow-scrolling: touch;
    /* Cho phép scroll mượt trên mobile */
    scrollbar-width: thin;
    /* Firefox - scrollbar mỏng */
    scrollbar-color: rgba(0, 0, 0, 0.3) transparent;
}

.EditorPickSection__slider:active {
    cursor: grabbing;
}

.EditorPickSection__slider::-webkit-scrollbar {
    height: 6px;
    /* Hiển thị scrollbar mỏng */
}

.EditorPickSection__slider::-webkit-scrollbar-track {
    background: transparent;
}

.EditorPickSection__slider::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 3px;
}

.EditorPickSection__slider::-webkit-scrollbar-thumb:hover {
    background-color: rgba(0, 0, 0, 0.5);
}

/* Slider Item */
.EditorPickSection__item {
    flex: 0 0 auto;
    width: 160px;
    /* Adjust based on desired size */
    display: flex;
    flex-direction: column;
}

.EditorPickSection__item-cover {
    position: relative;
    width: 100%;
    aspect-ratio: 2/3;
    margin-bottom: 10px;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.EditorPickSection__item-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.EditorPickSection__item-cover:hover img {
    transform: scale(1.05);
}

.EditorPickSection__badge {
    position: absolute;
    top: 5px;
    right: 5px;
    background-color: #28a745;
    /* Green for FULL */
    color: #fff;
    font-size: 10px;
    font-weight: bold;
    padding: 2px 5px;
    border-radius: 3px;
    text-transform: uppercase;
}

.EditorPickSection__item-title {
    font-size: 14px;
    font-weight: bold;
    color: #333;
    margin-bottom: 4px;
    text-decoration: none;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.4;
    height: 40px;
    /* Fixed height for 2 lines */
}

.EditorPickSection__item-title:hover {
    color: #d32f2f;
}

.EditorPickSection__item-author {
    font-size: 12px;
    color: #666;
    margin-bottom: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.EditorPickSection__item-chapters {
    font-size: 12px;
    color: #999;
}

/* Navigation Buttons */
.EditorPickSection__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    opacity: 0.7;
    transition: all 0.3s ease;
    border: none;
    font-size: 24px;
    font-weight: bold;
    line-height: 1;
    user-select: none;
}

.EditorPickSection__nav:hover {
    opacity: 1;
    background: rgba(0, 0, 0, 0.8);
    transform: translateY(-50%) scale(1.1);
}

.EditorPickSection__nav:active {
    transform: translateY(-50%) scale(0.95);
}

.EditorPickSection__nav.prev {
    left: 10px;
}

.EditorPickSection__nav.next {
    right: 10px;
}

.EditorPickSection__nav[style*="pointer-events: none"] {
    opacity: 0.3;
    cursor: not-allowed;
}

/* Responsive */
@media (max-width: 768px) {
    .EditorPickSection__item {
        width: 120px;
        /* Smaller items on mobile */
    }

    .EditorPickSection__item-title {
        font-size: 13px;
        height: 36px;
    }
}