/* Additions for the Laravel-driven version of the site (database-fed sections). */

/* Popup that shows an admin-uploaded flyer image */
.popup-card.popup-card-image {
  width: min(560px, 94vw);
  padding: 0;
  border-top: 0;
  background: #fff;
  line-height: 0;
}
.popup-card.popup-card-image::before {
  display: none;
}
.popup-card.popup-card-image img {
  display: block;
  width: 100%;
  max-height: 92vh;
  object-fit: contain;
}
.popup-card.popup-card-image .popup-close {
  z-index: 2;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
  line-height: 1;
}

/* Whole card is a link (programme gallery grid / year photos) */
.gallery-grid .fig-link,
.year-photo-grid .fig-link {
  display: block;
  width: 100%;
  height: 100%;
  color: inherit;
  text-decoration: none;
}
.gallery-grid figure {
  cursor: pointer;
}

.year-caption {
  display: block;
  margin-top: 6px;
  color: #52627a;
  font-weight: 600;
}

/* Testimonial "watch video" link */
.alumni-video {
  color: var(--gold, #f1c84b);
  font-weight: 700;
  text-decoration: none;
}
.alumni-video:hover {
  text-decoration: underline;
}

/* Notice archive pages */
.notice-archive .heading-row {
  align-items: flex-end;
}
.notice-search {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: min(320px, 100%);
  color: #52627a;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.notice-search input {
  padding: 12px 14px;
  border: 1px solid #c9d5e6;
  background: #fff;
  font: inherit;
  font-size: 0.95rem;
  letter-spacing: normal;
  text-transform: none;
}
.notice-archive .notice-list {
  max-width: none;
}
.notice-empty {
  padding: 24px 0;
  color: #52627a;
}
