body.dark-mode .nav-menu-list li ul.sub-menu li,
body.dark-mode .nav-menu-list li ul.sub-menu li a {
    background-color: #1a1a1a !important;
}
/* Dark mode: mobile menu background */
/*body.dark-mode .nav-menu-list,*/
body.dark-mode .nav-menu-list.open,
body.dark-mode .mobile-menu,
body.dark-mode .mobile-nav {
    background-color: #1a1a1a !important;
}
body.dark-mode .sub-menu,
body.dark-mode ul.sub-menu {
    background-color: #1a1a1a !important;
}
body.dark-mode .sub-menu li a,
body.dark-mode ul.sub-menu li a {
    color: #fff !important;
    opacity: 1 !important;
}
body.dark-mode .sub-menu li,
body.dark-mode ul.sub-menu li {
    opacity: 1 !important;
}
/* Dark mode submenu styles */
body.dark-mode .sub-menu,
body.dark-mode ul.sub-menu {
    background-color: #1a1a1a !important;
}
body.dark-mode .sub-menu li a,
body.dark-mode ul.sub-menu li a {
    color: #fff !important;
}
/* Vertical meta layout for two-columns section */
.column-post-meta-vertical {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    margin-top: 8px;
}
.column-post-meta-vertical .post-author {
    font-size: 13px;
    color: #888;
    margin-bottom: 2px;
    margin-top: 4px;
}
.column-post-meta-vertical .post-date {
    font-size: 13px;
    color: #888;
}
/* Flexbox for post meta, RTL support */
.column-post-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    margin-top: 10px;
    gap: 10px;
}
body.rtl .column-post-meta {
    flex-direction: row-reverse;
    text-align: right;
}
/* ========================================
   HOME PAGE STYLES
   ======================================== */

/* ========================================
   TOP SECTION - HERO SLIDER + SIDEBAR
   ======================================== */
.home-top-section {
    padding: 30px 0 0 0 ;
}
.mb-5, .my-5 {
    margin-bottom: 0px !important;
}

.home-top-section .container-home {
    display: grid;
    gap: 30px;
}

/* ========================================
   HERO SLIDER STYLES
   ======================================== */
.hero-slider-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    height: 600px;
}

.home-sidebar-content {
    height: 575;
}

.sidebar-section {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.sidebar-posts {
    flex: 1;
    overflow-y: auto;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

.hero-slide-image {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.7) 100%);
}

.hero-slide-content {
    position: absolute;
    bottom: 40px;
    left: 40px;
    right: 40px;
    z-index: 2;
    color: white;
}

.hero-slide-title a {
    color: white;
    text-decoration: none;
    font-size: 32px;
    font-weight: bold;
    line-height: 1.3;
    display: block;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-slide-excerpt {
    font-size: 16px;
    line-height: 1.6;
    opacity: 0.95;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

/* Slider Controls */
.hero-slider-prev,
.hero-slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.9);
    color: #333;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: all 0.3s;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.hero-slider-prev:hover,
.hero-slider-next:hover {
    background-color: var(--sheesha-red);
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.hero-slider-prev {
    left: 20px;
}

.hero-slider-next {
    right: 20px;
}

/* Slider Indicators */
.hero-slider-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.hero-slider-indicators .indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s;
}

.hero-slider-indicators .indicator.active,
.hero-slider-indicators .indicator:hover {
    background-color: white;
    transform: scale(1.2);
}

/* ========================================
   SIDEBAR STYLES
   ======================================== */
.home-sidebar-content {
    height: 600px;
}

.sidebar-section {
    background-color: #d1d1d1;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

body.dark-mode .sidebar-section {
    background-color: #1a1a1a;
}

.sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e0e0e0;
}

.sidebar-header h3 {
    font-size: 20px;
    font-weight: bold;
    color: #333;
    margin: 0;
}

.sidebar-more {
    color: var(--sheesha-red);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
 
    align-items: center;
    gap: 5px;
    transition: gap 0.3s;
}

.sidebar-more:hover {
    gap: 8px;
}

.sidebar-posts {
    display: flex;
    flex-direction: column;
    gap: 15px;
    flex: 1;
    overflow-x: hidden;
}

/* Scrollbar styling for sidebar */
.sidebar-posts::-webkit-scrollbar {
    width: 6px;
}

.sidebar-posts::-webkit-scrollbar-track {
    background: rgba(0,0,0,0.05);
    border-radius: 3px;
}

.sidebar-posts::-webkit-scrollbar-thumb {
    background: var(--sheesha-red);
    border-radius: 3px;
}

.sidebar-posts::-webkit-scrollbar-thumb:hover {
    background: #a02e22;
    overflow-y: auto;
}

.sidebar-post {
    display: flex;
    gap: 15px;
    border-radius: 8px;
    transition: background-color 0.3s;
}

.sidebar-post:hover {
    background-color: rgba(198, 61, 47, 0.05);
}

.sidebar-post-content {
    flex: 1;
}

.sidebar-post-title {
    margin: 0 0 8px 0;
    font-size: 16px;
    line-height: 1.4;
}

.sidebar-post-title a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s;
}

