/* --- INTERVIEW & LONG-FORM ENGINE (STABILIZED) --- */

body {
    background-color: #e2e8f0;
    margin: 0;
    padding: 0;
}

/* We removed the fixed width and padding here so Tailwind handles it */
.paper-sheet { 
    background-color: #f7e7c8;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1); 
    min-height: 100vh;
}

/* TYPOGRAPHY ENGINE */
.drop-cap::first-letter {
    float: left;
    font-family: 'Playfair Display', serif;
    font-size: 4.5rem; /* You need a size here since it's just one letter */
    line-height: 0.8;
    font-weight: 900;
    color: #f87171;
    margin-right: 0.5rem; /* Space between the big letter and the rest of the text */
    margin-top: 0.2rem;
    text-transform: uppercase;
}

/* Ensure the paragraph itself doesn't float */
.drop-cap {
    float: none; 
}
.question { 
    font-weight: 900; 
    text-transform: uppercase; 
    color: #f87171; 
    line-height: 1.1; 
    margin-bottom: 0.75rem;
}

.answer {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    text-align: justify;
}

/* For the screenshot logic to stabilize text */
.is-capturing .answer, 
.is-capturing .interview-intro {
    text-align: left !important;
    letter-spacing: -0.01em !important;
}