.bild-und-text-widget .bild-und-text-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: center;
}

/* Wenn Bild links sein soll */
.bild-und-text-widget.image-first .bild {
    order: 0;
}
.bild-und-text-widget.image-first .text {
    order: 1;
}

/* Wenn Bild rechts (Standard) */
.bild-und-text-widget .bild {
    order: 1;
}
.bild-und-text-widget .text {
    order: 0;
}

.bild-und-text-widget .bild img {
    width: 100%;
    height: auto;
    border-radius: 6px;
    display: block;
}

.bild-und-text-widget .text h1,
.bild-und-text-widget .text h2,
.bild-und-text-widget .text h3 {
    margin-bottom: 16px;
    color: #1e3a5f;
}

.anwalt-cta-button {
    display: inline-block;
    margin-top: 20px;
    background-color: #00c8ff;
    color: #fff;
    font-weight: bold;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-family: inherit;
    transition: background-color 0.3s ease;
}

.anwalt-cta-button:hover {
    color: #fff;
    background-color: #00b5e6;
}


/* Responsiv: untereinander auf kleinen Bildschirmen */
@media (max-width: 768px) {
    .bild-und-text-widget .bild-und-text-inner {
        grid-template-columns: 1fr;
    }

    .bild-und-text-widget .bild,
    .bild-und-text-widget .text {
        order: unset;
    }
}
