.hero {
    background-color: var(--color-beige);
    color: var(--color-rose);
    text-align: center;
    padding: 4rem 2rem 3rem;
    margin-bottom: 2rem;
}

.hero-banner {
    aspect-ratio: 446 / 167;
    width: 100%;
    max-width: 320px;
    height: auto;
    display: block;
    margin: 0 auto 2rem;
    object-fit: contain;
    box-shadow: inherit;
}

.hero-title {
    font-family: 'Garet', sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.2rem;
    font-size: 2rem;
    line-height: 1.8;
    color: var(--color-rose);
    margin-bottom: 1rem;
}


#hero-subtitle {
    font-family: 'Glacial Indifference', sans-serif;
    font-size: 1.6rem;
    font-weight: 300;
    color: var(--color-rose);
    letter-spacing: 0.05rem;
    text-transform: none;
    margin-top: 0;
    margin-bottom: 2rem;
    background: none;
    border: none;
    padding: 0;
    display: block;
    align-items: initial;
    gap: 0;
}

.hero-slogan {
    background: var(--color-white);
    border-left: 4px solid var(--color-rose);
    padding: 1.4rem 1.8rem;
    border-radius: 10px;
    box-shadow: var(--shadow-default);
    font-style: normal;
    font-size: 1.1rem;
    line-height: 1.65;
    max-width: 65ch;
    margin: 0 auto 3rem;
    text-align: left;
    color: var(--color-text);
    min-height: 11rem;
}
.hero-slogan strong {
    color: var(--color-rose);
    font-weight: 600;
}

.blockquote-deco {
    font-style: italic;
    font-size: 1.1rem;
    color: var(--color-text);
    margin: 2.5rem auto;
    text-align: center;
    max-width: 800px;
    padding: 0.2rem 1.2rem;
    position: relative;
    line-height: 1.6;
    background: none;
    border: none;
    box-shadow: none;
}

.blockquote-deco::before,
.blockquote-deco::after {
    content: '"';
    font-family: Georgia, serif;
    font-size: 2.5rem;
    color: var(--color-rose);
    position: relative;
    top: 0.5rem;
    margin: 0 0.2rem;
    opacity: 0.8;
}

.blockquote-deco::before {
    content: '“';
}

.blockquote-deco::after {
    content: '”';
}


/* Teasers */
.teaser-text p {
    text-align: left;
    margin-bottom: 1.2rem;
}

.teaser-text .btn {
    margin-top: 0.5rem;
}


.teaser-wrapper {
    text-align: center;
    align-items: flex-start;
}

.teaser-wrapper p {
    text-align: left;
}

.teaser-wrapper:not(.reverse) .teaser-image img {
    transform: translateY(5px);
}

.teaser-wrapper.reverse .teaser-image img {
    transform: translateY(-5px);
}

.teaser-image img {
    transition: transform var(--transition);
}

img.bw {
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

img.bw:hover {
    filter: grayscale(0%);
}


@media (max-width: 768px) {
    .teaser-wrapper {
        flex-direction: column-reverse;
    }

    .teaser-wrapper.reverse {
        flex-direction: column-reverse;
    }
    .hero-slogan {
        font-size: 1rem;
    }
}

