.feedback-wrapper {  
  gap: var(--mp64);
}

.feedback-title {
  font-family: var(--font-canela) !important;
  font-weight: var(--font-weight-700);
  font-size: var(--font-size-40);
  line-height: 100%;  
  vertical-align: middle;
  color: rgba(31, 41, 55, 1);
  margin-bottom: var(--mp32);
}

.feedback-flex-container {
  display: flex;
  flex-wrap: wrap;
  gap: var(--mp40);
  align-items: stretch;
}

.feedback-fixed-image {
  width: 32%;
  border-radius: var(--border-radius-16);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.feedback-slider {
  flex: 1;
  min-width: 0;
  justify-content: center;
  flex-direction: column;
  margin-top: var(--mp64);
  margin-bottom: var(--mp64);
}

.uk-slider-items {
  list-style: none;
  padding: 0;
  margin: 0;
}

.uk-slider-items li {
  padding: 0;
}

.feedback-slide-content {
  max-width: 100%;
}

.feedback-text {
  font-weight: var(--font-weight-500);
  font-size: var(--font-size-24);
  line-height: var(--line-height-32);  
  color: rgba(16, 24, 40, 1);
}

.feedback-author {
  display: flex;
  align-items: center;
  gap: var(--mp12);
  margin-top: var(--mp16);
}

.feedback-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  background-color: black;
}

.feedback-author-info .feedback-company {
  font-weight: var(--font-weight-700);
  font-size: var(--font-size-16);
  line-height: var(--line-height-24);  
  color: rgba(127, 29, 29, 1);
}

.feedback-author-info .feedback-position {
  font-weight: var(--font-weight-400);
  font-size: var(--font-size-14);
  line-height: var(--line-height-20);  
  color: rgba(107, 114, 128, 1);
}

.feedback-nav {
  margin-top: var(--mp20);
  display: flex;
  gap: var(--mp8);
  justify-content: flex-end;
}

.nav-btn {
  width: 36px;
  height: 36px;
  background-color: #250e45;
  color: white;
  border: none;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s ease;
}

.nav-btn:hover {
  background-color: #e5052c;
}