
/* 1. Media Collage Container Positioning Base */
.event-media-collage {
  position: relative;
  width: 100%;
  min-height: 440px;
  margin: 20px 0;
}

/* 2. Abstract Base Item Rules for Depth and Layering */
.event-media-collage .collage-item {
  position: absolute;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0, 70, 211, 0.12);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}

.event-media-collage .collage-item:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 70, 211, 0.2);
  z-index: 10 !important;
}

/* 3. Focal Video Element Grid Positioning */
.event-media-collage .collage-video {
  width: 68%;
  top: 0;
  left: 0;
  z-index: 3;
  aspect-ratio: 4 / 5;
  min-height: auto;
}

/* 4. Supporting Asymmetric Image Placements */
.event-media-collage .collage-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.event-media-collage .collage-img-1 {
  width: 38%;
  height: 160px;
  top: 15px;
  right: 0;
  z-index: 2;
}

.event-media-collage .collage-img-2 {
  width: 42%;
  height: 180px;
  top: 190px;
  right: 15px;
  z-index: 4;
  border: 4px solid #ffffff;
}

.event-media-collage .collage-img-3 {
  width: 34%;
  height: 120px;
  bottom: -10px;
  left: 20%;
  z-index: 5;
  border: 3px solid #ffffff;
}

/* 5. Typography and Editorial Description Styling */
.event-description-text .lead-text {
  font-size: 1.08rem;
  line-height: 1.6;
  color: #1a202c;
}

.event-description-text .body-text {
  font-size: 0.95rem;
  line-height: 1.7;
}

/* 6. Tagline Styling */
.event-tagline-badge {
  display: inline-block;
  padding: 10px 20px;
  background: linear-gradient(135deg, rgba(0, 70, 211, 0.08) 0%, rgba(102, 178, 254, 0.15) 100%);
  border-left: 4px solid #0046d3;
  border-radius: 0 8px 8px 0;
}

.event-tagline-badge .tagline-text {
  font-family: "Raleway", sans-serif;
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 1px;
  color: #0046d3;
  text-transform: uppercase;
}

/* 7. Responsive Adjustments for Tablet and Mobile Views */
@media (max-width: 991px) {
  .event-media-collage {
    min-height: 380px;
  }
  .event-media-collage .collage-video {
    width: 65%;
  }
  .event-media-collage .collage-img-1 {
    width: 40%;
    height: 130px;
  }
  .event-media-collage .collage-img-2 {
    width: 42%;
    height: 150px;
    top: 150px;
  }
  .event-media-collage .collage-img-3 {
    display: none; /* Hide 3rd image on tablet to avoid visual clutter */
  }
}

@media (max-width: 576px) {
  .event-media-collage {
    min-height: 300px;
    margin-bottom: 30px;
  }
  .event-media-collage .collage-video {
    width: 70%;
  }
  .event-media-collage .collage-img-1 {
    width: 45%;
    height: 110px;
  }
  .event-media-collage .collage-img-2 {
    width: 45%;
    height: 120px;
    top: 125px;
    right: 0;
  }
}