/* Compact donation section on mobile */
@media (max-width: 768px) {

  /* Reduce donation image size */
  .problem-area .single-featured .thumb img,
  .problem-area .recent-thumb img,
  .problem-area .featured-image img {
    width: 100%;
    height: 120px !important; /* smaller image height */
    object-fit: cover;
    border-radius: 8px;
  }

  /* Compact section padding */
  .problem-area {
    padding-top: 25px !important;
    padding-bottom: 25px !important;
  }

  /* Make cards stack nicely and smaller */
  .problem-area .col-lg-4,
  .problem-area .col-md-6 {
    width: 100%;
    max-width: 100%;
    padding-left: 10px;
    padding-right: 10px;
    margin-bottom: 12px;
  }

  /* Shrink titles and texts */
  .problem-area h3,
  .problem-area h4,
  .problem-area .title {
    font-size: 14px !important;
    line-height: 20px !important;
  }

  .problem-area p,
  .problem-area span,
  .problem-area .progress-percentage {
    font-size: 12px !important;
  }

  /* Reduce donate button size */
  .boxed-btn,
  .btn-wrapper .boxed-btn {
    padding: 6px 14px !important;
    font-size: 12px !important;
    border-radius: 5px;
  }

  /* Reduce space between elements */
  .single-featured {
    margin-bottom: 15px !important;
  }

  /* Make progress bar smaller */
  .progress-item .progress {
    height: 5px !important;
  }

  /* Prevent large banners overlapping */
  .problem-area img {
    max-height: 120px !important;
  }
}

/* Ensure images are always clean and responsive */
.problem-area img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
}