﻿:root {
    --detail-accent: #eaaa00;
    --detail-copy: #f5f2e8;
    --detail-muted: rgba(245, 242, 232, 0.82);
}

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

main {
    width: min(100%, 120ch);
    margin: 0 auto;
    padding-bottom: 0;
}

.detail-page {
    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 {
    font-family: CrimsonPro, serif;
    font-weight: 200;
    font-size: var(--font-huge);
    margin: 0 0 1rem 0;
}

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

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

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

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

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: auto;
    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);
    font-weight: normal;
    text-decoration: none;
    transition: transform 120ms ease;
}

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

.back-link {
    width: fit-content;
    color: var(--gelb);
}

footer {
    background-color: #191919;
    background-image: none;
}

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

@media screen and (max-width: 68rem) {
    .detail-hero {
        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;
    }
}

