.section-bg-wrapper {
  background-color: #eee;
  transition: background 0.5s ease-in-out;
  background-color: #eee;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.section-bg-wrapper {
  position: relative;
}

.section-bg-wrapper > * {
  position: relative;
  z-index: 1;
}

.section-bg-wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.3); /* light transparent white */
  pointer-events: none;
  z-index: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.section-bg-wrapper.has-bg::before {
  opacity: 1;
}


/* Container card style */
.popular-single {
    height: 400px;
  display: flex;
  flex-direction: column;
  border-radius: 8px;
  overflow: hidden;
  background: #f9f9f9;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  position: relative;
  transition: transform 0.3s ease;
}

/* Hover zoom effect */
.popular-single:hover {
  transform: scale(1.02);
}

/* Image zoom on hover */
.zoom-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.popular-single:hover .zoom-image {
  transform: scale(1.05);
}

/* Text section styling */
.popular-single-txt {
  padding: 15px;
  background: #f9f9f9;
}

.event-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #003366;
}

.event-meta {
  font-size: 0.85rem;
  color: #444;
  line-height: 1.4;
}

/* Chevron animation */
.search-icon.poplink {
  position: absolute;
  bottom: 10px;
  right: 15px;
  font-size: 1.2rem;
  color: #007bff;
  transition: transform 0.3s ease;
}

.popular-single:hover .chevron-icon {
  transform: rotate(90deg);
}
.text-truncate-multiline {
  display: -webkit-box;
  -webkit-line-clamp: 2; /* Limit to 2 lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  height: 2.6em; /* Approximate height for 2 lines */
  line-height: 1.3em;
}
.copyright2 {
  background-color: transparent;
  color: #fff;
}