.events-section {
    background-color: #000000;
    padding: 70px 0;
}

/* ===== عنوان اصلی صفحه ===== */
.events-main-title {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 56px;
    color: #fff;
    margin-bottom: 40px;
}

.events-flex {
    display: flex;
    flex-direction: column-reverse;
    gap: 32px;
}

/* ===== تب‌های انتخاب رویداد ===== */
.events-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 24px;
}

.events-tab {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 30px;
    padding: 8px 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.events-tab:hover {
    border-color: #e69b3c;
    color: #e69b3c;
}

.events-tab.active {
    background-color: rgba(255, 255, 255, 0.08);
    border-color: #fff;
    color: #fff;
}

/* ===== پنل‌های متن ===== */
.events-panel {
    display: none;
}

.events-panel.active {
    display: block;
}

.events-sub-title {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 37px;
    color: #e69b3c;
    line-height: 1.3;
    margin-bottom: 18px;
}

.events-text {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.8;
    color: #fff;
    margin-bottom: 28px;
}

.events-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #e69b3c;
    color: #1a1006;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 18px;
    padding: 13px 26px;
    border-radius: 8px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.events-btn:hover {
    background-color: #d4872f;
    color: #1a1006;
}

/* ===== رسانه سمت راست (عکس/ویدیو) ===== */
.events-media {
    position: relative;
    width: 100%;
}

.events-media-item {
    display: none;
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
}

.events-media-item.active {
    display: block;
}

.events-media-img,
.events-media-video {
    width: 100%;
    height: 100%;
    min-height: 220px;
    object-fit: cover;
    display: block;
    border-radius: 16px;
}
.events-media-video {
    max-height: 600px;
}

/* ===== دسکتاپ (992px به بالا) ===== */
@media (min-width: 992px) {
    .events-section {
        padding: 100px 0;
    }

    .events-flex {
        flex-direction: row;
        align-items: flex-start;
        gap: 60px;
    }

    .events-content {
        flex: 0 0 46%;
        max-width: 46%;
    }

    .events-media {
        flex: 0 0 48%;
        max-width: 48%;
    }


    .events-media-video {
        max-height: 500px;
    }
}
