{
    box-sizing: border-box;
}

/* Ausstellung Abschnitt */
.ausstellung-section {
    margin: 0 auto;
}

.ausstellung-container {
    display: flex;
    flex-direction: row;
    gap: 40px; /* Erhöhter Abstand zwischen den Spalten */
    align-items: flex-start;
}

.ausstellung-text {
    flex: 2;
}

.ausstellung-image {
    flex: 1;
	padding-top: 5px;
}

.ausstellung-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

/* Responsive Anpassung */
@media (max-width: 768px) {
    .ausstellung-container {
        flex-direction: column;
        align-items: center;
    }
    .ausstellung-image {
        order: -1;
        margin-bottom: 20px;
    }
    .ausstellung-text {
        text-align: center;
    }
}


/* Responsive Anpassung für Karussell */
@media (max-width: 768px) {
    .carousel {
        max-width: 100%;
        margin: 0 auto;
        text-align: center;
    }
    .carousel-indicators {
        text-align: center;
        padding-left: 0;
    }
    .karussell-section {
        text-align: center;
    }
    .carousel-indicators button {
        width: 8px;
        height: 8px;
    }
}
