/* --- HOMEPAGE DOSSIER LAYOUT --- */
.dossier-grid {
    /* Two-column layout: 1 part for the image, 2 parts for the text */
    display: grid;
    grid-template-columns: 1fr 2fr; 
    gap: 40px;
    margin-top: 40px;
}

/* --- LEFT PANEL: IMAGE & QUICK BIO --- */
.bio-panel {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.dossier-photo-frame {
    background-color: rgba(10, 5, 5, 0.9);
    border: 1px solid #5a4a3a;
    padding: 15px;
    text-align: center;
}

.dossier-photo {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    display: block;
    margin: 0 auto 10px auto;
    /* Aesthetic: Archive photo look */
    filter: grayscale(100%); 
    transition: filter 0.3s ease;
}
.dossier-photo:hover {
    filter: none; /* Color pops on hover */
}

.dossier-title {
    font-family: 'Baksheesh', serif;
    font-size: 1.5em;
    color: #ffffff;
    margin: 0;
}

.quick-summary-box {
    padding: 15px;
    border: 1px dashed #5a4a3a;
    background-color: rgba(10, 5, 5, 0.6);
}

.quick-summary-box h3 {
    font-family: 'Baksheesh', serif;
    color: #5a4a3a;
    margin-top: 0;
    font-size: 1.1em;
}

.info-tags {
    margin-top: 15px;
}

.info-tags .tag {
    /* Reuse established tag styling */
    font-size: 0.8em;
    color: #d2c8b8; 
    border: 1px solid #5a4a3a;
    padding: 3px 8px;
    margin-right: 5px;
    display: inline-block;
    text-transform: uppercase;
}

/* --- RIGHT PANEL: STATEMENT --- */
.statement-panel {
    background-color: rgba(10, 5, 5, 0.8);
    padding: 30px;
    /* A bold sepia line separating the statement from the bio */
    border-left: 5px solid #5a4a3a; 
}

.statement-header {
    font-family: 'Baksheesh', serif;
    color: #ffffff;
    font-size: 1.8em;
    margin-top: 0;
    margin-bottom: 25px;
    letter-spacing: 1px;
    border-bottom: 2px solid #5a4a3a;
    padding-bottom: 10px;
}

.statement-text {
    line-height: 1.8;
}

.signature-line {
    font-family: 'EB Garamond', serif;
    font-style: italic;
    text-align: right;
    margin-top: 30px;
    color: #8c7a6b;
}