.sidebar-post-title a:hover {
    color: var(--sheesha-red);
}

.sidebar-post-meta {
    font-size: 13px;
    color: #666;
}

.sidebar-post-meta i {
    margin-right: 5px;
}

.sidebar-post-thumbnail {
    flex-shrink: 0;
    border-radius: 8px;
    overflow: hidden;
}

.sidebar-post-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
    display: block;
    margin: 0 auto;
}

.sidebar-post:hover .sidebar-post-thumbnail img {
    transform: scale(1.1);
}

/* ========================================
   CATEGORY SLIDER SECTION
   ======================================== */
.home-category-section {
    padding: 30px 0 0 0;
}

/* ========================================
   FEATURED POSTS SECTION (Side by Side Layout)
   ======================================== */
.featured-posts-section {
   /* margin-bottom: 50px;*/
}

.featured-posts-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--sheesha-red);
    gap: 20px;
}

.featured-posts-title {
    font-size: 28px;
    font-weight: bold;
    color: #333;
    margin: 0;
    flex: 1;
}

.featured-more {
    color: var(--sheesha-red);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: gap 0.3s;
    white-space: nowrap;
    flex-shrink: 0;
}

.featured-more:hover {
    gap: 10px;
}

.section-header{
    border-bottom: 2px solid #e0e0e0 !important;
    display: flex !important;
    justify-content: space-between !important;
    width: 100% !important;
}

.section-header .text-danger,
.section-header a {
    color: var(--sheesha-red) !important;
}

.featured-posts-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.justify-content-between{
    border-bottom: 1px solid var(--sheesha-red) !important;
}

.featured-post-item {
    border-radius: 12px;
    overflow: hidden;
    transition: box-shadow 0.3s;
}



.featured-post-row {
    display: grid;
    grid-template-columns: 1fr 400px ;
    min-height: 250px;
}

.featured-post-image {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.featured-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}
    

.featured-post-content {
    padding: 30px 35px 30px 0px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-color: white;
}

.featured-post-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 15px;
    border-bottom: 1px solid var(--sheesha-red);
}

.featured-post-title {
    margin: 0;
    font-size: 22px;
    line-height: 1.4;
    font-weight: bold;
    flex: 1;
}

.featured-post-title a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s;
}

.featured-post-title a:hover {
    color: var(--sheesha-red);
}

.featured-read-more {
    color: var(--sheesha-red);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
    transition: gap 0.3s;
    flex-shrink: 0;
}

.featured-read-more:hover {
    gap: 8px;
}

.featured-post-excerpt {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    flex: 1;
}

/* ========================================
   CATEGORY SLIDER SECTION
   ======================================== */

.category-slider-section {
    margin-bottom: 40px;
}

.category-slider-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    border-bottom: 2px solid #e0e0e0;
}

.category-slider-title {
    font-size: 28px;
    font-weight: bold;
    color: #333;
    margin: 0;
}

