.single-angebot {
    padding-block: 4rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.single-angebot__header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
}

.single-angebot__title {
    font-family: var(--font-headline);
    font-size: clamp(1.75rem, 3vw, 3.5rem);
    text-transform: uppercase;
    line-height: 0.95;
    color: #fff;
}

.single-angebot__dates {
    font-size: 0.875rem;
    color: #999;
}

.single-angebot__content {
    font-size: 0.9rem;
    color: #fff;
}

.single-angebot__gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.single-angebot__img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 0.25rem;
}

.single-angebot__image {
    max-width: 480px;
}

@media (max-width: 640px) {
    .single-angebot__gallery {
        grid-template-columns: 1fr;
    }
}
