/* ══════════════════════════════════════════════
   NET STRUCTURE TESTIMONIALS — net-structure-testimonials
   ══════════════════════════════════════════════ */
.net-structure-testimonials {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.net-structure-testimonials *,
.net-structure-testimonials *::before,
.net-structure-testimonials *::after {
    box-sizing: border-box;
}

.net-structure-testimonials__inner {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.net-structure-testimonials__inner.is-full {
    max-width: none !important;
}

.net-structure-testimonials__top {
    display: flex;
    align-items: center;
    justify-content: center;
}

.net-structure-testimonials__intro {
    min-width: 0;
    flex-shrink: 0;
}

:where(.net-structure-testimonials__heading) {
    margin: 0;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 28px;
    line-height: 1.28;
    font-weight: 400;
    letter-spacing: 0.105em;
    text-transform: uppercase;
}

:where(.net-structure-testimonials__description) {
    margin: 0;
    max-width: 390px;
    font-size: 14px;
    line-height: 1.72;
    font-weight: 400;
}

.net-structure-testimonials__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border: 1px solid currentColor;
    border-radius: 0;
    line-height: 1;
    letter-spacing: 0.19em;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    transition: color .25s ease, background-color .25s ease, border-color .25s ease, transform .25s ease;
}

.net-structure-testimonials__button:hover {
    transform: translateY(-2px);
}

.net-structure-testimonials__gallery {
    position: relative;
    width: 100%;
    min-width: 0;
}

.net-structure-testimonials__viewport {
    overflow: hidden;
    width: 100%;
}

.net-structure-testimonials__track {
    --net-structure-visible-slides: 3;
    --net-structure-slide-gap: 14px;
    --net-structure-slide-min-width: 0px;
    --net-structure-slide-peek: 0px;
    display: flex;
    align-items: stretch;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
    cursor: grab;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    will-change: scroll-position;
    scroll-padding-inline: 0;
}

.net-structure-testimonials__track::-webkit-scrollbar {
    display: none;
}

.net-structure-testimonials__track.is-dragging {
    cursor: grabbing;
    scroll-behavior: auto;
}

.net-structure-testimonials__slide {
    position: relative;
    overflow: hidden;
    margin: 0;
    scroll-snap-align: start;
    flex: 0 0 max(
        var(--net-structure-slide-min-width, 0px),
        calc((100% - var(--net-structure-slide-peek, 0px) - ((var(--net-structure-visible-slides, 3) - 1) * var(--net-structure-slide-gap, 14px))) / var(--net-structure-visible-slides, 3))
    );
    min-width: max(
        var(--net-structure-slide-min-width, 0px),
        calc((100% - var(--net-structure-slide-peek, 0px) - ((var(--net-structure-visible-slides, 3) - 1) * var(--net-structure-slide-gap, 14px))) / var(--net-structure-visible-slides, 3))
    );
    background-size: 32px 32px;
    user-select: none;
}

.net-structure-testimonials__slide::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: .22;
    background-size: 32px 32px;
    pointer-events: none;
}

.net-structure-testimonials__slide img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    z-index: 1;
    user-select: none;
    -webkit-user-drag: none;
}

.net-structure-testimonials__caption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 16px;
    z-index: 2;
    text-align: center;
    font-family: 'Courier New', monospace;
    font-size: 10px;
    line-height: 1;
    letter-spacing: .04em;
}

.net-structure-testimonials__arrow {
    position: absolute;
    top: 50%;
    z-index: 5;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0, 0, 0, .08);
    border-radius: 50%;
    padding: 0;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(0,0,0,.08);
    transform: translateY(-50%);
    transition: transform .25s ease, box-shadow .25s ease, opacity .25s ease;
}

.net-structure-testimonials__arrow:hover {
    transform: translateY(-50%) scale(1.04);
    box-shadow: 0 10px 28px rgba(0,0,0,.13);
}

