
article .content .large-btn {
    height: 33px;
    min-width: 100%;
    padding: 0 40px;
}
article .content {
    gap: 12px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-top: 12px;
}
.slideshow-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    direction: rtl; /* IMPORTANT FOR RTL */
}

.slideshow-track {
    display: flex;
    flex-direction: row; /* stays LTR internally */
    transition: transform 0.5s ease;
}

.mySlide {
    flex: 0 0 calc(100% / 3); /* 3 at a time */
    box-sizing: border-box;
    padding: 10px;
}
.description,
.title-time{
    padding: 0 12px;
}
.description {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.events-img img{
    /* min-height: 278px; */
    height: auto;
}

/* Arrows */
.prev svg{
    rotate: -180deg;
}
.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 45%;
    padding: 10px 14px;
    color: #000;
    font-weight: bold;
    font-size: 22px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.7);
    z-index: 20;
    width: 40px;
    height: 40px;
    justify-content: center;
    align-items: center;
}

.prev:hover, .next:hover {
    background: #fff;
}

/* RTL arrow positions */
.prev { right: 10px; } /* prev on the right */
.next { left: 10px; }  /* next on the left */

/* Dots */
.slideshow-dots {
    text-align: center;
    margin-top: 10px;
    direction: rtl; /* keep dots left → right */
}

.slideshow-dots .dot {
    height: 12px;
    width: 12px;
    margin: 0 3px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
}

.dot.active {
    background-color: #717171;
}
