  .gsw-testimonials {
    color: var(--gsw-cream, #f4ecdc);
    position: relative;
    font-family: 'DM Sans', sans-serif;
  }

  .gsw-eyebrow {
    display: inline-block;
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gsw-gold, #704e05);
    margin-bottom: 0.75rem;
  }

  .gsw-section-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    font-size: clamp(2.1rem, 4vw, 2.9rem);
    color: var(--gsw-cream, #db960b);
    margin-bottom: 1rem;
  }

  .gsw-section-title em {
    font-style: italic;
    color: var(--gsw-gold-light, #855f01);
  }

  .gsw-kintsugi-divider {
    width: 140px;
    height: 18px;
    color: var(--gsw-gold, #c9a24b);
    margin-bottom: 1.25rem;
  }

  .gsw-kintsugi-divider svg {
    width: 100%;
    height: 100%;
  }

  .gsw-section-sub {
    max-width: 560px;
    color: rgba(102, 68, 1, 0.75);
    font-size: 1.25rem;
    line-height: 1.65;
  }

  /* Reset default browser styling on the newly-semantic elements */
  .gsw-testimonials ul.row {
    padding-left: 0;
    margin-left: 0;
  }

  .gsw-avatar-figure {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.85rem;
    margin: 0;
  }

  .gsw-testimonial-card {
    background: var(--brown-dark);
    border: 6px solid rgba(201, 162, 75, 0.28);
    border-radius: 10px;
    padding: 2.25rem 1.75rem 1.75rem;
    height: 100%;
    margin: 0;
    position: relative;
    transition: border-color 0.3s ease, transform 0.3s ease;
  }

  .gsw-testimonial-card:hover {
    border-color: rgba(201, 162, 75, 0.6);
    transform: translateY(-3px);
  }

  .gsw-quote-mark {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    line-height: 1;
    color: var(--gsw-gold, #c9a24b);
    display: block;
    margin-bottom: 0.25rem;
    opacity: 0.85;
  }

  .gsw-testimonial-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-style: italic;
    line-height: 1.6;
    color: var(--gsw-gold, #c9a24b);
    margin-bottom: 1.5rem;
  }

  .gsw-testimonial-author {
    border-top: 1px solid rgba(201, 162, 75, 0.25);
    padding-top: 1rem;
  }

  .gsw-author-info {
    display: flex;
    flex-direction: column;
  }

  /* Circular photo avatar, gold-ringed to match the team headshot style */
  .gsw-testimonial-avatar {
    width: 208px;
    height: 208px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 2px solid var(--gold, #c9a24b);
    box-shadow: 0 0 0 3px rgba(201, 162, 75, 0.15);
  }

  /* Fallback gold-circle initials avatar for testimonials with no photo */
  .gsw-initials-avatar {
    width: 208px;
    height: 208px;
    border-radius: 50%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201, 162, 75, 0.15);
    border: 2px solid var(--gold, #c9a24b);
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--gold-light, #eecf83);
  }

  .gsw-author-name {
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 2rem;
    letter-spacing: 0.02em;
    color: var(--gold-light, #eecf83);
    font-style: normal; /* reset default browser italics on <cite> */
    display: block;
  }

  .gsw-author-role {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.8rem;
    color: rgba(244, 236, 220, 0.6);
    margin-top: 0.15rem;
  }

  .gsw-testimonial-media {
    border-radius: 10px;
    display: block;
    margin: auto;
  }

  @media (max-width: 767px) {
    .gsw-testimonial-avatar {
      width: 128px;
      height: 128px;
    }
  }

  .gsw-carousel-indicators button {
    width: 24px;
    height: 16px;
    border-radius: 25%;
    background-color: rgba(201, 162, 75, 0.3);
    border: none;
    opacity: 1;
  }

  .gsw-carousel-indicators button.active {
    background-color: var(--gold);
  }