/* ==========================================================================
   SECTION MODULE (WEIßER HINTERGRUND & DUNKLE SCHRIFT)
   ========================================================================== */
.section-module h3,
.section-module .h3-sub,
.section-module .flexbox-col p {
    color: var(--meinmaturaball-darklila);
}

/* ==========================================================================
   STYLES FÜR UNTERSEITE: BALLWEBSEITEN
   ========================================================================== */

/* Modul Feature Cards (Verlinkt, Links Icon / Rechts Text) */
.bw-feature-box {
    /* Gradient von Weiß zu einem sehr zarten, hellen Lila */
    background: linear-gradient(145deg, #ffffff 0%, #dccfde 100%);
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 0px;
    box-sizing: border-box;
    text-decoration: none;
    display: flex;
    flex-direction: row; /* Icon links, Text rechts */
    align-items: flex-start;
    gap: 25px; /* Abstand zwischen Icon-Box und Text */
    box-shadow: 0 0px 10px rgba(0, 0, 0, 0.15);
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.4s ease, border-color 0.4s ease;
}

/* Hover-Effekt: Exakt 3% größer skalieren (kein Hochrutschen) */
.bw-feature-box:hover {
    transform: scale(1.03);
    box-shadow: 0 0px 12px rgba(127, 60, 141, 0.65);
}

/* Modifier für volle Breite (z.B. Sponsoren) */
.bw-feature-box.full-width {
    max-width: 100%;
    flex: 0 0 100%;
}

/* Der quadratische, abgerundete Icon-Container */
.bw-feature-icon-wrap {
    width: 160px;
    height: 160px;
    background-color: var(--meinmaturaball-darklila);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0; /* Verhindert, dass die Box vom Text gequetscht wird */
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Das SVG Icon in der Box */
.bw-feature-icon {
    height: 130px;
    width: auto;
}

/* Rechter Content-Wrapper (Headline + Text) */
.bw-feature-content {
    display: flex;
    flex-direction: column;
}

/* Headlines in den Feature Boxen */
.bw-feature-headline {
    color: var(--meinmaturaball-orange);
    font-family: 'Montserrat', sans-serif;
    font-size: 26px;
    margin-top: 10px;
    margin-bottom: 8px;
}

/* Text in den Feature Boxen */
.bw-feature-text {
    margin-bottom: 0 !important;
    font-size: 17px;
    color: var(--meinmaturaball-darklila); /* Dunkle Schrift auf heller Box */
}

/* ==========================================================================
   RESPONSIVE ANPASSUNGEN (BALLWEBSEITEN)
   ========================================================================== */

@media (max-width: 1268px) {
    .bw-feature-box { padding: 25px; gap: 20px; }
    .bw-feature-icon-wrap { width: 95px; height: 95px; border-radius: 8px; }
    .bw-feature-icon { height: 76px; }
    .bw-feature-headline { font-size: 23px; }
}

@media (max-width: 1024px) {
    .bw-feature-headline { font-size: 20px; }
	.bw-feature-icon-wrap { width: 120px; height: 120px; border-radius: 8px; }
    .bw-feature-icon { height: 100px; }
}

@media (max-width: 600px) {
    .bw-feature-box { 
        flex-direction: column; /* Auf Smartphones Icon und Text untereinander stapeln */
        padding: 25px 20px; 
        border-radius: 8px;
        align-items: center;
        text-align: center;
        gap: 15px;
    }
    .bw-feature-text { font-size: 15px; }
    .bw-feature-icon-wrap { margin: 0 auto; }
}