/* Carousel Styles */
.carousel-container,
.proof-carousel-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 12px;
    margin-bottom: 20px;
}

.carousel-slide,
.proof-slide {
    display: none;
    width: 100%;
    animation: fade 1.5s;
}

.carousel-slide img,
.proof-slide img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
    max-height: 450px;
    border-radius: 12px;
    margin: 0 auto;
}

/* Specific to proofs - maybe smaller or different aspect */
.proof-slide img {
    max-height: 500px;
}

.carousel-dots,
.proof-dots {
    text-align: center;
    padding: 10px 0;
    width: 100%;
}

.dot,
.proof-dot {
    cursor: pointer;
    height: 10px;
    width: 10px;
    margin: 0 4px;
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 50%;
    display: inline-block;
    transition: all 0.3s ease;
}

.dot.active,
.proof-dot.active {
    background-color: #10b981;
    transform: scale(1.2);
}

@keyframes fade {
    from {
        opacity: .4
    }

    to {
        opacity: 1
    }
}