/* Post Detail Slider Styles */
.post-slider-container {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
}

.post-slider-container .slider-container {
    height: 100%;
    border-radius: 0;
    margin-bottom: 0;
    box-shadow: none;
}

.banner-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 2rem;
    color: #fff;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0) 100%);
}

.post-category-label {
    margin-bottom: 1rem;
}

.post-category-label a {
    display: inline-block;
    background-color: var(--primary, #0d6efd);
    color: #fff;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.post-category-label a:hover {
    background-color: var(--primary-dark, #0a58ca);
    transform: translateY(-2px);
}

.post-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.post-meta-info {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 1rem;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.author-avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid #fff;
}

/* RTL Support */
.rtl-container .post-meta-info {
    flex-direction: row-reverse;
}

.rtl-container .meta-item {
    flex-direction: row-reverse;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .post-slider-container {
        height: 400px;
    }
    
    .post-title {
        font-size: 1.8rem;
    }
    
    .post-meta-info {
        gap: 1rem;
    }
}

@media (max-width: 576px) {
    .post-slider-container {
        height: 350px;
    }
    
    .post-title {
        font-size: 1.5rem;
    }
    
    .post-meta-info {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .rtl-container .post-meta-info {
        flex-direction: column;
    }
}
