/*
 Theme Name:   codingfrog
 Template:     twentytwentyfive
 Author:       Dein Name
 Description:  Ein Child-Theme für Twenty Twenty-Five
 Version:      1.0
 Text Domain: codingfrog
*/

#pattern-svg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.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;
}


.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;
}


/* */

.custom-carousel {
    position: relative;
    width: 100%;
    max-width: 600px; /* Adjust as needed */
    overflow: hidden;
    margin: auto;
}

.carousel-wrapper {
    display: flex;
    transition: transform 0.5s ease-in-out;

    /* Fixing weird margin added by wordpress */
    margin-block-start: 0;
    margin-block-end: 0;
}

.carousel-wrapper > div {
    min-width: 100%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    /* padding: 20px; */
    height: 200px;
}

button.prev-slide, button.next-slide {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    z-index: 10;
}

button.prev-slide {
    left: 10px;
}

button.next-slide {
    right: 10px;
}

button:hover {
    background: rgba(0, 0, 0, 0.8);
}
