.upcoming-exhibitions {
    display: flex;
    gap: 15px;
}
.upcoming-exhibitions {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.exhibition-card {
  display: flex;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.exhibition-image {
  flex: 1.2;
}

.exhibition-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.exhibition-details {
  flex: 1.8;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.exhibition-tags span {
  background: #f3f4f6;
  color: #333;
  font-size: 12px;
  padding: 5px 10px;
  border-radius: 20px;
  margin-right: 8px;
}

.exhibition-title {
  font-size: 24px;
  font-weight: 600;
  margin: 10px 0;
}

.exhibition-desc {
  color: #555;
  margin-bottom: 15px;
}

.exhibition-info p {
  margin: 4px 0;
  font-size: 15px;
  color: #444;
}

.exhibition-info i {
  color: #666;
  margin-right: 6px;
}

.exhibition-stats {
  display: flex;
  justify-content: space-between;
  background: #f9fafb;
  padding: 15px;
  border-radius: 8px;
  margin: 20px 0;
  text-align: center;
}

.exhibition-stats div strong {
  display: block;
  font-size: 18px;
  color: #000;
}

.exhibition-stats div span {
  font-size: 13px;
  color: #555;
}

.exhibition-buttons {
  display: flex;
  gap: 10px;
}

.book-btn,
.details-btn {
  text-decoration: none;
  padding: 10px 18px;
  border-radius: 6px;
  font-weight: 500;
  transition: all 0.3s;
}

.book-btn {
  background: #000;
  color: #fff;
}

.book-btn:hover {
  background: #333;
}

.details-btn {
  border: 1px solid #ccc;
  color: #333;
}

.details-btn:hover {
  background: #f3f3f3;
}

