/*******************************************************************************
* LOGOS
*******************************************************************************/
.aoaio-logo-options {
    display: flex;
    flex-wrap: wrap;
    gap: 20px; /* Größerer Abstand zwischen den Logos */
    justify-content: flex-start;
    padding: 0px 0px 25px 0px;
	padding-top: 0px;
	
}

.aoaio-logo-options .logo-item {
    width: 150px; /* Kleinere Logos auf dem Desktop */
    height: 150px; /* Höhe angepasst für Desktop */
}

.aoaio-logo-options > * {
    flex: 0 1 calc(16.66% - 20px); /* 6 Elemente pro Reihe mit mehr Abstand */
    max-width: calc(16.66% - 20px);
}

.aoaio-logo-options .logo-item .logo-image img {
    width: 100%; /* Volle Breite */
    height: auto; /* Automatische Höhe */
    object-fit: contain; /* Verhindert das Abschneiden */
}

/* Media Query für mobile Geräte */
@media (max-width: 768px) {
    .aoaio-logo-options > * {
        flex: 0 1 calc(50% - 10px); /* 2 Elemente pro Reihe */
        max-width: calc(50% - 10px);
    }

    .aoaio-logo-options .logo-item {
        width: 100%; /* Maximale Breite der Logos auf mobilen Geräten */
        height: auto; /* Höhe automatisch */
    }

    .aoaio-logo-options .logo-item .logo-image img {
        width: 100%; /* Volle Breite der Container */
        height: auto; /* Automatische Höhe */
        object-fit: contain; /* Verhindert das Abschneiden */
    }
}



/*******************************************************************************
* TESTIMONIALS
*******************************************************************************/
/* Container: Responsive Grid – 3 Testimonials pro Reihe */
.aoaio-testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
	padding: 0px 0px 20px 0px;
}
.testimonial-heading h2{
	margin: 30px 0px 10px 0px;
	padding: 0;
}
/* Testimonial-Karte */
.testimonial {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px 15px;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

/* Rundes Bild oben */
.testimonial-thumbnail {
    width: 150px;
    height: 150px;
    margin: 0 auto 15px;
    overflow: hidden;
    border-radius: 50%;
}
.testimonial-thumbnail img {
    width: 100%;
    height: auto;
    display: block;
}

/* Testimonial-Beschreibung mit stilisierten Anführungszeichen */
.testimonial-beschreibung {
    font-style: italic;
    color: #555;
    margin-bottom: 15px;
    position: relative;
    padding: 10px 5px;
    font-size: 20px;
}

/* Titel (Name) des Testimonials */
.testimonial-title {
    font-weight: bold;
    color: #33a6df;
    margin: 0;
	font-size: 28px;
}



.testimonial-name{
    color: #33a6df;
    margin-bottom: 0px;
    font-size: 25px;
    font-style: italic;
}
.testimonial-funktion {
    font-weight: bold;
    font-size: 15px;
    margin-top: 5px;
    color: #464646;
}

/*******************************************************************************
* USE CASES
*******************************************************************************/
/*******************************************************************************/
/* USE CASES - Kompakte Darstellung als Accordion */
/*******************************************************************************/

.aoaio-use-cases {
    max-width: 800px;
    margin: 0 auto;
}

.use-case-intro {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #555;
}

.use-case-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.use-case {
    /*border: 1px solid #ddd;
    border-radius: 8px;*/
    overflow: hidden;
    background: #f9f9f9;
}

.use-case-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    background: #33a6df;
    padding: 15px;
    color: #fff;
    font-size: 1.0em;
    font-weight: bold;
    transition: background 0.3s;
}

.use-case-header:hover {
    background: #2a8dc7;
}

.use-case-arrow {
    font-size: 0.7em;
    margin-left: auto;
}

.use-case-content {
    display: none;
    ¨/*padding: 15px;*/
    background: white;
}

.use-case-layout {
    display: flex;
    gap: 20px;
	background: #fff;
}

.use-case-image {
    flex: 1;
    max-width: 200px;
}

.use-case-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.use-case-text {
    flex: 2;
	background: #fff;
}

.use-case-text {
    flex: 2 1 66%; /* 2/3 der Breite */
    max-width: 100%; /* Maximale Breite auf 100% setzen */
}

.use-case-image {
    flex: 1 1 33%; /* 1/3 der Breite */
    max-width: 100%; /* Maximale Breite auf 100% setzen */
}


.use-case-content h4 {
    color: #333;
    margin-top: 10px;
    font-size: 1.1em;
}

.use-case-herausforderungen li,
.use-case-ansatz li,
.use-case-ergebnis li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 10px;
    list-style: none; /* Entfernt das standardmäßige Listenzeichen */
}

.use-case-herausforderungen li::before {
    content: "■";
    position: absolute;
    left: 0;
    transform: rotate(45deg);
    color: #33a6df;
    font-size: 1.2em;
}

.use-case-ansatz li::before,
.use-case-ergebnis li::before {
    content: "";
    position: absolute;
    left: 0;
    width: 20px;
    height: 20px;
    border: 2px solid #33a6df;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1em;
}

.use-case-ansatz li::before {
    content: "✔";
    color: #33a6df;
}

.use-case-ergebnis li::before {
    content: "✔";
    color: #33a6df;
}


.use-case-text ul{
    margin: 0;
    padding: 0;
	margin-bottom: 20px;
}
.use-case-text ul li{
    font-size: 21px;
}
.use-case-content h4 {
    margin-bottom: 10px;
    font-size: 25px;
}
.herausforderung-container, .ansatz-container, .ergebnis-container, .einleitungstext-container{
	padding: 15px;
	margin-top: 8px;
}
.einleitungstext-container{
	background-color: #fff;
}
.herausforderung-container{
	background-color: #f7e6ff;
}
.ansatz-container{
	background-color: #d8eef7;
}
.ergebnis-container{
	background-color: #e9e9e9;
}