/* ==========================================================================
   Layout: Reviews
   Centered heading + Swiper testimonial slider with left/right peek
   ========================================================================== */

/* Wrapper ----------------------------------------------------------------- */

.pb-rv-wrap {
    padding: 80px 0;
}

/* Section ----------------------------------------------------------------- */

.pb-rv {
    overflow: hidden;
}

/* Header ------------------------------------------------------------------ */

.pb-rv__header {
    text-align: center;
    padding: 0 24px;
    margin-bottom: 56px;
}

.pb-rv__label {
font-family: var(--font-family);
font-weight: 500;
font-size: 15px;
line-height: 160%;
letter-spacing: 0.05em;
text-transform: uppercase;
text-align: center;
color: var(--text-invisible);
    margin: 0 0 24px;
}

.pb-rv__heading {
font-family: var(--second-family);
font-weight: 550;
font-size: 36px;
line-height: 128%;
letter-spacing: -0.02em;
text-align: center;
background: linear-gradient(169deg, rgba(0, 5, 25, 0.9) 0%, #000519 50%, rgba(0, 5, 25, 0.9) 100%);
background-clip: text;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
    margin: 0 auto;
    max-width: 566px;
}

/* Italic/bold emphasis inside heading (e.g. <em>moving</em>) */
.pb-rv__heading em,
.pb-rv__heading i {
    font-style: italic;
    font-weight: 700;
}

.pb-rv__heading strong {
    font-weight: 700;
}

/* Swiper ------------------------------------------------------------------ */

.pb-rv__swiper {
    overflow: visible;
    margin-bottom: 40px;
}

.pb-rv__slide {
    width: 560px;
    max-width: 88vw;
}

/* Card -------------------------------------------------------------------- */

.pb-rv__card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 28px;
    border-radius: 12px;
    padding: 28px 28px 24px;
    min-height: 220px;
    box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.01), 0 6px 17px 0 rgba(0, 0, 0, 0.01), 0 15px 40px 0 rgba(0, 0, 0, 0.02);
    background: var(--base-white);
    border: 1px solid var(--base-border-black);
    border-radius: 8px;
    transition: box-shadow 0.2s ease;
}

/* Quote */

.pb-rv__card-quote {
    margin: 0;
    flex: 1;
}

.pb-rv__card-quote-icon {
    display: inline-block;
    margin-bottom: 0;
    width: 18px;
    height: 14px;
    margin-right: 12px;
}

.pb-rv__card-quote p {
font-family: var(--second-family);
font-weight: 550;
font-size: 26px;
line-height: 131%;
letter-spacing: -0.01em;
color: var(--base-black);
    margin: 0;
}

/* Footer: author + logo */

.pb-rv__card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding-top: 24px;
    border-top: 1px solid var(--base-border-black);
}

.pb-rv__card-author {
    display: flex;
    align-items: center;
    gap: 10px;
}

.pb-rv__card-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.pb-rv__card-author-info {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.pb-rv__card-author-name {
font-family: var(--second-family);
font-weight: 600;
font-size: 18px;
line-height: 133%;
letter-spacing: 0.01em;
color: var(--base-black);
}

.pb-rv__card-author-role {
font-family: var(--font-family);
font-weight: 500;
font-size: 14px;
line-height: 157%;
letter-spacing: 0.02em;
color: var(--text-base);
}

.pb-rv__card-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.pb-rv__card-logo img {
    display: block;
    height: 40px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
}

/* Navigation -------------------------------------------------------------- */

.pb-rv__nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.pb-rv__nav-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.01), 0 6px 17px 0 rgba(0, 0, 0, 0.01), 0 15px 40px 0 rgba(0, 0, 0, 0.02);
background: var(--base-white);
border: 1px solid var(--base-border-black);
border-radius: 6px;
width: 56px;
height: 56px;
    cursor: pointer;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    flex-shrink: 0;
}

.pb-rv__nav-btn:hover {
    border-color: var(--brand-blue-300, #93b5fd);
    box-shadow: 0 4px 16px 0 rgba(47, 108, 250, 0.10);
}

.pb-rv__nav-btn.swiper-button-disabled {
    opacity: 0.35;
    cursor: default;
    pointer-events: none;
}

/* Responsive -------------------------------------------------------------- */

@media (max-width: 860px) {
    .pb-rv-wrap {
        padding: 56px 0;
    }

    .pb-rv__header {
        margin-bottom: 40px;
    }

    .pb-rv__slide {
        width: 84vw;
    }

    .pb-rv__card-quote p {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .pb-rv__card {
        padding: 22px 18px 18px;
    }
}
