/* .events-row {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    width: 100%;
} */

/* جای دکمه‌ها – کنار هم، سمت چپ */
/* 
.swiper-nav-wrapper {
    position: absolute;
    top: 10px;
    left: 10px;
    display: flex;
    gap: 10px;
    z-index: 9999;
}

.my-prev,
.my-next {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(6px);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.my-prev:hover,
.my-next:hover {
    background: #fff;
    color: #24214c;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
}

.my-prev:active,
.my-next:active {
    transform: scale(0.95);
}

.my-prev button,
.my-next button {
    all: unset;
    font-size: 16px;
    cursor: pointer;
}

.swiper-header {
    display: flex;
    justify-content: space-between;
}

.swiper-action-btn {
    display: flex;
    flex-direction: row-reverse;
    gap: 10px;
} */

.card {
    position: relative;
    z-index: 1;
}

/* هدر */
.swiper-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    overflow: visible;
    
    position: relative;
    z-index: 10000;
}

/* دکمه‌ها */
.swiper-action-btn {
    display: flex;
    gap: 10px;
}

/* دکمه */
.my-prev,
.my-next {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;

    cursor: pointer;
    transition: all 0.3s ease;
    color: #fff;

    /* 🔥 override swiper */
    position: relative !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    transform: none !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    z-index: 9999;
}

/* حذف آیکن پیش‌فرض swiper */
/* .my-prev::after,
.my-next::after {
    display: none !important;
} */

/* آیکن سفارشی */
.my-prev::before {
    content: "◀";
}

.my-next::before {
    content: "▶";
}

.my-prev::before,
.my-next::before {
    font-size: 16px;
    color: #fff;
    line-height: 1;
}

/* hover */
.my-prev:hover,
.my-next:hover {
    background: #fff;
    color: #24214c;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
}

/* موبایل */
/* @media (max-width: 768px) {
    .my-prev,
    .my-next {
        width: 36px;
        height: 36px;
    }
} */




/* موبایل */
/* @media (max-width: 768px) {

    .my-prev,
    .my-next {
        width: 36px;
        height: 36px;
    }

    .swiper-nav-wrapper {
        top: 5px;
        left: 5px;
        gap: 6px;
    }
} */

.event-card {
    background: rgb(44 43 81) !important;
    border-radius: 12px;
    overflow: hidden;
    /* box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1); */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    /* flex: 1 1 calc(25% - 20px); */
    /* 4 کارت در ردیف */
    cursor: pointer;
    color: aliceblue;
    border: 1px solid rgb(49, 49, 49);
    margin-bottom: 40px;
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.event-img-wrapper {
    overflow: hidden;
}

.event-img {
    width: 100%;
    display: block;
    transition: transform 0.5s ease;
}

.event-card:hover .event-img {
    transform: scale(1.05);
}

.event-info {
    padding: 15px;
}

.event-date {
    font-size: 0.85rem;
    color: hsl(60, 100%, 55%);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.event-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: rgb(243, 243, 243);
    margin-bottom: 10px;
    width: 200px;
}

.event-meta {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 15px;
    font-size: 0.9rem;
    color: aliceblue;
    align-items: flex-start;
    flex-direction: column;
}

.event-meta i {
    margin-right: 5px;
    color: #777;
}

/* .event-titr {
    font-size: 20px;
    padding: 20px 0px 20px;
} */

/* دثص */
.event-titr {
    display: inline-flex;
    align-items: center;
    font-family: "B titr", sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    background: linear-gradient(90deg, #007bff, #00c6ff);
    -webkit-background-clip: text;
    /* -webkit-text-fill-color: transparent; */
    position: relative;
    margin-bottom: 20px;
    /* padding-top: 30px; */
    padding-bottom: 10px;
    cursor: default;
    transition: all 0.3s ease;
    width: 200px;
}

.event-titr::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #007bff, #00c6ff);
    border-radius: 10px;
    transition: width 0.4s ease;
}

.event-titr:hover::after {
    width: 100%;
}

.event-titr i {
    font-size: 1.9rem;
    background: linear-gradient(135deg, #007bff, #00c6ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.event-titr:hover i {
    transform: rotate(-15deg) scale(1.15);
    filter: drop-shadow(0 0 6px rgba(0, 123, 255, 0.5));
}

/* ثدی */

/* آیکون‌ها می‌توانند SVG یا فونت آیکون باشند */
.icon-calendar::before {
    content: "\1F4C5";
}

/* تقویم */
.icon-location::before {
    content: "\1F4CD";
}

/* مکان */
.icon-ticket::before {
    content: "\1F3AB";
}

/* بلیط */
.icon-school::before {
    content: "\1F3EB";
}

.video-item {
    width: 100%;
    height: 180px;
}


@media (max-width: 700px) {
    .video-item {
        height: 150px !important;
    }

    swiper-slide {
        min-height: 270px !important;
        max-height: 700px !important;
    }

    .video-card {
        height: 400px !important;
    }
}

/* sssssssssssssssss */
swiper-container {
    width: 100%;
    height: 100%;
    transform: none !important;
}

swiper-slide {
    text-align: center;
    font-size: 18px;
    /* background: #444; */
    display: flex;
    justify-content: center;
    align-items: center;
    /* height: 450px; */
}

/* .video-card {
    height: 240px;
} */

swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* *********************videos-section********************** */
/* .video-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
}

.video-wrapper {
    position: relative;
    padding-top: 56.25%;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
} */

.video-card {
    background: rgb(44 43 81) !important;
    border-radius: 12px;
    overflow: hidden;
    /* box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1); */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    /* flex: 1 1 calc(25% - 20px); */
    /* 4 کارت در ردیف */
    cursor: pointer;
    color: aliceblue;
    border: 1px solid rgb(49, 49, 49);
    margin-bottom: 40px;
    width: 400px;
    height: 450px;
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.video-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 6px;
    text-align: right;
    line-height: 2;
    height: 90px;
}

.video-info {
    padding: 12px;
    height: 150px;
    text-align: right;

}

.video-date {
    font-size: 14px;
    font-weight: 700;
    color: #dddddd;
    line-height: 3;
}

.video-organizer {
    font-size: 14px;
    font-weight: 700;
    color: #dddddd;
}

/* .my-prev,
.my-next {
	color: #000;
	width: 40px;
	height: 20px;
    margin-bottom: 20px;
}

.my-prev {
	right: 60px;
	left: auto;
}

.my-next {
	right: 10px;
} */