/* Advertisement Section */

.ad-banner {
    max-width: 100%;
    height: 371px;
    overflow: hidden;
    margin-left: 4%;
    margin-right: 4%;
    border-radius: 10px;
    box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.05);
    position: relative;
}

.ad-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease;
    z-index: 0;
    pointer-events: none; /* որ չաշխատի անտեսանելի վիճակում */
}

.ad-slide.active {
    opacity: 1;
    z-index: 1;
    pointer-events: auto;
}

.ad-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    display: block;
}