.net-structure-testimonials__arrow svg {
    width: 45%;
    height: 45%;
}

.net-structure-testimonials__arrow--prev {
    left: -18px;
}

.net-structure-testimonials__arrow--next {
    right: -18px;
}

.net-structure-testimonials__testimonials {
    width: 100%;
}

:where(.net-structure-testimonials__testimonial-heading) {
    margin: 0;
    text-align: center;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 28px;
    line-height: 1.2;
    font-weight: 400;
    letter-spacing: .11em;
    text-transform: uppercase;
}

.net-structure-testimonials__testimonial-carousel {
    max-width: 1040px;
    margin-left: auto;
    margin-right: auto;
}

.net-structure-testimonials__testimonial-viewport {
    width: 100%;
    overflow: hidden;
}

.net-structure-testimonials__testimonial-track {
    --net-structure-testimonials-visible: 3;
    --net-structure-testimonials-gap: 64px;
    display: flex;
    align-items: stretch;
    gap: var(--net-structure-testimonials-gap, 64px);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
    cursor: grab;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    will-change: scroll-position;
    scroll-padding-inline: 0;
}

.net-structure-testimonials__testimonial-track::-webkit-scrollbar {
    display: none;
}

.net-structure-testimonials__testimonial-track.is-dragging {
    cursor: grabbing;
    scroll-behavior: auto;
    scroll-snap-type: none;
}

.net-structure-testimonials__testimonial-track.is-dragging,
.net-structure-testimonials__testimonial-track.is-dragging * {
    user-select: none;
    -webkit-user-select: none;
}

.net-structure-testimonials__testimonial {
    margin: 0;
    min-width: 0;
    scroll-snap-align: start;
    flex: 0 0 calc((100% - ((var(--net-structure-testimonials-visible, 3) - 1) * var(--net-structure-testimonials-gap, 64px))) / var(--net-structure-testimonials-visible, 3));
}

.net-structure-testimonials__testimonial-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.net-structure-testimonials__testimonial-dots[hidden] {
    display: none !important;
}

.net-structure-testimonials__testimonial-dot {
    display: inline-flex;
    width: 8px;
    height: 8px;
    border: 0;
    border-radius: 999px;
    padding: 0;
    background: rgba(125, 113, 95, .35);
    cursor: pointer;
    transition: width .25s ease, transform .25s ease, background-color .25s ease, opacity .25s ease;
}

.net-structure-testimonials__testimonial-dot.is-active {
    width: 24px;
    transform: none;
}

.net-structure-testimonials__testimonial-dot:focus-visible {
    outline: 2px solid currentColor;
    outline-offset: 4px;
}

.net-structure-testimonials__quote-mark {
    display: block;
    height: 30px;
    margin-bottom: 12px;
    font-family: Georgia, 'Times New Roman', serif;
    line-height: .9;
}

:where(.net-structure-testimonials__quote-text) {
    margin: 0;
    font-size: 14px;
    line-height: 1.7;
    font-weight: 400;
}

:where(.net-structure-testimonials__author) {
    margin-top: 17px;
    font-size: 13px;
    line-height: 1.3;
    font-style: normal;
    letter-spacing: .08em;
}

.net-structure-testimonials .net-reveal-up {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .75s ease, transform .75s ease;
}

.net-structure-testimonials.is-visible .net-reveal-up {
    opacity: 1;
    transform: translateY(0);
}

.net-structure-testimonials.is-visible .net-reveal-delay-1 { transition-delay: .08s; }
.net-structure-testimonials.is-visible .net-reveal-delay-2 { transition-delay: .18s; }
.net-structure-testimonials.is-visible .net-reveal-delay-3 { transition-delay: .28s; }

