.overflow-zulassen {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

.block-steckbrief .container-inhalt {
    background-color: #F5F3ED !important;
    width: 100vw !important;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    padding: 50px 20px;
}

.block-steckbrief .container-border {
    border: 1px solid #a5a5a5;
}

.block-steckbrief .steckbrief-bild {
    flex-shrink: 0;
}

.block-steckbrief .steckbrief-bild img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 30px;
    display: block;
    

}

.block-steckbrief .steckbrief-inhalt {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 600px;
    width: 100%;
}

.block-steckbrief .steckbrief-name {
    font-family: 'Playfair Display', serif;
    font-size: 40px;
    color: #735E37;
    margin: 0;
}

.block-steckbrief .steckbrief-leitfaden p {
    font-family: "Bad Script", cursive;
    font-size: 22px;
    color: #222222;
    margin: 0;
    line-height: 1.4;
}

.block-steckbrief .steckbrief-merkmale {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    width: 100%;
}

.block-steckbrief .steckbrief-merkmal {
    display: flex;
    align-items: center;
    gap: 10px;
    width: calc(50% - 15px);
    min-width: 220px;
}

.block-steckbrief .merkmal-icon {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
}

.block-steckbrief .merkmal-text {
    color: #735E37;
    font-size: 16px;
    line-height: 1.2;
}

.block-steckbrief .steckbrief-kontakt {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 10px;
}

.block-steckbrief .steckbrief-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.block-steckbrief .steckbrief-contact-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.block-steckbrief .steckbrief-contact-link {
    text-decoration: none;
    color: #222222;
    font-size: 16px;
    transition: color 0.2s ease-in-out;
}

.block-steckbrief .steckbrief-contact-link:hover {
    color: #735E37;
}

@media (max-width: 1100px) {
    .block-steckbrief .container-inhalt {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .block-steckbrief .steckbrief-merkmal {
        justify-content: center;
        width: 100%;
    }

    .block-steckbrief .steckbrief-contact-item {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .block-steckbrief .steckbrief-name {
        font-size: 32px;
    }
    
    .block-steckbrief .container-inhalt {
        padding: 30px 15px;
    }
}