#adminmenu div.wp-menu-image img {
    max-height: 18px;
}



/* Grid-Layout für verschiedene Bildschirmgrößen */
@media (min-width: 600px) {
    .bob-feature-blurb-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 900px) {
    .bob-feature-blurb-container {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1200px) {
    .bob-feature-blurb-container {
        grid-template-columns: repeat(4, 1fr);
    }
    #features-start .bob-feature-blurb-container {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* Single Feature
---------------------------------------*/

.feature-content-area {
    max-width: 1920px;
    width: 92%;
    margin: 0 auto;
}

.feature-header {
    background-image: linear-gradient(180deg, rgba(44, 46, 61, 0.7) 0%, rgba(44, 46, 61, 0.7) 98%), url(/wp-content/uploads/2024/01/header-bg-einzeln-neutral.png);
    background-size: cover;
    color: #fff;
    padding: 40px;
    border-radius: 25px;
    display: flex;
    align-items: center;
}

.feature-header .material-symbols-rounded {
    font-size: 50px;
    color: var(--green);
    margin-right: 10px;
}

.feature-header h1 {
    color: #fff;
    padding-bottom: 0;
}

.feature-content {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    color: #b7b7b7;
    padding: 50px 0;
}

.feature-content-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 50px;
}

@media (min-width: 600px) {
    .feature-header {
        padding: 80px;
    }
    .feature-content {
        width: 80%;
    }
    .feature-content-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* Feature Blurb
---------------------------------------*/

.bob-container {
    margin: 40px auto;
    max-width: 1400px;
}

@media (min-width: 600px) {
    .bob-container {
        margin: 80px auto;
    }
}

.bob-feature-blurb-container {
    display: grid;
    gap: 30px;
}

.bob-feature-blurb-container h3 {
    padding-bottom: 0;
    margin-bottom: 10px;
    color: #fff;
    line-height:28px;
}

.bob-feature-blurb.promoted {
    background-color: #0055FF;;
}

.bob-feature-blurb {
    background-color: var(--grey-400);
    border-radius: 15px;
    padding: 1em;
    position: relative;
    display: block;
    overflow: hidden;
    cursor: pointer;
    flex: 0 0 300px;
}

.bob-feature-blurb a {
    text-decoration: none;
    color: #b7b7b7;
}

.bob-feature-blurb-content {
    z-index:1;
    position: relative;
}

.promoted .feature-blurb-icon {
    color: #fff;
}

.feature-blurb-icon {
    color: var(--green);
    width: 100px;
    height: 100px;
    margin-bottom: 20px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index:1;
    position: relative;
    font-size: 40px;
    transition: all ease-in-out 400ms;
}

.feature-blurb-icon .material-symbols-rounded {
    font-size: 40px;
}

.feature-blurb-icon-bg {
    background-color: var(--grey-600);
    width: 100px;
    height: 100px;
    position: absolute;
    left:1em;
    top:1em;
    border-radius: 50%;
    z-index: 0;
    transition: all ease-in-out 400ms;
}

.promoted .feature-blurb-icon-bg {
    background-color: #1A66FF;
}

.bob-feature-blurb:hover .feature-blurb-icon-bg {
    transform: scale(10.0);
}

.promoted .hidden-seven {
    position: absolute;
    right: 25px;
    top: 25px;
    height: 100px;
    width: 100px;
    z-index: 1;
}

.line-clamp-1 {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.line-clamp-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
