/* Extracted from patient-stories.php head style block 1 */
.testimonial-card {
      border: none;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      transition: all 0.3s ease;
    }

    .testimonial-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    }

    .testimonial-card img {
      width: 100%;
      height: auto;
    }

    .testimonial-body {
      padding: 15px;
    }

    .testimonial-body h6 {
      font-weight: 600;
      color: #004a7c;
    }

    .testimonial-body p {
      margin: 0;
      font-size: 14px;
      color: #555;
    }

    .testimonial-date {
      font-size: 13px;
      color: #888;
      margin-top: 5px;
    }

