/* CPD Testimonials Widget Styles */

.cpd-testimonials-widget {
  padding: 60px 0;
}

/* Header Styles */
.testimonials-header {
  margin-bottom: 60px;
  margin-left: auto;
  margin-right: auto;
  flex-direction: column;
}

.testimonials-subtitle {
  color: #0093CA;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0 0 15px 0;
}

.testimonials-title {
  color: #333333;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 20px 0;
}

.testimonials-description {
  color: #666666;
  font-size: 18px;
  line-height: 1.6;
  margin: 0;
}

/* Grid Layout */
.testimonials-grid {
  display: grid;
  gap: 30px;
  margin-bottom: 30px;
}

.testimonials-grid-col-1 {
  grid-template-columns: 1fr;
}

.testimonials-grid-col-2 {
  grid-template-columns: repeat(2, 1fr);
}

.testimonials-grid-col-3 {
  grid-template-columns: repeat(3, 1fr);
}

.testimonials-grid-col-4 {
  grid-template-columns: repeat(4, 1fr);
}

/* Testimonial Item */
.testimonial-item {
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  padding: 30px;
  position: relative;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.testimonial-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  border-color: #0093CA;
}

.testimonial-item::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 30px;
  font-size: 60px;
  color: #0093CA;
  font-family: serif;
  line-height: 1;
  opacity: 0.3;
}

/* Rating Styles */
.testimonial-rating {
  margin-bottom: 20px;
  display: flex;
  gap: 2px;
}

.testimonial-rating .star {
  font-size: 16px;
  color: #FFD700;
  transition: color 0.3s ease;
}

.testimonial-rating .star.empty {
  color: #ddd;
}

/* Content Styles */
.testimonial-content {
  margin-bottom: 25px;
}

.testimonial-text {
  color: #333333;
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
  font-style: italic;
  position: relative;
}

.read-more-btn {
  background: none;
  border: none;
  color: #0093CA;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  margin-top: 10px;
  padding: 0;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.read-more-btn:hover {
  color: #006fa3;
}

/* Author Styles */
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
  padding-top: 20px;
  border-top: 1px solid #f0f0f0;
}

.author-avatar {
  flex-shrink: 0;
}

.author-avatar .avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #f0f0f0;
}

.avatar-placeholder {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0093CA, #006fa3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
  font-size: 18px;
  text-transform: uppercase;
}

.author-details {
  flex: 1;
}

.author-name {
  color: #0093CA;
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 5px 0;
}

.author-date {
  color: #999999;
  font-size: 14px;
  margin: 0;
}

/* Empty State */
.testimonials-empty {
  text-align: center;
  padding: 80px 20px;
  max-width: 500px;
  margin: 0 auto;
}

.empty-icon {
  margin-bottom: 30px;
  opacity: 0.3;
}

.empty-icon svg {
  width: 64px;
  height: 64px;
  color: #0093CA;
}

.empty-title {
  color: #333333;
  font-size: 24px;
  font-weight: 600;
  margin: 0 0 15px 0;
}

.empty-description {
  color: #666666;
  font-size: 16px;
  line-height: 1.5;
  margin: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .testimonials-grid-col-4 {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .cpd-testimonials-widget {
    padding: 40px 0;
  }

  .testimonials-header {
    margin-bottom: 40px;
  }

  .testimonials-title {
    font-size: 28px;
  }

  .testimonials-description {
    font-size: 16px;
  }

  .testimonials-grid-col-3,
  .testimonials-grid-col-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonials-grid {
    gap: 20px;
  }

  .testimonial-item {
    padding: 20px;
  }

  .testimonial-item::before {
    font-size: 40px;
    top: -5px;
    left: 20px;
  }
}

@media (max-width: 480px) {
  .testimonials-grid-col-2,
  .testimonials-grid-col-3,
  .testimonials-grid-col-4 {
    grid-template-columns: 1fr;
  }

  .testimonials-title {
    font-size: 24px;
  }

  .testimonial-item {
    padding: 15px;
  }

  .testimonial-author {
    gap: 10px;
  }

  .author-avatar .avatar,
  .avatar-placeholder {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
}

/* Animation Effects */
.testimonial-item {
  animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Staggered animation for grid items */
.testimonial-item:nth-child(1) { animation-delay: 0.1s; }
.testimonial-item:nth-child(2) { animation-delay: 0.2s; }
.testimonial-item:nth-child(3) { animation-delay: 0.3s; }
.testimonial-item:nth-child(4) { animation-delay: 0.4s; }
.testimonial-item:nth-child(5) { animation-delay: 0.5s; }
.testimonial-item:nth-child(6) { animation-delay: 0.6s; }

/* Focus and Accessibility */
.read-more-btn:focus {
  outline: 2px solid #0093CA;
  outline-offset: 2px;
}

.testimonial-item:focus-within {
  border-color: #0093CA;
  box-shadow: 0 0 0 3px rgba(0, 147, 202, 0.1);
}

/* Print Styles */
@media print {
  .testimonial-item {
    break-inside: avoid;
    box-shadow: none;
    border: 1px solid #ccc;
  }

  .read-more-btn {
    display: none;
  }
}
