/* Exhibition Module Styles */
.exhibition-info {
    margin-bottom: 60px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.exhibition-date {
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: bold;
    color: #333;
}

.exhibition-content {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: flex-start;
}

.exhibition-image {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
}

.exhibition-image img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.exhibition-details {
    flex: 1;
    min-width: 300px;
}

.exhibition-details h2 {
    margin-top: 0;
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 10px;
}

.exhibition-details h3 {
    font-size: 20px;
    font-weight: normal;
    margin-top: 5px;
    color: #555;
}

.exhibition-details p {
    margin-bottom: 15px;
    line-height: 1.5;
}

.exhibition-details .date-range,
.exhibition-details .opening,
.exhibition-details .location {
    font-size: 16px;
}

/* Artwork Display Module Styles */
.artwork-display {
    margin-bottom: 60px;
}

.artwork-title {
    font-size: 24px;
    margin-bottom: 20px;
}

.artwork-description {
    margin-bottom: 30px;
}

.artwork-items {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.artwork-full .artwork-item {
    width: 100%;
    margin-bottom: 30px;
}

.artwork-grid .artwork-item {
    width: calc(50% - 15px);
    margin-bottom: 30px;
}

.artwork-image img {
    max-width: 100%;
    height: auto;
}

.artwork-caption {
    margin-top: 10px;
    font-size: 14px;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .exhibition-content {
        flex-direction: column;
    }
    
    .artwork-grid .artwork-item {
        width: 100%;
    }
}