@media (max-width: 1024px) {
    .net-structure-testimonials__top {
        align-items: flex-start;
    }

    .net-structure-testimonials.is-tablet-stack .net-structure-testimonials__top {
        flex-direction: column;
    }

    .net-structure-testimonials.is-tablet-stack .net-structure-testimonials__intro,
    .net-structure-testimonials.is-tablet-stack .net-structure-testimonials__gallery {
        flex-basis: 100%;
        max-width: 100%;
        width: 100%;
    }

    .net-structure-testimonials.is-tablet-gallery-first .net-structure-testimonials__gallery {
        order: 1;
    }

    .net-structure-testimonials.is-tablet-gallery-first .net-structure-testimonials__intro {
        order: 2;
    }

    .net-structure-testimonials.is-tablet-text-first .net-structure-testimonials__intro {
        order: 1;
    }

    .net-structure-testimonials.is-tablet-text-first .net-structure-testimonials__gallery {
        order: 2;
    }

    .net-structure-testimonials.is-tablet-centered .net-structure-testimonials__intro,
    .net-structure-testimonials.is-tablet-centered .net-structure-testimonials__heading,
    .net-structure-testimonials.is-tablet-centered .net-structure-testimonials__description {
        text-align: center;
    }

    .net-structure-testimonials.is-tablet-centered .net-structure-testimonials__description {
        margin-left: auto;
        margin-right: auto;
    }

    .net-structure-testimonials.is-tablet-centered .net-structure-testimonials__button {
        margin-left: auto;
        margin-right: auto;
    }

    .net-structure-testimonials__arrow--prev {
        left: 8px;
    }

    .net-structure-testimonials__arrow--next {
        right: 8px;
    }

    :where(.net-structure-testimonials__heading) {
        font-size: 25px;
    }

    :where(.net-structure-testimonials__testimonial-heading) {
        font-size: 25px;
    }
}

@media (max-width: 767px) {
    .net-structure-testimonials__top {
        flex-direction: column;
    }

    .net-structure-testimonials.is-gallery-first .net-structure-testimonials__gallery {
        order: 1;
    }

    .net-structure-testimonials.is-gallery-first .net-structure-testimonials__intro {
        order: 2;
    }

    .net-structure-testimonials.is-text-first .net-structure-testimonials__intro {
        order: 1;
    }

    .net-structure-testimonials.is-text-first .net-structure-testimonials__gallery {
        order: 2;
    }

    .net-structure-testimonials.is-mobile-centered .net-structure-testimonials__intro,
    .net-structure-testimonials.is-mobile-centered .net-structure-testimonials__heading,
    .net-structure-testimonials.is-mobile-centered .net-structure-testimonials__description {
        text-align: center;
    }

    .net-structure-testimonials.is-mobile-centered .net-structure-testimonials__description {
        margin-left: auto;
        margin-right: auto;
    }

    :where(.net-structure-testimonials__heading) {
        font-size: 23px;
        letter-spacing: .08em;
    }

    :where(.net-structure-testimonials__description) {
        font-size: 14px;
    }

    .net-structure-testimonials__button {
        width: 100%;
        max-width: 280px;
    }

    .net-structure-testimonials__gallery {
        margin-top: 4px;
    }

    .net-structure-testimonials__viewport {
        overflow: hidden;
    }

    .net-structure-testimonials__track {
        padding-left: 1px;
        padding-right: 1px;
    }

    .net-structure-testimonials__arrow {
        display: none;
    }

    :where(.net-structure-testimonials__testimonial-heading) {
        font-size: 23px;
        letter-spacing: .08em;
    }

    .net-structure-testimonials__testimonial {
        text-align: center;
    }

    .net-structure-testimonials__testimonial-track {
        --net-structure-testimonials-visible: 1;
    }
}

/* Lightbox */
.net-structure-testimonials__slide.has-lightbox {
    cursor: zoom-in;
}

