  /* Container gives padding and ensures the hero stands out */
  .photo-hero-wrap {
    position: relative;
    width: 100%;
    padding: 0;
    /* full bleed */
    margin-bottom: 2rem;
  }

  /* Horizontal scrolling grid */
  .photo-hero-gallery {
    display: flex;
    gap: 0.75rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 0.5rem 1rem;
    -webkit-overflow-scrolling: touch;
  }

  /* Fade edges for nicer scroll experience */
  .photo-hero-wrap::before,
  .photo-hero-wrap::after {
    content: "";
    position: absolute;
    top: 0;
    width: 40px;
    height: 100%;
    pointer-events: none;
    z-index: 3;
  }

  .photo-hero-wrap::before {
    left: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
  }

  .photo-hero-wrap::after {
    right: 0;
    background: linear-gradient(to left, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
  }

  /* Each item */
  .photo-hero-item {
    flex: 0 0 auto;
    width: 90%;
    max-width: 500px;
    scroll-snap-align: start;
    border-radius: 1rem;
    overflow: hidden;
    position: relative;
  }

  /* Image styling */
  .photo-hero-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
  }

  /* Hover zoom on desktop */
  @media (hover: hover) {
    .photo-hero-item:hover img {
      transform: scale(1.05);
    }
  }

  /* Desktop: show 2–3 images at once if space allows */
  @media (min-width: 900px) {
    .photo-hero-item {
      width: 33%;
      max-width: none;
    }
  }

  .photo-hero-wrap.single .photo-hero-gallery {
    display: block;
    overflow-x: hidden;
  }

  .photo-hero-wrap.single .photo-hero-item {
    width: 100%;
  }

  .photo-hero-wrap.single .photo-hero-item img {
    height: 400px;
    border-radius: 0;
  }

  .important-dates .card {
    background: #fff;
    border-radius: 14px;
    padding: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .06);
  }

  .section-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 12px;
  }

  .dates-list {
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .date-row {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
  }

  .date-row:last-child {
    border-bottom: none;
  }

  .date-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
  }

  .date-label {
    font-weight: 500;
  }

  .date-value {
    font-weight: 600;
  }

  .date-meta {
    font-size: .9rem;
    color: #666;
    margin-top: 4px;
  }

  .date-note {
    font-size: .85rem;
    color: #888;
  }

  .date-badge {
    background: #f3f4f6;
    font-size: .75rem;
    padding: 3px 8px;
    border-radius: 999px;
  }

  .link {
    color: #0a66c2;
    text-decoration: none;
  }

  .link:hover {
    text-decoration: underline;
  }

  #directory content-widget {
      height: 500px;
      overflow-x: scroll;
  }