/* Start custom CSS for html, class: .elementor-element-b9f3269 *//* ================= ACTIVITY SECTION ================= */

.activity-section {
  padding: 50px 16px;              /* less side padding on phone */
  background: #f8fafc;
  text-align: center;
}

.activity-title {
  font-size: 32px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 10px;
}

.activity-desc {
  max-width: 900px;
  margin: 0 auto 36px;
  font-size: 16px;
  color: #4b5563;
  line-height: 1.7;
}

/* ================= GALLERY ================= */

.horizontal-reel-gallery {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

/* ================= IMAGE CARD ================= */

.reel-horizontal {
  aspect-ratio: 16 / 10;
  border-radius: 16px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 10px 24px rgba(0,0,0,0.14);
}

.reel-horizontal img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

/* Hover (desktop only) */
@media (hover: hover) {
  .reel-horizontal img:hover {
    transform: scale(1.08);
  }
}

/* ================= TABLET ================= */

@media (max-width: 992px) {
  .horizontal-reel-gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }

  .activity-title {
    font-size: 26px;
  }
}

/* ================= MOBILE (PHONE FRIENDLY) ================= */

@media (max-width: 600px) {

  .activity-section {
    padding: 40px 14px;
  }

  .horizontal-reel-gallery {
    grid-template-columns: 1fr;     /* single column */
    gap: 18px;
  }

  .reel-horizontal {
    aspect-ratio: 16 / 12;          /* taller look for phone */
    border-radius: 14px;
  }

  .activity-title {
    font-size: 22px;
  }

  .activity-desc {
    font-size: 14.5px;
    margin-bottom: 26px;
  }
}/* End custom CSS */