.series-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px;
}

.series-item {
    position: relative;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    height: 100%;
    max-width: 500px;
}

.series-item:hover {
    transform: scale(1.01);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.series-item-image {
    background-size: cover;
    background-position: center;
    height: 180px;
    position: relative;
}

.teacher-images {
    position: absolute;
    bottom: 10px;
    left: 10px;
    display: flex;
    justify-content: center;
    gap: 5px;
}

.teacher-images img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 1px solid white;
    object-fit: cover;
}

.series-item-content {
    padding: 15px;
    text-align: right;
}

.series-item-title {
    font-size: 1.4em;
    margin: 10px 0;
    color: #333;
    font-weight: 700;
}

.series-item-teacher {
    margin: 0 0 10px;
    font-size: 0.9em;
    color: #666;
}

.series-item-date {
    margin: 0;
    font-size: 0.9em;
    color: #999;
}

.series-item-link {
    color: inherit;
    display: block;
}
.series-gallery-container {
    width: 100%;
    margin-bottom: 20px;
    text-align: right;
}

.series-gallery-search {
    width: 100% !important;
    padding: 8px 12px !important;
    margin-bottom: 20px;
    border: 1px solid #ddd !important;
    border-radius: 10px !important;
    direction: rtl;
    font-size: 20px;
}

.series-gallery-search:focus {
    outline: none;
    border-color: #666;
}