<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Pagination styles */
.pagination {
    margin-top: 20px;
    text-align: center;
	    justify-content: center;
}

.pagination a,
.pagination span {
    display: inline-block;
    padding: 8px 16px;
    margin: 0 4px;
    background-color: #f1f1f1;
    color: #a50f14;
    text-decoration: none;
    border-radius: 0px;
}

.pagination a:hover {
    background-color: #a50f14;
    color: white;
}

.pagination .current {
    background-color: #a50f14;
    color: white;
}

.pagination .prev,
.pagination .next {
    background-color: #a50f14;
    color: white;
}
.exhibition-item h3 {
	margin: 0px;
    line-height: 1.7em;
}

/* Flex layout for exhibition items */
.exhibition-item {
    display: flex;
    flex-wrap: wrap; /* Allow items to wrap in case the content overflows */
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #ddd;
}

/* Left column: Thumbnail */
.exhibition-thumbnail-column {
    flex: 1 1 31%; /* Allow it to be flexible but with a minimum of 200px */
    max-width: 31%; /* Ensure it doesn't grow too large */
}

/* Right column: Content */
.exhibition-content-column {
    flex: 2 1 60%; /* This will be the larger column, but still flexible */
}

/* Ensure thumbnail image is responsive */
.exhibition-thumbnail {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
}

/* For better responsiveness, add some margin in mobile view */
@media (max-width: 768px) {
    .exhibition-item {
        flex-direction: column; /* Stack the columns on smaller screens */
        align-items: center;
    }

    .exhibition-thumbnail-column {
        max-width: 100%; /* Allow thumbnail to fill the width */
        margin-bottom: 1rem; /* Add margin below the thumbnail */
    }

    .exhibition-content-column {
        max-width: 100%; /* Allow content to fill the width */
    }
}
</pre></body></html>