button.net-structure-testimonials__lightbox-trigger,
.net-structure-testimonials__lightbox-trigger {
    position: absolute;
    inset: 0;
    z-index: 4;
    display: block;
    width: 100%;
    height: 100%;
    min-width: 0;
    min-height: 0;
    border: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    background: transparent !important;
    background-color: transparent !important;
    background-image: none !important;
    color: transparent !important;
    text-decoration: none !important;
    box-shadow: none !important;
    opacity: 1 !important;
    cursor: zoom-in;
    appearance: none;
    -webkit-appearance: none;
    pointer-events: auto;
}

button.net-structure-testimonials__lightbox-trigger:hover,
button.net-structure-testimonials__lightbox-trigger:focus,
button.net-structure-testimonials__lightbox-trigger:active,
.net-structure-testimonials__lightbox-trigger:hover,
.net-structure-testimonials__lightbox-trigger:focus,
.net-structure-testimonials__lightbox-trigger:active {
    border: 0 !important;
    background: transparent !important;
    background-color: transparent !important;
    background-image: none !important;
    box-shadow: none !important;
    outline: none;
    opacity: 1 !important;
    transform: none !important;
}

button.net-structure-testimonials__lightbox-trigger::before,
button.net-structure-testimonials__lightbox-trigger::after,
.net-structure-testimonials__lightbox-trigger::before,
.net-structure-testimonials__lightbox-trigger::after {
    content: none !important;
    display: none !important;
}

.net-structure-testimonials__lightbox-trigger:focus-visible {
    outline: 2px solid currentColor;
    outline-offset: -6px;
}

.net-structure-testimonials__slide.has-lightbox:hover img,
.net-structure-testimonials__slide.has-lightbox:focus-within img {
    opacity: 1 !important;
    visibility: visible !important;
    filter: none;
}

.net-structure-testimonials__lightbox-trigger img {
    pointer-events: none;
}

.net-structure-testimonials__track.is-dragging,
.net-structure-testimonials__track.is-dragging * {
    cursor: grabbing;
    user-select: none;
}

.net-structure-testimonials-lightbox {
    position: fixed;
    inset: 0;
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 28px;
    background: rgba(14, 11, 8, .86);
    opacity: 0;
    visibility: hidden;
    transition: opacity .22s ease, visibility .22s ease;
}

.net-structure-testimonials-lightbox.is-open {
    opacity: 1;
    visibility: visible;
}

.net-structure-testimonials-lightbox__dialog {
    position: relative;
    width: min(1120px, 94vw);
    max-height: 88vh;
    transform: translateY(16px) scale(.985);
    transition: transform .22s ease;
}

.net-structure-testimonials-lightbox.is-open .net-structure-testimonials-lightbox__dialog {
    transform: translateY(0) scale(1);
}

.net-structure-testimonials-lightbox__image {
    display: block;
    width: 100%;
    max-height: 82vh;
    object-fit: contain;
    border-radius: 2px;
    box-shadow: 0 24px 80px rgba(0, 0, 0, .34);
}

.net-structure-testimonials-lightbox__caption {
    margin-top: 13px;
    color: #f4eee4;
    font-family: 'Courier New', monospace;
    font-size: 12px;
    line-height: 1.4;
    text-align: center;
    letter-spacing: .08em;
}

.net-structure-testimonials-lightbox__caption[hidden] {
    display: none !important;
}

.net-structure-testimonials-lightbox__nav {
    position: absolute;
    top: 50%;
    z-index: 3;
    width: 46px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 50%;
    padding: 0;
    background: rgba(244,238,228,.94);
    color: #14100b;
    cursor: pointer;
    transform: translateY(-50%);
    transition: transform .22s ease, background-color .22s ease, opacity .22s ease;
    box-shadow: 0 14px 38px rgba(0,0,0,.22);
}

.net-structure-testimonials-lightbox__nav:hover {
    background: #ffffff;
    transform: translateY(-50%) scale(1.05);
}

.net-structure-testimonials-lightbox__nav[hidden] {
    display: none !important;
}

.net-structure-testimonials-lightbox__nav svg {
    width: 54%;
    height: 54%;
}

