/* Allgemeine Anpassungen */

/* Box-Styles */
.box-image-text .image {
    min-height: 190px;
    max-height: 190px;
}

.box-image-text .image img {
    max-height: 190px;
    margin: auto;
}

.box-simple {
    min-height: 230px;
}

/*abstand zwischen dn abschnitten home */
section.bar.background-white {
    padding: 0;
    margin: 0;
}

/* Nur der Button in der see-more-section */
.see-more-section .see-more-button-container {
    text-align: center; /* Zentriert den Container */
}

.see-more-section .see-more-button {
    display: inline-block; /* Zentriert den Button selbst */
    margin: auto; /* Optional, für zusätzliche Zentrierung */
}

/*hingergrundbild im features-container auf home*/
.features-container {
    background: linear-gradient(rgba(50, 0, 70, 0.6), rgba(50, 0, 70, 0.6)), 
                url("/img/home/lila.webp") center top no-repeat;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 50px 0;
    color: rgb(233, 227, 227);
}


/* Styling für Mentoren-spezifische Container */
.content-mentoren-item {
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Verteilt Platz gleichmäßig */
    position: relative;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-sizing: border-box;
    margin-bottom: 20px;
}
/* Dynamisches Entfernen von Padding für Mentoren */
.content-mentoren-item.no-buttons {
    padding-bottom: 90px; /* Reduziertes Padding ohne Buttons */
}

.content-mentoren-item.no-buttons.no-special-offers {
    padding-bottom: 60px; /* Reduziertes Padding ohne Buttons und Sonderangebote */
}

.content-mentoren-item.no-buttons.no-special-offers.no-article-number {
    padding-bottom: 15px; /* Minimales Padding ohne Inhalte */
}

/* Dynamisches Ausblenden von Elementen */
.content-mentoren-item.no-buttons .price-buttons-container {
    display: none;
}

.content-mentoren-item.no-special-offers .special-offer-outer {
    display: none;
}

.content-mentoren-item.no-article-number .content-artikelnr {
    display: none;
}

/* Hover-Effekt für Mentoren */
.content-mentoren-item:hover {
    transform: translateY(-5px); /* Leichtes Anheben */
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2); /* Stärkerer Schatten bei Hover */
}



/* Bildbereich */
.content-mentoren-item .image {
    width: 100%;
    height: 200px;
    margin-bottom: 15px;
    overflow: hidden;
    border-top-left-radius: 8px; /* Gleiche Ecken wie der Container */
    border-top-right-radius: 8px;
}

.content-mentoren-item .image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transition: transform 0.3s ease;
}

.content-mentoren-item .image img:hover {
    transform: scale(1.05); /* Leichter Zoom bei Hover */
}

/* Short Description */
.content-mentoren-item .short-description {
    font-family: 'Quicksand Regular', 'Arial Narrow', Arial, sans-serif;
    font-size: 1.7rem;
    color: #1E2460;
    line-height: 1.5;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3; /* Beschränkt auf 3 Zeilen */
    -webkit-box-orient: vertical;
    text-align: center;
}

/* Preis und Buttons */
.content-mentoren-item .price-buttons-container {
    position: absolute;
    bottom: 15px;
    left: 15px;
    right: 15px;
}

.content-mentoren-item .price-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
    margin-bottom: 22px;
    font-size: 20px;
    font-family: 'Quicksand Bold', 'Arial Narrow', Arial, sans-serif;
}

.content-mentoren-item .price, 
.content-mentoren-item .old-price, 
.content-mentoren-item .special-price {
    font-size: 1em;
    font-weight: bold;
}

.content-mentoren-item .old-price {
    text-decoration: line-through;
    color: #999;
    margin-right: 10px;
}

.content-mentoren-item .special-price {
    color: #A3075C;
}

/* Buttons */
.content-mentoren-item .buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.content-mentoren-item .buttons.single {
    justify-content: center;
}

.content-mentoren-item .btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px 15px;
    font-size: 1rem;
    font-weight: bold;
    text-decoration: none;
    color: #fff;
    border-radius: 5px;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    word-break: break-word;
    white-space: normal;
    line-height: 1.5;
    width: calc(50% - 5px);
}

.content-mentoren-item .btn:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    opacity: 0.9;
}

.content-mentoren-item .btn-landingpage {
    background-color: #007bff;
}

.content-mentoren-item .btn-discount {
    background-color: #28a745;
}

.content-mentoren-item .btn-buy-now {
    background-color: #6e499b;
}

