.angie-slideshow-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    background-color: #000;
}

.angie-slide-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 1;
}

.angie-slide-item.active {
    opacity: 1;
    z-index: 2;
}

.angie-slide-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.angie-slide-caption {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background-color: rgba(0, 0, 0, 0.6);
    color: #fff;
    padding: 10px 15px;
    font-family: sans-serif;
    font-size: 14px;
    border-radius: 4px;
    z-index: 3;
    pointer-events: none;
    max-width: fit-content;
}
