#page-container #main-content .machines-overviw-blog-section {
    background: var(--color-dark-grey);
}

.machines-overviw-blog-section h1 {
    padding-bottom: 0px;
}

.machines-overview-container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-auto-rows: 1fr;
    grid-gap: 68px;
}

.machines-overview-container .machine-tile {
    background-color: #262825;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 40px;
    transition: 0.4s;
}

.machines-overview-container .machine-tile:last-child {
    background-image: url(/wp-content/themes/child-theme/images/bild_box_vorratsmaschinen_hoch.png);
    background-repeat: no-repeat;
    background-size: cover;
}

.machines-overview-container .last-machine .machine-tile div {
    z-index: 1
}

.machines-overview-container .last-machine .machine-tile::after {
    content: "";
    background-color: #3639367d;
    background-size: 100%;
    width: 100%;
    height: 100%;
    display: block;
    transition: 0.5s;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
}

.machines-overview-container .last-machine .machine-tile:hover::after {
    content: "";
    background-color: #363936c4;
    background-size: 100%;
    width: 100%;
    height: 100%;
    display: block;
    transition: 0.5s;
}

.last-machine .machine-tile {
    height: 100%;
    position: relative;
}

.machines-overview-container .machine-tile:hover {
    background-color: #1b1d1b;
}

@media (min-width: 768px) {
    .machines-overview-container .machine-tile:hover .stroke-text {
        background-size: 220% 100%;
    }
}

.machines-overview-container .machine-tile img {
    align-self: center;
    padding-block: 60px;
    max-height: 600px;
    object-fit: contain;
}

.machines-overview-container .machine-tile div>h5.subheadline {
    color: var(--color-white);
    font-family: var(--font-family-regular);
    line-height: 40px;
}

.machines-overview-container .machine-tile div>h5.subheadline::before {
    content: url(/wp-content/themes/child-theme/images/pfeil_headline_gruen.svg);
    display: inline-block;
    width: 20px;
    margin-right: 10px;
    transition: rotate 0.4s;
}

.machines-overview-container .machine-tile:hover div>h5.subheadline::before {
    rotate: 90deg;
}

.machines-overview-container .machine-tile div>h5.subheadline strong {
    font-weight: unset;
    white-space: pre;
}

.machines-overview-container .machine-tile div>h5.subheadline strong::before {
    content: '\A';
}

.machines-overview-container .machine-tile div>p {
    color: var(--color-white);
    font-size: var(--font-size-p);
}

.machines-overview-container .machine-tile div>p {
    color: var(--color-white);
    font-size: var(--font-size-p);
}

.archive .info-module h2 {
    padding-bottom: 0px;
}

.archive.et-db #et-boc .et-l .et_pb_image .et_pb_image_wrap {
    display: initial;
}


.archive.et-db #et-boc footer.et-l .et_pb_section {
    padding: 25px 0px;
}

@media only screen and (max-width: 1500px) {
    .machines-overview-container {
        grid-template-columns: 1fr 1fr;
        grid-gap: 50px;
    }
}

@media only screen and (max-width: 980px) {
    .machines-overview-container .machine-tile div>h5.subheadline {
        line-height: var(--line-height-subheadline);
    }
}

@media only screen and (max-width: 767px) {
    .machines-overview-container .machine-tile div>h5.subheadline::before {
        width: 13px;
    }

    .machines-overview-container {
        grid-template-columns: 1fr;
        grid-gap: 30px;
    }

    .machines-overview-container .machine-tile {
        padding: 24px;
    }

    .machines-overview-container .machine-tile:hover div>h5.subheadline::before {
        rotate: 0deg;
    }

}