/* --- LOOKBOOK ARCHIVE CONTAINER --- */
.lookbook-archive {
    display: flex;
    flex-direction: column;
    gap: 60px; /* Large space between separate outfit posts */
    margin-top: 40px;
}

/* --- THE OUTFIT POST CARD (The Dossier) --- */
.outfit-post {
    display: grid;
    /* Two columns: 1.5 parts for the image, 1 part for the data */
    grid-template-columns: 1.5fr 1fr; 
    gap: 30px;
    
    background-color: rgba(10, 5, 5, 0.9);
    border: 1px solid #5a4a3a;
    padding: 25px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.4);
}

/* --- LEFT PANEL: MEDIA GALLERY --- */
.media-gallery {
    display: flex;
    flex-direction: column;
}

.main-image-container {
    width: 100%;
    /* Forces a specific ratio for the main viewing window */
    aspect-ratio: 3 / 4; 
    overflow: hidden;
    position: relative;
    border: 1px solid #5a4a3a;
}

/* Image styling: Object-fit ensures the image fills the container without stretching */
.main-image {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    transition: filter 0.3s ease;
}

.main-image:hover {
    filter: brightness(1.1) contrast(1.05);
}

.thumbnail-tray {
    display: flex;
    gap: 10px;
    padding-top: 10px;
}

.thumbnail {
    width: 60px;
    height: 60px;
    cursor: pointer;
    opacity: 0.6;
    border: 2px solid transparent;
    transition: all 0.2s ease;
}

.thumbnail:hover, .thumbnail.active {
    opacity: 1;
    border-color: #d2c8b8;
}


/* --- RIGHT PANEL: DATA MANIFEST --- */
.description-panel {
    color: #d2c8b8;
}

.data-header {
    font-family: 'Baksheesh', serif;
    color: #ffffff;
    font-size: 1.5em;
    margin-bottom: 5px;
}

.philosophy {
    font-size: 0.95em;
    font-style: italic;
    color: #8c7a6b;
    border-bottom: 1px solid #332a22;
    padding-bottom: 15px;
    margin-bottom: 20px;
}

.garment-list {
    list-style: none;
    padding: 0;
}

.garment-list li {
    font-size: 0.9em;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.garment-list li::before {
    content: '-';
    color: #d2c8b8;
    position: absolute;
    left: 0;
}