/* =============================================================================
   Widget: Testimonials
   BEM root: .gtea-testimonials
   ============================================================================= */

/* ── Root ───────────────────────────────────────────────────────────────────── */

.gtea-testimonials {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}

/* ── Carousel ───────────────────────────────────────────────────────────────── */

.gtea-testimonials__carousel {
    box-sizing: border-box;
    position: relative;
}

.gtea-testimonials__carousel .embla__viewport {
    overflow: hidden;
}

.gtea-testimonials__carousel .embla__container {
    display: flex;
}

.gtea-testimonials__carousel .embla__slide {
    flex: 0 0 100%;
    min-width: 0;
    box-sizing: border-box;
}

/* ── Item ───────────────────────────────────────────────────────────────────── */

.gtea-testimonials__item {
    box-sizing: border-box;
    width: 100%;
}

/* ── Columns row ────────────────────────────────────────────────────────────── */

.gtea-testimonials__columns {
    display: flex;
    flex-wrap: wrap;
    box-sizing: border-box;
}

/* ── Column base ────────────────────────────────────────────────────────────── */

.gtea-testimonials__col {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: flex-start;
    box-sizing: border-box;
}

/* ── Pre-title ──────────────────────────────────────────────────────────────── */

.gtea-testimonials__pretitle-outer {
    display: flex;
    box-sizing: border-box;
}

.gtea-testimonials__pretitle {
    margin: 0;
    padding: 0;
}

/* ── Title ──────────────────────────────────────────────────────────────────── */

.gtea-testimonials__title {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ── Image ──────────────────────────────────────────────────────────────────── */

.gtea-testimonials__image-outer {
    display: flex;
    box-sizing: border-box;
}

.gtea-testimonials__image-link {
    display: block;
}

.gtea-testimonials__image-wrap {
    display: block;
}

.gtea-testimonials__image {
    display: block;
    max-width: 100%;
    height: auto;
}

/* ── CTA wrap ───────────────────────────────────────────────────────────────── */

.gtea-testimonials__cta-wrap {
    display: flex;
    box-sizing: border-box;
}

/* ── Quote icon ─────────────────────────────────────────────────────────────── */

.gtea-testimonials__quote-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

.gtea-testimonials__quote-icon svg,
.gtea-testimonials__quote-icon i {
    display: block;
}

/* ── Quote text ─────────────────────────────────────────────────────────────── */

.gtea-testimonials__quote-text-outer {
    display: flex;
    box-sizing: border-box;
}

.gtea-testimonials__quote-text {
    width: 100%;
}

.gtea-testimonials__quote-text > *:first-child {
    margin-top: 0;
}

.gtea-testimonials__quote-text > *:last-child {
    margin-bottom: 0;
}

/* ── Description ────────────────────────────────────────────────────────────── */

.gtea-testimonials__description-outer {
    display: flex;
    box-sizing: border-box;
}

.gtea-testimonials__description {
    width: 100%;
}

.gtea-testimonials__description > *:first-child {
    margin-top: 0;
}

.gtea-testimonials__description > *:last-child {
    margin-bottom: 0;
}

/* ── Author ─────────────────────────────────────────────────────────────────── */

.gtea-testimonials__author {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    box-sizing: border-box;
}

.gtea-testimonials__author-thumbnail {
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    overflow: hidden;
}

.gtea-testimonials__author-thumbnail img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gtea-testimonials__author-info {
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}

.gtea-testimonials__author-name,
.gtea-testimonials__author-role {
    display: block;
    box-sizing: border-box;
}

/* ── Carousel controls ──────────────────────────────────────────────────────── */

.gtea-testimonials__carousel .embla__controls {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    box-sizing: border-box;
    width: 100%;
}

.gtea-testimonials__carousel .embla__buttons {
    display: flex;
    gap: 8px;
    box-sizing: border-box;
}

.gtea-testimonials__carousel .embla__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background: transparent;
    border: none;
    padding: 0;
    box-sizing: border-box;
    transition: background-color 200ms ease, border-color 200ms ease, color 200ms ease;
}

.gtea-testimonials__carousel .embla__button:disabled {
    opacity: 0.3;
    cursor: default;
}

.gtea-testimonials__carousel .embla__button svg {
    display: block;
    pointer-events: none;
}

/* ── Carousel dots ──────────────────────────────────────────────────────────── */

.gtea-testimonials__carousel .embla__dots {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    box-sizing: border-box;
}

.gtea-testimonials__carousel .embla__dot {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
    box-sizing: border-box;
    transition: background-color 200ms ease, border-color 200ms ease, width 200ms ease, height 200ms ease;
}
