/* northway/inc/elementor/testimonials.css */

.nw-testi-viewport {
    width: 100%;
    overflow: hidden;
}

.nw-testi-track {
    display: flex;
    gap: 20px;
    /* transition applied by JS after init */
}

.nw-testi-item {
    /* width set by JS — accounts for gap */
    flex-shrink: 0;
    box-sizing: border-box;
}

.nw-testi-card {
    border: solid 1px var(--ast-global-color-7);
    border-radius: 14px;
    padding: 1.5em;
    box-sizing: border-box;
    width: 100%;
    display: flex;
    flex-direction: column;
	background-color: #fff;
}

.nw-testi-text {
    flex: 1;
}

.nw-testi-text p {
    margin: 0;
}

.nw-testi-nav {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 22px;
}

.nw-testi-btn {
	display: flex;
    border-radius: 50%;
    padding: 8px 8px 8px 8px;
    background: var(--ast-global-color-2);
    border: none;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    transition: background 0.18s;
    flex-shrink: 0;
    line-height: 1;
}

.nw-testi-btn:hover {
    background: var(--ast-global-color-0);
}

.nw-testi-btn .nw-button{
	display: inline-flex;
}

.nw-testi-nav .nw-testi-btn svg {
    width: 30px;
    height: 30px;
}

.nw-testi-dots {
    display: flex;
    gap: 7px;
    align-items: center;
    margin-left: 4px;
}

.nw-testi-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #c8d0de;
    border: none;
    padding: 0;
    cursor: pointer;
    transition: all 0.25s;
}

.nw-testi-dot.active {
    background: #e85d1a;
    width: 22px;
    border-radius: 4px;
}

@media (max-width: 767px) {
    .nw-testi-item {
        width: 100%;
    }
}