:root {
    --detail-accent: #eaaa00;
    --detail-copy: #f5f2e8;
}

body {
    background-color: #191919;
    background: #191919;
    color: var(--detail-copy);
}

.detail-page {
    width: min(100%, 120ch);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    padding-bottom: 4rem;
}

.detail-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(18rem, 0.9fr);
    gap: 2rem;
    align-items: start;
}

.detail-copy h1,
.detail-facts h2 {
    font-family: CrimsonPro, serif;
    font-weight: 200;
}

.detail-copy h1 {
    font-size: var(--font-huge);
    margin: 0 0 1rem 0;
}

.detail-copy p,
.detail-facts p {
    font-family: Roboto, sans-serif;
    color: #fff;
    font-size: var(--font-normal);
    line-height: 140%;
    margin: 0;
}

.detail-copy {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.detail-copy a,
.back-link {
    color: var(--gelb);
}

.detail-visual img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 1.5rem;
}

.detail-facts {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
}

.detail-facts > div {
    padding: 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.04);
}

.detail-facts h2 {
    font-size: var(--font-large);
    margin: 0 0 0.75rem 0;
}

.detail-cta {
    display: flex;
    justify-content: center;
    width: 100%;
}

#Impressionen {
    width: 100%;
    margin: 0 0 4rem 0;
}

section#Impressionen div {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    height: fit-content;
    width: 100%;
    gap: var(--font-large) var(--font-larger);
}

#Impressionen h2 {
    font-family: CrimsonPro, serif;
    font-weight: 200;
    font-size: var(--font-larger);
    width: 100%;
    text-align: center;
    margin: 0 0 var(--font-larger) 0;
}

#Impressionen picture {
    display: block;
    border-radius: 12px;
    width: clamp(12rem, 100%, 25rem);
    overflow: hidden;
}

#Impressionen img {
    width: 100%;
    border-radius: 12px;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1.5rem;
    border-radius: 12px;
    border: 1px solid transparent;
    background: var(--detail-accent);
    color: #191919;
    font-family: CrimsonPro, serif;
    font-size: var(--font-large);
    text-decoration: none;
    transition: transform 120ms ease;
}

.button:hover {
    transform: translateY(-2px);
}

.back-link {
    width: fit-content;
}

footer,
.footer_container,
.footer_websolution,
.footer_impressum_datenschutz {
    background-color: #191919;
    background-image: none;
}

@media screen and (max-width: 68rem) {
    .detail-hero,
    .detail-facts {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 48rem) {
    main {
        padding: 1.25rem;
        padding-bottom: 3rem;
    }

    .detail-copy h1 {
        font-size: var(--font-larger);
    }

    .button {
        width: 100%;
        max-width: 24rem;
    }

    #Impressionen picture,
    #Impressionen img {
        border-radius: 8px;
    }
}
