.shorts-carousel {
    padding: 0 20px;
    margin: 40px 0;
}

/* Each slide */
.short-item {
    display: block;
    text-decoration: none;
    padding: 0 8px;
}

/* Slick arrow tweaks */
.shorts-carousel .slick-prev,
.shorts-carousel .slick-next {
    z-index: 10;
    width: 36px;
    height: 36px;
}

.shorts-carousel .slick-prev { left: -10px; }
.shorts-carousel .slick-next { right: -10px; }

.shorts-carousel .slick-prev:before,
.shorts-carousel .slick-next:before {
    font-size: 28px;
    color: #333;
}

/* GLightbox vertical sizing for Shorts */
.glightbox-container .gslide-video {
    max-width: 400px !important;
}

/* NEW VERSION */
.short-thumb {
    position: relative;
    width: 100%;
    padding-top: 177.78%; /* 9:16 aspect ratio */
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    display: block;
}

.short-thumb img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.short-play {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: #fff;
    opacity: 0;
    transition: opacity 0.2s ease;
    text-shadow: 0 2px 8px rgba(0,0,0,0.6);
    z-index: 2;
}

.short-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    padding: 28px 12px 12px;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    border-radius: 0 0 12px 12px;
    z-index: 2;
    box-sizing: border-box;
}

.short-item:hover .short-thumb img {
    transform: scale(1.04);
    opacity: 0.75;
}

.short-item:hover .short-play {
    opacity: 1;
}
/* Lightbox overlay */
#shorts-lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
}

#shorts-lightbox-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.92);
    cursor: pointer;
}

/* Inner container — portrait sizing */
#shorts-lightbox-inner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 380px;
    max-width: 95vw;
    /* 9:16 aspect ratio */
    height: calc(380px * 16 / 9);
    max-height: 90vh;
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    z-index: 1;
}

/* iframe fills the container */
#shorts-lightbox-video {
    width: 100%;
    height: 100%;
}

#shorts-lightbox-video iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

/* Close button */
#shorts-lightbox-close {
    position: absolute;
    top: 10px;
    right: 14px;
    z-index: 2;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

#shorts-lightbox-close:hover {
    background: rgba(0, 0, 0, 0.9);
}

/* Prevent body scroll when lightbox is open */
body.lightbox-open {
    overflow: hidden;
}