.content-block-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 50px;
}

.titel-span {
    display: block;
    font-weight: 400;
}

.content-block-text {
    flex: 1;
    color: #fff;
    max-width: 47%;
}


@media (max-width: 982px) {
.content-block-text {
    max-width: 100%;
    text-align: center;
    }

    .content-block-section .content-block-image {
        width: 100%;
    }

    .content-block-image img {
        max-height: 100% !important;
    }
}

.content-block-text h2 {
    color: #fff;
    font-weight: 600;
    font-size: 40px;
    margin-bottom: 40px;
    font-family: 'Josefin Sans', sans-serif;
    line-height: 1.2;
}

.content-block-text p {
    font-size: 20px;
    font-weight: 300;
    line-height: 1.3;
    font-family: 'Josefin Sans', sans-serif;
}

.content-block-image {
    flex: 1;
    display: flex;
}

.content-block-image img {
    max-height: 585px;
    width: auto;
    height: auto;
    border-radius: 20px;
    display: block;
}

.content-block-section {
    padding: 160px 0 0;
}

@media (max-width: 786px) {
    .content-block-section {
        padding: 80px 0 0;
    }
}

.content-block-section .content-block-container {
    display: flex;
    gap: 50px;
    align-items: center;
    padding: 0 35px;
}

.content-block-section .content-block-image {
    justify-content: flex-end;
}

.content-block-section.image-left .content-block-container {
    flex-direction: row-reverse;
}

.content-block-section.image-left .content-block-image {
    justify-content: flex-start;
}

.content-block-section.image-left .content-block-image img {
    width: 70%;
}

.content-block-container::before {
    content: "";
    position: absolute;
    top: 100%;
    left: -12%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background-image: url('/wp-content/uploads/2025/10/cropped-4ef3a4d48633272748c803a0fe0a6a5fcbbb64a3.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.2;
    pointer-events: none; 
    z-index: -1;
    filter: blur(5px);
}

.content-block-container {
    position: relative;
}

.cta-button {
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    background-color: #4F7046;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    transition: background 0.3s ease;
    height: 50px;
    width: 238px;
    border: 2px solid transparent;
    font-size: 14px;
    text-transform: uppercase;
    font-family: 'Josefin Sans', sans-serif;
    cursor: pointer;
    padding-top: 2px;
}

.cta-button::after {
    content: "";
    display: inline-block;
    width: 20px;
    height: 22px;
    fill: currentColor;
    flex-shrink: 0;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 640 640'><path fill='white' d='M598.6 342.6C611.1 330.1 611.1 309.8 598.6 297.3L470.6 169.3C458.1 156.8 437.8 156.8 425.3 169.3C412.8 181.8 412.8 202.1 425.3 214.6L498.7 288L64 288C46.3 288 32 302.3 32 320C32 337.7 46.3 352 64 352L498.7 352L425.3 425.4C412.8 437.9 412.8 458.2 425.3 470.7C437.8 483.2 458.1 483.2 470.6 470.7L598.6 342.7z'/></svg>");
    background-repeat: no-repeat;
    background-size: contain;
    transform: rotate(-45deg);
    transform-origin: 50% 50%;
    transition: transform 0.55s 
cubic-bezier(.2, .9, .3, 1);
}

.cta-button:hover {
    background-color: transparent;
    border: 2px solid #fff;
    text-decoration: none;
}


.cta-button:hover::after {
    transform: rotate(0deg);
}

.cta-button a {
    text-decoration: none;
    color: #fff;
}

/* Responsive */
@media (max-width: 982px) {
    .content-block-container {
        flex-direction: column;
        gap: 30px;
    }

    .content-block-text h2 {
        font-size: 32px;
        text-align: start;
    }

    .content-block-text p {
        text-align: start;
    }

    .content-block-image {
        justify-content: center;
    }

    .content-block-image img {
        width: 100%;
    }
}