/* Carousel size control */
#homeCarousel {
  max-height: 520px;      /* desktop height */
  overflow: hidden;
}

/* Ensure all images behave same */
#homeCarousel .carousel-item img {
  height: 520px;
  object-fit: cover;      /* crops image, no stretch */
}

/* Mobile optimization */
@media (max-width: 768px) {
  #homeCarousel {
    max-height: 220px;
  }

  #homeCarousel .carousel-item img {
    height: 220px;
  }
}

.ad-card{
  background:#fff;
  border:1px solid #e7eef7;
  border-left:5px solid #ff9800;
  border-radius:12px;
  padding:16px;
  box-shadow:0 6px 16px rgba(0,0,0,0.08);
}
.ad-badge{
  display:inline-block;
  font-size:12px;
  color:#0b3c5d;
  background:#e6f0ff;
  padding:4px 10px;
  border-radius:999px;
  margin-bottom:10px;
  font-weight:600;
}
.ad-title{margin:0 0 8px 0;color:#0b3c5d;font-weight:700}
.ad-text{margin:0 0 10px 0;color:#345}
.ad-list{padding-left:18px;margin:0 0 12px 0;color:#345}

.ad-title{
  margin:0 0 8px 0;
  color:#0b3c5d;
  font-weight:700;
}

/* Flash / Glow animation */
.flash{
  animation: softFlash 2.5s infinite;
}

@keyframes softFlash {
  0% {
    color:#0b3c5d;
    text-shadow: none;
  }
  50% {
    color:#ff9800;
    text-shadow: 0 0 8px rgba(255,152,0,0.6);
  }
  100% {
    color:#0b3c5d;
    text-shadow: none;
  }
}
