/* Biography Page Styles */

.biography-page .main-content {
    display: flex;
    justify-content: center;
}

.biography-page .container {
    max-width: 760px;
    width: 100%;
    padding: var(--spacing-md);
}

/* Nomade Section with Photo */
.nomade-section {
    background-color: #f8fdf9;
    padding: 48px;
    margin-bottom: 48px;
    border-left: 3px solid #a8d5ba;
}

.nomade-grid {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 48px;
    align-items: stretch;
}

/* Artist Photo */
.artist-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: 1px solid #d8e9dd;
}

/* Nomade Text */
.nomade-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.nomade-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 36px;
    font-weight: 300;
    margin: 0 0 24px 0;
    color: #3a5f47;
}

.nomade-body {
    color: #6b8076;
    line-height: 1.8;
    font-size: 16px;
    font-style: italic;
}

.nomade-body p {
    margin: 0 0 16px 0;
}

.nomade-body p:last-child {
    margin-bottom: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .nomade-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .nomade-section {
        padding: 32px;
    }

    .artist-photo img {
        max-height: 400px;
        object-fit: contain;
    }
}
