/* -------------------------------------------------------
   GLOBAL: Aktionen Container
-------------------------------------------------------- */
.aktion {
    background: #fff;
    padding: 40px 30px;
    margin: 50px auto;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    max-width: 1200px;
}

/* Buttons */
.aktion .btn {
    background: #555;
    border: none;
    padding: 10px 18px;
    font-weight: 600;
    border-radius: 6px;
    margin-bottom: 10px;
}

.aktion .btn:hover {
    background: #333;
}

/* Bilder */
.aktion img.aktion-img,
.aktion img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Titel */
.aktion h1, .aktion h2, .aktion h3 {
    font-weight: 700;
    margin-bottom: 0.6em;
}

/* Abstände in Texten */
.aktion p {
    font-size: 1.1em;
    line-height: 1.5;
}


/* -------------------------------------------------------
   Layout: BIG BOX
-------------------------------------------------------- */

.aktion.big-box .row {
    align-items: center;
}

.aktion.big-box .col-md-6:first-child {
    text-align: center;
}

@media (max-width: 768px) {
    .aktion.big-box {
        padding: 20px;
    }

    .aktion.big-box h1 {
        font-size: 1.6rem;
    }

    .aktion.big-box .col-md-6:first-child {
        margin-bottom: 20px;
    }
}


/* -------------------------------------------------------
   Layout: MINIMAL
-------------------------------------------------------- */
.aktion.minimal {
    text-align: center;
}

.aktion.minimal h2 {
    margin-bottom: 10px;
}

.aktion.minimal p {
    margin-bottom: 20px;
}



/* -------------------------------------------------------
   Layout: IMAGE LEFT
-------------------------------------------------------- */

.aktion.image-left img {
    max-width: 95%;
}

.aktion.image-left .row {
    align-items: center;
}

@media (max-width: 768px) {
    .aktion.image-left .col-md-4 {
        text-align: center;
        margin-bottom: 15px;
    }
}


.aktion-badge {
    display: inline-block;
    background: #d72859;
    color: #fff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.9em;
    margin-bottom: 15px;
    font-weight: bold;
}

