/* ----------------- */
/* CAROUSEL GRAPHICS */
/* ----------------- */
.carousel-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    max-width: 90%;
    margin: 20px auto;
}
.carousel-track {
    width: 100%;
    height: 600px;
    max-width: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}
.carousel-viewport {
    width: 100%;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.carousel-viewport img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 12px;
    transition: transform 0.4s ease, opacity 0.4s ease;
}
.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    border: none;
    color: white;
    font-size: 30px;
    padding: 10px 15px;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
}
.arrow:hover {
    background: rgba(0,0,0,0.7);
}
.left { left: 10px; }
.right { right: 10px; }
.caption {
    text-align: center;
    margin-top: 12px;
    font-size: x-large;
    font-weight: 400;
    line-height: 1.8;
}



/* ----------------- */
/* MOBILE RESPONSIVE */
/* ----------------- */
@media (max-width: 800px) {
    /* Mobile Responsive for Portfolio Carousel */
    .carousel-container img {
        max-height: 350px;
        width: 90%;
    }
    .arrow {
        font-size: 24px;
        padding: 8px 12px;
    }
    .caption {
        font-size: 1rem;
        padding: 0 5px;
        line-height: 1.8;
    }
}