/* ============================
   EXPOSITIONS LIST PAGE
   ============================ */

/* Shared container */
.expo-container {
  max-width: 1300px;
  margin: 0 auto;
}

/* ---------- Page heading ---------- */

.expo-hero {
  padding: 60px 0 24px;
}

.expo-heading {
  font-size: 40px;
  text-transform: uppercase;
  font-weight: 500;
}

/* ---------- List & cards ---------- */

.expo-list-section {
  padding: 0 0 60px;
}

.expo-card {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.4fr);
  gap: 32px;
  padding: 40px 0;
  border-bottom: 1px solid #eee;
}

.expo-card:first-of-type {
  border-top: 1px solid #eee;
}

.expo-card-image {
  display: block;
  overflow: hidden;
}

.expo-card-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.expo-card-content {
  display: flex;
  flex-direction: column;
}

.expo-card-title {
  font-size: 32px;
  font-weight: 500;
  margin: 0 0 16px;
}

.expo-card-title a {
  color: #000;
  text-decoration: none;
}

.expo-card-title a:hover {
  text-decoration: underline;
}

.expo-meta-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  font-size: 15px;
}

.expo-meta-icon {
  width: 24px;
  height: 24px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.expo-meta-text {
  font-size: 15px;
}

.expo-card-description {
  font-size: 15px;
  line-height: 1.6;
  margin: 16px 0 20px;
}

.expo-card-link {
  font-size: 15px;
  text-transform: uppercase;
  text-decoration: underline;
  margin-top: auto;
  font-weight: 600;
  display: inline-block;
}

/* ---------- Empty state ---------- */

.expo-empty {
  padding: 40px 0 60px;
  font-size: 15px;
  color: #666;
}

/* ---------- Blue CTA strip ---------- */

.expo-help-cta {
  background: #003B8B;
  color: #fff;
  padding: 48px 0 52px;
  text-align: center;

  /* full-bleed like homepage strip */
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.expo-help-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
}

.expo-help-title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 18px;
}

.expo-help-text {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 24px;
}

.expo-help-btn {
  display: inline-block;
  padding: 10px 26px;
  border-radius: 2px;
  background: #ffffff;
  color: #003B8B;
  font-size: 14px;
  text-decoration: none;
  border: none;
}

/* ---------- Responsive tweaks ---------- */

@media (max-width: 992px) {
  .expo-card {
    grid-template-columns: minmax(0, 1fr);
    gap: 20px;
    padding: 32px 0;
  }

  .expo-card-image {
    order: -1; /* image on top on tablet/mobile */
  }

  .expo-heading {
    font-size: 32px;
  }
}

@media (max-width: 768px) {
  .expo-container {
    padding: 0 16px;
  }

  .expo-heading {
    font-size: 28px;
  }

  .expo-card-title {
    font-size: 24px;
  }

  .expo-help-cta {
    padding: 36px 0 40px;
  }
}

/* ---------- Detail page layout (image + info) ---------- */

.expo-detail-main {
  padding: 40px 0 32px;
}

.expo-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1.2fr);
  gap: 40px;
  align-items: flex-start;
}

.expo-detail-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 2px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.18);
}

.expo-detail-info-block {
  display: flex;
  flex-direction: column;
}

.expo-detail-description {
  margin-top: 18px;
  font-size: 15px;
  line-height: 1.6;
}

/* responsive */
@media (max-width: 992px) {
  .expo-detail-layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 24px;
  }
}