/* ==========================================================================
   Feedback (Testimonials) CSS - Custom Agency
   ========================================================================== */

.feedback-section {
  width: 100%;
  min-height: 0;
  padding: 2rem 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 1rem 0;
}

@media (min-width: 640px) {
  .feedback-section {
    padding: 3rem 1.5rem;
  }
}

@media (min-width: 768px) {
  .feedback-section {
    min-height: 100vh;
    padding: 5rem 3rem;
  }
}

.feedback-container {
  width: 100%;
  text-align: left;
}

.feedback-eyebrow {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--base-500);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.feedback-quote-heading {
  color: var(--base-300);
  font-size: clamp(1.25rem, 3.5vw, 4.5rem);
  margin-top: 1rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.feedback-author-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

@media (min-width: 768px) {
  .feedback-author-row {
    margin-top: 3rem;
    gap: 1rem;
  }
}

.feedback-author-avatar,
.feedback-author-avatar-img {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  object-fit: cover;
  border: 1px solid rgba(177, 166, 150, 0.4);
}

@media (min-width: 640px) {
  .feedback-author-avatar,
  .feedback-author-avatar-img {
    width: 3rem;
    height: 3rem;
  }
}

@media (min-width: 768px) {
  .feedback-author-avatar,
  .feedback-author-avatar-img {
    width: 4rem;
    height: 4rem;
  }
}

.feedback-author-info {
  color: var(--base-400);
  font-size: clamp(0.75rem, 1.2vw, 0.875rem);
  font-weight: 500;
}

.feedback-author-name {
  color: var(--base-300);
  font-weight: 700;
}

.feedback-controls-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 2rem;
  gap: 1rem;
}

@media (min-width: 768px) {
  .feedback-controls-row {
    margin-top: 3.5rem;
  }
}

.feedback-btn-group {
  display: flex;
  gap: 0.5rem;
}

.feedback-control-btn {
  border: 1px solid var(--base-400);
  padding: 0.5rem;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--base-300);
  transition: all var(--transition-fast);
}

.feedback-control-btn:hover {
  background-color: var(--base-400);
  color: var(--base-100);
}

.feedback-progress-track {
  position: relative;
  width: 8rem;
  height: 2px;
  background-color: var(--base-muted);
}

@media (min-width: 640px) {
  .feedback-progress-track {
    width: 12rem;
  }
}

@media (min-width: 768px) {
  .feedback-progress-track {
    width: 17.5rem;
  }
}

.feedback-progress-fill {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background-color: var(--base-300);
  height: 2px;
  transition: width 0.3s ease;
}
