/* Exhibitions Page Styles */
.page--exhibitions {
  width: 100%;
  min-height: 100vh;
  padding-top: var(--header-height);
  padding-bottom: var(--bottom-space);
}

/* Centered page title with vertical space */
.page--exhibitions .page-title {
  height: var(--page-title-height);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: var(--font-weight-regular);
  margin-bottom: 0;
}

/* Exhibitions container */
.exhibitions {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-lg);
  padding-bottom: var(--spacing-lg);
}

/* Single exhibition block */
.exhibition {
  width: 100%;
}

.exhibition__header {
  margin-bottom: 0;
}

.exhibition__year {
  font-size: var(--font-size-h1);
  font-weight: var(--font-weight-regular);
  line-height: var(--line-height);
  display: block;
}

.exhibition__description {
  font-size: var(--font-size-body);
  font-weight: var(--font-weight-regular);
  line-height: var(--line-height);
  max-width: var(--max-text-width);
}

/* Exhibition images carousel */
.exhibition__images {
  width: 100%;
  height: 315px;
  display: flex;
  flex-direction: row;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.exhibition__images::-webkit-scrollbar {
  display: none;
}

/* Placeholder styles with gradient grays */
.exhibition__placeholder {
  height: 100%;
  flex-shrink: 0;
}

.exhibition__placeholder--1 {
  width: 200px;
  background-color: #d9d9d9;
}

.exhibition__placeholder--2 {
  width: 320px;
  background-color: #a3a3a3;
}

.exhibition__placeholder--3 {
  width: 320px;
  background-color: #7a7a7a;
}

.exhibition__placeholder--4 {
  flex: 1;
  min-width: 320px;
  background-color: #525252;
}

/* Responsive */
@media (max-width: 640px) {
  .exhibition__images {
    height: 215px;
  }

  .exhibition__placeholder--1 {
    width: 150px;
  }

  .exhibition__placeholder--2,
  .exhibition__placeholder--3 {
    width: 240px;
  }

  .exhibition__placeholder--4 {
    min-width: 240px;
  }
}
