/* 🌟 Glas-Optik Container */
.is-style-glass-box {
    width: 100%;
    max-width: 100%;
    padding: 30px;
    border-radius: 14px;
    background: rgba(230, 193, 252, 0.16); /* Transparenz */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); /* Schatten */
    backdrop-filter: blur(15px); /* Glas-Effekt */
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
}


.content-box {
    width: 100%;
    max-width: 776px;
    background: white;
    border-radius: 8px;
    padding: 24px 30px;
    display: flex;
    flex-wrap: nowrap;
}

/* 🌟 Text-Spalte */
.text-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* 🌟 Text-Container */
.text-content {
    max-width: 356px;
}

/* 🌟 Titel */
.text-title {
    font-size: 24px;
    font-weight: 700;
    color: black;
    margin: 0;
}

/* 🌟 Fließtext */
.text-body {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.4;
    color: black;
    margin-top: 10px;
}

/* 🌟 Bild-Spalte */
.image-column {
    width: 32%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* 🌟 Bild-Styling */
.blob-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

/* 🌟 Glas-Button Container */
.glass-button-container {
    display: flex;
    justify-content: center;
}

/* 🌟 Glas-Button */
.glass-button .wp-block-button__link {
    padding: 12px 24px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}

/* 🌟 Hover-Effekt */
.glass-button .wp-block-button__link:hover {
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.3);
}

