/* =========================================================
   DOTS MEDIA
   TESTIMONIAL
   ========================================================= */

.testimonial {
  position: relative;
  z-index: 2;

  max-width: 1000px;
  margin: 0 auto;

  padding: 40px 60px 60px;
}


/* =========================================================
   QUOTE
   ========================================================= */

.quote-icon {
  color: rgba(255, 122, 26, 0.7);

  font-size: 90px;
  font-weight: 800;

  line-height: 1;

  font-family: Georgia, serif;

  margin-bottom: 20px;

  opacity: 0.6;
}

.quote-text {
  font-size: 24px;
  font-weight: 500;

  line-height: 1.6;

  color: #e6e6e6;

  min-height: 130px;

  margin-bottom: 40px;

  transition: opacity 0.4s ease;
}


/* =========================================================
   TESTIMONIAL FOOTER
   ========================================================= */

.testimonial-footer {
  display: flex;

  align-items: center;
  justify-content: space-between;
}


/* =========================================================
   AUTHOR
   ========================================================= */

.author {
  display: flex;

  align-items: center;

  gap: 14px;
}

.author-avatar {
  width: 44px;
  height: 44px;

  border-radius: 50%;

  background: #2a1a10;

  border: 2px solid #ff7a1a;

  background-size: cover;
  background-position: center;
}

.author-name {
  font-size: 14px;
  font-weight: 700;

  color: #ffffff;

  margin-bottom: 3px;
}

.author-role {
  font-size: 11px;
  font-weight: 600;

  letter-spacing: 1px;

  color: #8a8a8a;

  text-transform: uppercase;
}


/* =========================================================
   TESTIMONIAL DOTS
   ========================================================= */

.testimonial-dots {
  display: flex;

  gap: 8px;
}

.testimonial-dots span {
  width: 8px;
  height: 8px;

  border-radius: 50%;

  background: rgba(255, 255, 255, 0.25);

  cursor: pointer;

  transition: background 0.25s ease;
}

.testimonial-dots span.active {
  background: #ffffff;
}