.category-more {
    color: var(--sheesha-red);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: gap 0.3s;
}

.category-more:hover {
    gap: 10px;
}

.category-slider-wrapper {
    position: relative;
    padding: 0;
}

.category-slider {
    overflow: hidden;
}

.category-slider-track {
    display: flex;
    gap: 20px;
    transition: transform 0.4s ease;
}

.category-slide {
    flex: 0 0 260px;
    min-width: 260px;
    background-color: white;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    border-radius: 12px;
}

.category-slide:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.category-slide-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
    border-radius: 12px;
}

.category-slide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.category-slide:hover .category-slide-image img {
    transform: scale(1.1);
}

.category-slide-content {
    padding: 15px;
    background-color: white;
}

.category-slide-title {
    margin: 0 0 12px 0;
    font-size: 16px;
    line-height: 1.4;
}

.category-slide-title a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s;
}

.category-slide-title a:hover {
    color: var(--sheesha-red);
}

.category-slide-meta {
    display: flex;
    gap: 15px;
    font-size: 13px;
    color: #666;
}

.category-slide-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Category Slider Controls */
.category-slider-prev,
.category-slider-next {
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.95);
    color: #333;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: all 0.3s;
    z-index: 100;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.category-slider-prev:hover,
.category-slider-next:hover {
    background-color: var(--sheesha-red);
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.category-slider-prev {
    left: 20px;
}

.category-slider-next {
    right: 20px;
}

/* ========================================
   RESPONSIVE STYLES
   ======================================== */

@media (max-width: 1200px) {
    .category-slide {
        flex: 0 0 260px;
        min-width: 260px;
    }
}

@media (max-width: 992px) {
    .home-top-section .container-home {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .home-sidebar-content {
        margin: 0 auto;
    }
    
    .category-slide {
        min-width: 260px
        flex 0 0 calc(33.333% - 14px);
    }
}

@media (max-width: 768px) {
    .hero-slider-wrapper {
        height: 400px;
    }
    
    .hero-slide-title a {
        font-size: 24px;
    }
    
    .hero-slide-content {
        bottom: 30px;
        left: 20px;
        right: 20px;
    }
    
    .category-slide {
        flex: 0 0 260px;
        min-width: 260px;
    }
    
    .category-slider-prev,
    .category-slider-next {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
    
    /* Featured Posts Responsive */
    .featured-post-row {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    
    .featured-post-image {
        height: 250px;
        width: 100%;
    }
    
    .featured-post-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .featured-post-content {
        padding: 20px;
    }
    
    .featured-post-title {
        font-size: 20px;
    }
    
    .featured-post-excerpt {
        font-size: 15px;
        line-height: 1.6;
    }
}

@media (max-width: 576px) {
    .hero-slider-wrapper {
        height: 350px;
        border-radius: 8px;
    }
    
    .hero-slide-title a {
        font-size: 20px;
    }
    
    .hero-slide-excerpt {
        font-size: 14px;
    }
    
    .hero-slider-prev,
    .hero-slider-next {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .category-slide {
        flex: 0 0 260px;
        min-width: 260px;
    }
    
    .category-slider-prev,
    .category-slider-next {
        width: 40px;
        height: 40px;
        font-size: 16px;
        left: 10px;
    }
    
    .category-slider-next {
        right: 10px;
        left: auto;
    }
    
    /* Featured Posts Responsive */
    .featured-post-row {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    
    .featured-post-image {
        height: 300px;
        width: 100%;
        order: 1;
    }
    
    .featured-post-content {
        padding: 20px 15px;
        order: 2;
    }
    
    .featured-post-title {
        font-size: 18px;
        margin-bottom: 10px;
    }
    
    .featured-post-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .featured-post-excerpt {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 15px;
    }
    
    .featured-read-more {
        font-size: 14px;
    }
}

/* ========================================
   TWO COLUMNS SECTION (NARRATIVES & NOTES)
   ======================================== */

.two-columns-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}


.fa-times{
    color: var(--sheesha-dark);
}
.column-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--sheesha-red);
}

.column-title {
    margin: 0;
    font-size: 28px;
    font-weight: bold;
    color: var(--sheesha-dark);
}

.column-see-more {
    text-decoration: none;
    font-size: 14px;
    align-items: center;
    gap: 5px;
    transition: color 0.3s;
}

.column-see-more:hover {
    color: var(--sheesha-red);
}

.column-posts {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.column-posts-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.column-post-grid-item {
    display: flex;
    flex-direction: column;
}

.column-post-grid-item .column-post-image {
}

.column-post-grid-item .column-post-content {
    text-align: left;
}

.column-post-grid-item .column-post-title {
    font-size: 16px;
    margin-bottom: 8px;
}

.column-post-grid-item .column-post-meta {
    text-align: left;
}

.column-post-item {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
}

.column-post-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.column-post-image {
    width: 100%;
    overflow: hidden;
    border-radius: 4px;
    position: relative;
}

.column-post-image a {
    display: block;
}

.column-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.column-post-category-overlay {
    position: absolute;
    bottom: 0px;
    left: 10px;
    background-color: var(--sheesha-red);
    color: white;
    padding: 4px 12px;
    font-size: 12px;
    border-radius: 3px;
    z-index: 10;
}

.column-post-item:hover .column-post-image img {
    transform: scale(1.1);
}

.column-post-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    direction: ltr;
    text-align: left;
    padding: 0;
}

.column-post-category {
    display: inline-block;
    background-color: var(--sheesha-red);
    color: white;
    padding: 4px 12px;
    font-size: 12px;
    border-radius: 3px;
    margin-bottom: 10px;
    align-self: flex-start;
    text-decoration: none;
    transition: background-color 0.3s;
}
.column-post-title .column-post-category-inline a {
    color: white !important;
    text-decoration: none;
    transition: color 0.3s;
}

.column-post-category:hover {
    background-color: #a03228;
}

.column-post-category-inline {
    display: inline-block;
    background-color: var(--sheesha-red);
    color: white !important;
    padding: 4px 12px;
    font-size: 12px;
    border-radius: 3px;
    margin: 10px 0px; 
    vertical-align: middle;
}

.column-post-title {
    margin: 0 0 10px 0;
    font-size: 18px;
    line-height: 1.4;
    font-weight: bold;
}

.column-post-title a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s;
}

.column-post-title a:hover {
    color: var(--sheesha-red);
}

.column-post-excerpt {
    font-size: 14px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 10px;
}

.column-post-meta {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #999;
    direction: ltr;
    text-align: left;
}

.column-post-meta span {
    display: flex;
    align-items: center;
}

/* ========================================
   TWO COLUMNS RESPONSIVE
   ======================================== */

@media (max-width: 1200px) {
    .column-post-item {
        grid-template-columns: 200px 1fr;
        gap: 15px;
    }
    
    .column-post-image {
        height: 130px;
    }
}

@media (max-width: 992px) {
    .two-columns-section {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .column-posts-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .column-post-item {
        grid-template-columns: 220px 1fr;
    }
}

@media (max-width: 768px) {
    .column-title {
        font-size: 24px;
    }
    
    .column-post-item {
        grid-template-columns: 180px 1fr;
        gap: 15px;
    }
    
    .column-post-image {
        height: 120px;
    }
    
    .column-post-title {
        font-sizs-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .column-poste: 16px;
    }
}

@media (max-width: 576px) {
    .column-post-item {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .column-post-content {
        direction: ltr;
        text-align: left;
    }
}
/* ========================================
   MEDIA SLIDER SECTION
   ======================================== */

.media-slider-section {
    margin-bottom: 40px;
    padding-bottom: 40px;
}

.media-slider-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--sheesha-red);
}

.media-slider-title {
    margin: 0;
    font-size: 28px;
    font-weight: bold;
    color: var(--sheesha-dark);
}

.media-see-more {
    color: #666;
    text-decoration: none;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: color 0.3s;
}

.media-see-more:hover {
    color: var(--sheesha-red);
}

.media-slider-wrapper {
    position: relative;
    padding: 0;
}

.media-slider-container {
    overflow: hidden;
    position: relative;
}


/* Responsive fix: allow horizontal scroll on mobile, prevent cut-off */
@media (max-width: 576px) {
    .media-slider-section {
        padding-bottom: 20px;
    }
    .media-slider-container {
        overflow-x: auto;
        overflow-y: visible;
        -webkit-overflow-scrolling: touch;
    }
    .media-slider-track {
        flex-wrap: nowrap;
        width: max-content;
        min-width: 100vw;
    }
    .media-slide {
        min-width: 90vw;
        max-width: 95vw;
        flex-basis: 90vw;
        box-sizing: border-box;
    }
}

.media-slider-track {
    display: flex;
    gap: 20px;
    transition: transform 0.5s ease;
}

.media-slide {
    min-width: 280px;
    flex-shrink: 0;
}

.media-slide-content {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.media-slide-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.media-video-link {
    display: block;
    text-decoration: none;
}

.media-video-thumbnail {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    background-color: #000;
}

.media-video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.media-slide-content:hover .media-video-thumbnail img {
    transform: scale(1.05);
}

.media-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background-color: rgba(198, 61, 47, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.media-play-button i {
    color: white;
    font-size: 28px;
    margin-left: 4px;
}

.media-slide-content:hover .media-play-button {
    background-color: var(--sheesha-red);
    transform: translate(-50%, -50%) scale(1.1);
}

.media-slide-info {
    padding: 15px;
    background-color: white;
}

.media-slide-title {
    margin: 0;
    font-size: 16px;
    line-height: 1.4;
    font-weight: bold;
    direction: rtl;
    text-align: right;
}

.media-slide-title a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s;
}

.media-slide-title a:hover {
    color: var(--sheesha-red);
}

.media-slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border: none;
    background-color: rgba(18, 42, 68, 0.9);
    color: white;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    z-index: 100;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.media-slider-arrow:hover {
    background-color: var(--sheesha-dark);
    transform: translateY(-50%) scale(1.1);
}

.media-slider-prev {
    left: 15px;
}

.media-slider-next {
    right: 15px;
}

.media-slider-arrow i {
    font-size: 18px;
}

/* Media Slider Responsive */
@media (max-width: 1200px) {
    .media-slide {
        min-width: 260px;
    }
}

@media (max-width: 992px) {
    .media-slider-wrapper {
        padding: 0;
    }
    
    .media-slide {
        min-width: 240px;
    }
}

@media (max-width: 768px) {
    .media-slider-title {
        font-size: 24px;
    }
    
    .media-slider-wrapper {
        padding: 0;
    }
    
    .media-slide {
        min-width: 220px;
    }
    
    .media-video-thumbnail {
        height: 160px;
    }
    
    .media-play-button {
        width: 60px;
        height: 60px;
    }
    
    .media-play-button i {
        font-size: 24px;
    }
}

@media (max-width: 576px) {
    .media-slider-wrapper {
        padding: 0;
    }
    
    .media-slide {
        min-width: 200px;
    }
    
    .media-video-thumbnail {
        height: 140px;
    }
    
    .media-slider-arrow {
        width: 35px;
        height: 35px;
    }
    ..column-post-category-overlay{
        
    }
}
/* Container for the text area */
.column-post-content {
    display: flex;
    flex-direction: column;
}

.column-post-title {
    margin-bottom: 8px; /* Spacing between title and author */
}

/* The Meta Wrapper */
.post-meta-details {
    display: flex;
    justify-content: space-between; /* Pushes author to one side, date to the other */
    align-items: center;
    width: 100%;
}

.post-author {
    font-weight: 600;
    /* In LTR this is left, in RTL this is right */
}

.post-date {
    font-size: 0.9rem;
    color: #666;
    /* In LTR this is right, in RTL this is left */
}
