.poster-container {
    width: 100%;
    margin: 0;
    padding: 0;
}

.poster-image-wrapper {
    position: relative;
    width: 100%;
    height: 100vh; /* Oder z. B. 80vh */
    overflow: hidden;
}



.poster-image {
    position: absolute;
    top: -6%;         /* hebt das Bild 7% über den oberen Rand */
    height: 106%;     /* füllt das Element + 10% für Beschnitt oben + unten */
    width: 100%;
    object-fit: cover;
    display: block;
    z-index: 0;
}



.poster-overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
    pointer-events: none;
}



.poster-text {
    position: absolute;
    top: 10%;
    left: 50%;
    transform: translate(-50%, 0);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: white;
    font-family: 'Inter Tight', sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-weight: 400;
    z-index: 2;
    padding: 0 10px;
    line-height: 1.05;
}



.poster-line1 {
    font-size: 7vw;
    font-weight: 800;      /* Sehr fett */
    font-style: italic;    /* Kursiv */
    letter-spacing: 2px;
    margin-bottom: 0.1em;
}

.poster-line2 {
    font-size: 4.5vw;
    font-weight: 600;      /* Fett, aber etwas leichter als Zeile 1 */
    font-style: italic;
    margin-bottom: 0.05em;
}

.poster-line3 {
    font-size: 4.5vw;      /* Gleich groß wie Zeile 2 */
    font-weight: 400;      /* Normale Stärke */
    font-style: italic;
}





.poster-cta-button {
    color: white;
    background-color: #ed1c24;
    border: none;
    border-radius: var(--border-radius, 8px);
    padding: 0.4em 0.6em;
    text-align: center;
    font-family: 'Inter Tight', sans-serif;
    font-weight: 400; /* NICHT fett */
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    margin-top: 1em;
    text-decoration: none; /* für <a> */
    display: inline-block; /* wichtig für <a> Styling */
}


/* Hover-Effekt */
.poster-cta-button::after {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(255, 255, 255, 0.1);
    opacity: 0;
    transition: opacity 0.2s ease;
    border-radius: inherit;
    pointer-events: none;
}

.poster-cta-button:hover::after {
    opacity: 1;
}

/* Größenvarianten */
.poster-cta-small {
    font-size: 1.1rem;
}

.poster-cta-medium {
    font-size: 1.3rem;
}

.poster-cta-large {
    font-size: 3rem;
}


