/* Cinema Page Specific Styles */
.blog_left_sidebar {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.blog_item {
    width: 100%;
    max-width: 1000px;
    margin-bottom: 30px;
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(0, 0, 0, 0.03);
    position: relative;
}

.blog_item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.1);
    border-color: rgba(217, 119, 6, 0.2);
}

.blog_item_img {
    height: 400px;
    overflow: hidden;
    position: relative;
}

.blog_item_img .card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.blog_item:hover .card-img {
    transform: scale(1.03);
}

/* Play overlay on cinema thumbnails */
.cinema-play-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.25);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.blog_item:hover .cinema-play-overlay {
    opacity: 1;
}

.cinema-play-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: #374151;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

.blog_details {
    padding: 35px 40px !important;
}

.blog_details h2 {
    font-size: 28px !important;
    font-weight: 700 !important;
    color: #1a2a3a !important;
    margin-bottom: 18px !important;
    transition: color 0.3s ease;
    line-height: 1.3 !important;
}

.blog_details h2 a {
    color: inherit;
    text-decoration: none;
}

.blog_details h2 a:hover {
    color: #d97706;
}

.blog_details p {
    color: #5a6a7a !important;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 25px;
}

.blog-info-link {
    border-top: 1px solid #f0f0f0;
    padding-top: 20px;
}

.blog-info-link li a {
    color: #8a9aaa !important;
    font-size: 14px;
    font-weight: 500;
}

.blog-info-link li i {
    color: #374151 !important;
    margin-right: 8px;
}

.blog_item_date {
    background: linear-gradient(135deg, #374151, #4b5563) !important;
    border-radius: 0 0 15px 0 !important;
    top: 0 !important;
    left: 0 !important;
    bottom: auto !important;
    right: auto !important;
    padding: 12px 20px !important;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
}

.blog_item_date h3 {
    color: #fff !important;
    font-size: 20px !important;
    margin-bottom: 0 !important;
    font-weight: 700 !important;
}

.blog_item_date p {
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 13px !important;
    margin-bottom: 0 !important;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cinema-featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(217, 119, 6, 0.9);
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    z-index: 10;
    letter-spacing: 0.5px;
    backdrop-filter: blur(4px);
}

/* Skeleton Styles */
.skeleton-box {
    background-color: #e2e8f0;
    background-image: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0));
    background-size: 200px 100%;
    background-repeat: no-repeat;
    background-position: -200px 0;
    animation: skeleton-shimmer 1.5s infinite;
    border-radius: 4px;
}

@keyframes skeleton-shimmer {
    100% { background-position: calc(200px + 100%) 0; }
}

.skeleton-img { width: 100%; height: 400px; border-radius: 0; }
.skeleton-title { width: 60%; height: 32px; margin-bottom: 20px; }
.skeleton-text { width: 100%; height: 16px; margin-bottom: 10px; }
.skeleton-text.short { width: 80%; }

@media (max-width: 768px) {
    .blog_item_img {
        height: 250px;
    }
    .blog_details {
        padding: 25px 20px !important;
    }
    .blog_details h2 {
        font-size: 20px !important;
    }
}
