.fbitem{

    background: var(--wp--preset--color--mid);
    border-radius: var(--wp--custom--border-radius);
    overflow: hidden;

    display: flex;
    gap: var(--wp--preset--spacing--30);
    margin-bottom:  var(--wp--preset--spacing--30);
    justify-content: space-between;
    align-items: center;
    align-items: stretch; /* wichtig */
    flex-wrap: wrap;

    .content{
        padding: var(--wp--preset--spacing--30);
        width: calc(55% - var(--wp--preset--spacing--30));
        align-self: center;
    }

    figure{
        overflow: hidden;
        margin: 0;
        display: flex;
        width: calc(45% - var(--wp--preset--spacing--30));
        height: auto;

        img{
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--wp--custom--main-trans);
            border-radius: 0;
        }
    }

    &:hover{
        figure{
            img{
                scale: 1.1;
            }
        }
    }
}

@media screen and (max-width: 768px) {
    .fbitem{
        flex-direction: column-reverse;

        .content{
            width: 100%;
        }

        figure{
            width: 100%;
        }
    }
}