/* -------------------------------------------------------------
 ABOUT PAGE STYLING
 ------------------------------------------------------------- */
.about-container {
    max-width: 1050px;
    margin: 0 auto;
    padding: 130px 22px 80px;
}

.about-header {
    margin-bottom: 56px;
    text-align: center;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}

.about-header h1 {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 600;
    letter-spacing: -0.005em;
    margin-bottom: 12px;
}

.about-lead {
    font-size: 20px;
    line-height: 1.5;
    color: var(--text-secondary);
}

/* Narrative Grid Sections */
.about-section {
    margin-bottom: 72px;
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 40px;
    align-items: center;
}

/* Reverse column layout for alternating visual flow */
.about-section.reverse {
    grid-template-columns: 380px 1fr;
}

.about-text h2 {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text-primary);
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 8px;
}

.about-text p {
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 16px;
}

.about-text p:last-child {
    margin-bottom: 0;
}

/* Image Wrappers */
.about-image-wrapper {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.about-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Full Width Section for Exhibitions */
.about-section-full {
    margin-bottom: 72px;
}

.about-section-full h2 {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 24px;
    color: var(--text-primary);
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 8px;
}

/* Timeline / Exhibition List */
.exhibitions-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.exhibition-item {
    display: flex;
    gap: 24px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.exhibition-year {
    font-weight: 600;
    color: var(--accent-blue);
    min-width: 55px;
    flex-shrink: 0;
}

.exhibition-details {
    color: var(--text-primary);
    font-size: 15px;
    line-height: 1.5;
}

.exhibition-details span {
    display: block;
    color: var(--text-secondary);
    font-size: 14px;
}

/* Responsive Stacking */
@media (max-width: 868px) {
    .about-section,
    .about-section.reverse {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .about-section.reverse .about-image-wrapper {
        order: 2; /* Keeps text above image on mobile */
    }
}

@media (max-width: 600px) {
    .exhibition-item {
        flex-direction: column;
        gap: 4px;
    }
}