.hero {
    min-height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 1px;
    background-size: cover;
    background-position: center;
    border: 1px solid #8bc34a;
    border-radius: 4px;
}

.hero__overlay {
    width: 100%;
    min-height: auto;
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.35);
}

/* Bilderbereich */
.hero__images {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin: 1rem 0;
}

.hero__images img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 4px;
    display: block;
}

/* Inhaltsbereich */
.hero__content {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 1.5rem;
}

.hero__content h6 {
    border: 1px solid #8bc34a;
    padding: 0.75rem 1rem;
    background-color: #f2f2f2;
    border-radius: 4px;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--color-text-black);
    margin-bottom: 1rem;
}

/* Fließtext */
.hero__text {
    color: #1f2d3d;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.7;
    margin-top: 0;
    background: transparent;
    padding: 0;
    border: none;
}

.hero__text p {
    margin: 0 0 1rem 0;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.7;
}

.hero__content img {
    margin-bottom: 0;
    margin-top: 10px;
}

/* Tablet */
@media (max-width: 768px) {
    .hero__images {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Smartphone */
@media (max-width: 480px) {
    .hero__images {
        grid-template-columns: 1fr;
    }
}