.net-structure-testimonials-lightbox__nav--prev {
    left: -68px;
}

.net-structure-testimonials-lightbox__nav--next {
    right: -68px;
}

.net-structure-testimonials-lightbox__close {
    position: absolute;
    top: -17px;
    right: -17px;
    width: 38px;
    height: 38px;
    border: 1px solid rgba(255,255,255,.22);
    border-radius: 50%;
    background: #f4eee4;
    color: #14100b;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    line-height: 1;
    box-shadow: 0 12px 34px rgba(0,0,0,.22);
}

.net-structure-testimonials-lightbox__close::before,
.net-structure-testimonials-lightbox__close::after {
    content: '';
    position: absolute;
    width: 15px;
    height: 1px;
    background: currentColor;
}

.net-structure-testimonials-lightbox__close::before { transform: rotate(45deg); }
.net-structure-testimonials-lightbox__close::after { transform: rotate(-45deg); }

body.net-structure-testimonials-lightbox-open {
    overflow: hidden;
}

@media (max-width: 767px) {
    .net-structure-testimonials-lightbox {
        padding: 18px;
    }

    .net-structure-testimonials-lightbox__dialog {
        width: 94vw;
    }

    .net-structure-testimonials-lightbox__close {
        top: -14px;
        right: -8px;
        width: 36px;
        height: 36px;
    }

    .net-structure-testimonials-lightbox__nav {
        width: 40px;
        height: 40px;
        background: rgba(244,238,228,.96);
    }

    .net-structure-testimonials-lightbox__nav--prev {
        left: 8px;
    }

    .net-structure-testimonials-lightbox__nav--next {
        right: 8px;
    }
}


/* v1.0.9 — Lightbox navigation color lock
   Keeps arrow icons visible on hover/focus/active, even when the active theme applies global button hover styles. */
.net-structure-testimonials-lightbox .net-structure-testimonials-lightbox__nav,
.net-structure-testimonials-lightbox .net-structure-testimonials-lightbox__nav:hover,
.net-structure-testimonials-lightbox .net-structure-testimonials-lightbox__nav:focus,
.net-structure-testimonials-lightbox .net-structure-testimonials-lightbox__nav:active,
.net-structure-testimonials-lightbox .net-structure-testimonials-lightbox__nav:focus-visible {
    background: #f4eee4 !important;
    color: #14100b !important;
    opacity: 1 !important;
    visibility: visible !important;
    border-color: rgba(255,255,255,.24) !important;
    outline: none !important;
    transform: translateY(-50%) !important;
    box-shadow: 0 14px 38px rgba(0,0,0,.22) !important;
}

.net-structure-testimonials-lightbox .net-structure-testimonials-lightbox__nav:hover {
    background: #ffffff !important;
    color: #14100b !important;
    transform: translateY(-50%) scale(1.05) !important;
}

.net-structure-testimonials-lightbox .net-structure-testimonials-lightbox__nav svg,
.net-structure-testimonials-lightbox .net-structure-testimonials-lightbox__nav:hover svg,
.net-structure-testimonials-lightbox .net-structure-testimonials-lightbox__nav:focus svg,
.net-structure-testimonials-lightbox .net-structure-testimonials-lightbox__nav:active svg,
.net-structure-testimonials-lightbox .net-structure-testimonials-lightbox__nav svg path,
.net-structure-testimonials-lightbox .net-structure-testimonials-lightbox__nav:hover svg path,
.net-structure-testimonials-lightbox .net-structure-testimonials-lightbox__nav:focus svg path,
.net-structure-testimonials-lightbox .net-structure-testimonials-lightbox__nav:active svg path {
    color: #14100b !important;
    stroke: #14100b !important;
    fill: none !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.net-structure-testimonials-lightbox .net-structure-testimonials-lightbox__nav::before,
.net-structure-testimonials-lightbox .net-structure-testimonials-lightbox__nav::after {
    content: none !important;
    display: none !important;
}
