/* ==========================================================================
   Content element "Aktionsbox (grün)" – CType pxsr_promo
   Green rounded box, white text, optional linked image.
   Brand colors: green #00963e, dark green hover #007a32
   ========================================================================== */

.promo {
    margin-bottom: 30px;
}

.promo-inner {
    background-color: #00963e;
    border-radius: 6px;
    overflow: hidden;
    color: #fff;
}

/* Text left, image right (full-bleed). Stacks on mobile. */
.promo-content {
    padding: 35px 40px;
}

@media (min-width: 768px) {
    .promo-grid {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-align-items: stretch;
        -ms-flex-align: stretch;
        align-items: stretch;
    }

    .promo-content {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 47%;
        -ms-flex: 0 0 47%;
        flex: 0 0 47%;
        max-width: 47%;
    }

    .promo-media {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 53%;
        -ms-flex: 0 0 53%;
        flex: 0 0 53%;
        max-width: 53%;
    }
}

/* Small header above the headline */
.promo-subheader {
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 13px;
    font-weight: bold;
    margin: 0 0 8px;
    opacity: 0.85;
}

/* Headline – always white regardless of the global heading colour */
.promo-title,
.promo h1,
.promo h2,
.promo h3,
.promo h4,
.promo h5 {
    color: #fff;
    margin: 0 0 12px;
}

.promo-text {
    color: #fff;
    font-size: 15px;
    line-height: 22px;
    margin-bottom: 20px;
}

.promo-text a {
    color: #fff;
    text-decoration: underline;
}

/* Button – white on the green box */
.promo-btn {
    display: inline-block;
    background-color: #fff;
    color: #00963e;
    border: 0;
    border-radius: 4px;
    font-size: 16px;
    font-weight: bold;
    padding: 11px 28px;
}

.promo-btn:hover,
.promo-btn:focus {
    background-color: #f0f0ea;
    color: #007a32;
    text-decoration: none;
}

.promo-btn .fa {
    margin-left: 8px;
}

/* Image */
.promo-media {
    text-align: center;
}

.promo-media a {
    display: block;
}

.promo-image {
    display: block;
    width: 100%;
    height: auto;
}

/* Desktop: image fills the right column edge-to-edge */
@media (min-width: 768px) {
    .promo-media,
    .promo-media a {
        height: 100%;
    }

    .promo-image {
        height: 100%;
        -o-object-fit: cover;
        object-fit: cover;
    }
}

/* --- Responsive (mobile: stacked, image below, full width) -------------- */
@media (max-width: 767px) {
    .promo-content {
        padding: 25px;
    }
}
