.exhibition-section {
  padding: 4rem 1.5rem;
  background: linear-gradient(135deg, #9b8af0, #201366);
  color: #1a1a1a;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  border-top-left-radius: 70% 22%;
  border-top-right-radius: 70% 22%;
  overflow: hidden;
}


.exhibition-header {
text-align: center;
margin-bottom: 3rem;
}


.exhibition-header h2 {
  font-size: 2.75rem;
  margin-bottom: 0.5rem;
}


.exhibition-header h2 span {
  color: #393939;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 1);
}


.exhibition-tagline {
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}


.exhibition-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}


.exhibition-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 1.5rem 1.75rem;
  border: 2px solid rgba(240, 138, 36, 0.25);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}


.exhibition-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.18);
  border-color: rgba(240, 138, 36, 0.6)
}


.exhibition-card h3 {
  margin-bottom: 0.75rem;
  font-size: 1.3rem;
  color: #f08a24;
}


.exhibition-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}


.exhibition-card li {
  margin-bottom: 0.6rem;
  line-height: 1.45;
}


.exhibition-card strong {
  color: #333333;
}


.exhibition-card.highlight {
  background: linear-gradient(135deg, #1a1a1a, #333333);
  color: #ffffff;
  border: 2px solid rgba(246, 196, 83, 0.45);
}


.exhibition-card.highlight h3 {
  color: #f6c453;
}


.exhibition-card.highlight strong {
  color: #f6c453;
}


@media (max-width: 600px) {
  .exhibition-header h2 {
    font-size: 2.1rem;
  }
}