/* Roter Hintergrund mit Innenabstand */
.zitat-wrapper {
    background-color: #a41c2c;
    color: #ffffff;
    padding: 1rem;
    width: 100%;
    box-sizing: border-box;
}

/* Polaroid-Rahmen */
.polaroid-box {
    background-color: #ffffff;
    padding: 8px 8px 15px 8px; /* Oben/Seiten schmal, viel Platz unten */
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3); /* Leichter, weicher Schatten */
    transform: rotate(-2deg); /* Leichte Kippung */
    max-width: 220px;
    width: 100%;
    margin: 0 auto; /* Zentriert */
}

.polaroid-box img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    aspect-ratio: 1/1;
    border: none;
}

/* Signatur (Schreibschrift) */
.polaroid-signature {
    margin-top: 6px;
    font-family: 'caveat', cursive;
    font-size: 2rem;
    color: #000;
    text-align: center;
    line-height: 1;
    display: block;
}

/* Untertitel (Serifenlos) */
.polaroid-subtitle {
    font-size: 1.2rem;
    color: #1d3c86; 
    text-align: center;
    display: block;
    margin-top: 0;
}

/* Zitat-Text */
.zitat-text {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 0;
    font-weight: 400;
}

/* Mobile Anpassung (unter 768px) */
@media (max-width: 768px) {
    
    .polaroid-box {
        margin-bottom: 1.5rem;
        padding-bottom: 8px;
    }
    
    .zitat-text {
        font-size: 1rem;
        text-align: center;
    }
    
    .polaroid-signature {
        font-size: 1.5rem;
    }
}