.galleryhero {
    width: 100%;
}

.galleryhero h2 {
    text-align: center;
    margin-bottom: 1.5rem;
}

.galleryhero h3 {
    margin: 1.5rem 0 1rem;
    padding-left: 0.75rem;
    border-left: 4px solid #B5121B;
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.3;
}

.galleryhero__images {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.galleryhero__item {
    overflow: hidden;
    border-radius: 6px;
}

.galleryhero__images img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    display: block;
    border-radius: 6px;
    transition: transform 0.2s ease;
}

.galleryhero__images img:hover {
    transform: scale(1.03);
}

.galleryhero__text {
    line-height: 1.7;
}

.galleryhero__text p:first-child {
    margin-top: 0;
}

/* Tablet */

@media (max-width: 1024px) {

    .galleryhero__images {
        grid-template-columns: repeat(3, 1fr);
    }

}

/* Kleines Tablet */

@media (max-width: 768px) {

    .galleryhero__images {
        grid-template-columns: repeat(2, 1fr);
    }

    .galleryhero__images img {
        height: 140px;
    }

}

/* Handy */

@media (max-width: 480px) {

    .galleryhero__images {
        grid-template-columns: repeat(2, 1fr;
    }

    .galleryhero__images img {
        height: 120px;
    }

}