/* ===========================================================================
   Block: reviews-hero — dark gradient hero card (Reviews page)
   Values extracted from the original page:
   - section: pt 64px, mb 16px, ::before dark band 134px (black → transparent, opacity .6)
   - card: radius 30px, gradient #101A2F → #7B8DAF (180deg mobile / 90deg desktop),
           min-height 297px (lg), grid 12 cols, gap 32px
   - left col: lg → cols 1-8, padding 32px 0 40px 56px
   - right col: lg → cols 9-12, padding-right 51px, img object-cover full height
   =========================================================================== */

.voctos-reviews-hero {
    position: relative;
    padding-top: 64px;
    margin-bottom: 16px;
}
/* dark band behind the transparent header */
.voctos-reviews-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 134px;
    opacity: .6;
    pointer-events: none;
    background: linear-gradient(to bottom, #000 0%, rgba(0, 0, 0, 0) 100%);
}
.voctos-reviews-hero .container {
    position: relative;
    z-index: 1;
}

/* breadcrumbs row */
.voctos-reviews-hero .rvh-crumbs {
    padding-top: 40px;
    margin-bottom: 24px;
}
.voctos-reviews-hero .rvh-crumbs ul::-webkit-scrollbar { height: 0; background: transparent; }

/* ── Gradient card ───────────────────────────────────────────── */
.voctos-reviews-hero .rvh-card {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    border-radius: 30px;
    background: linear-gradient(180deg, #101A2F 0%, #7B8DAF 100%);
    background-repeat: no-repeat;
    overflow: hidden;
    padding: 32px 32px 0;
}
@media (min-width: 1024px) {
    .voctos-reviews-hero .rvh-card {
        background: linear-gradient(90deg, #101A2F 0%, #7B8DAF 100%);
        padding: 0;
        min-height: 297px;
        column-gap: 32px;
    }
}

/* left column */
.voctos-reviews-hero .rvh-left {
    grid-column: 1 / -1;
}
@media (min-width: 1024px) {
    .voctos-reviews-hero .rvh-left {
        grid-column: 1 / span 8;
        padding: 32px 0 40px 56px;
    }
}

.voctos-reviews-hero .rvh-heading {
    font-family: 'Unbounded', sans-serif;
    font-size: 36px;
    font-weight: 400;
    line-height: 1.25;
    color: #fff;
    margin: 0 0 20px;
}
@media (min-width: 1024px) {
    .voctos-reviews-hero .rvh-heading { font-size: 46px; }
}

.voctos-reviews-hero .rvh-p {
    font-family: 'Unbounded', sans-serif;
    font-size: 14px;
    line-height: 1.5;
    color: #fff;
    margin: 0 0 16px;
}
.voctos-reviews-hero .rvh-p--last { margin-bottom: 32px; }

/* actions: CTA + rating pill */
.voctos-reviews-hero .rvh-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    row-gap: 16px;
}
@media (min-width: 1024px) {
    .voctos-reviews-hero .rvh-actions {
        flex-direction: row;
        align-items: center;
        column-gap: 14px;
        row-gap: 0;
    }
}

.voctos-reviews-hero .rvh-cta {
    display: block;
    width: 100%;
    text-align: center;
    padding: 16px 20px;
    border-radius: 10px;
    background-color: #7616F4;
    color: #fff;
    font-family: 'Unbounded', sans-serif;
    font-size: 14px;
    text-decoration: none;
    transition: background-color 0.18s;
}
.voctos-reviews-hero .rvh-cta:hover { background-color: #0D172D; }
@media (min-width: 1024px) {
    .voctos-reviews-hero .rvh-cta { width: auto; }
}

/* rating pill */
.voctos-reviews-hero .rvh-pill {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 8px;
    width: 100%;
    padding: 16px 14px;
    border-radius: 10px;
    background: #fff;
    color: #0D172D;
    font-family: 'Unbounded', sans-serif;
    font-size: 14px;
    text-decoration: none;
}
@media (min-width: 1024px) {
    .voctos-reviews-hero .rvh-pill { width: auto; }
}
.voctos-reviews-hero .rvh-pill-logo {
    height: 20px;
    width: auto;
    max-width: 136px;
    object-fit: contain;
}
.voctos-reviews-hero .rvh-pill-rate {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
}
.voctos-reviews-hero .rvh-pill-star {
    width: 20px;
    height: 20px;
}

/* right column: illustration */
.voctos-reviews-hero .rvh-right {
    grid-column: 1 / -1;
}
@media (min-width: 1024px) {
    .voctos-reviews-hero .rvh-right {
        grid-column: 9 / -1;
        position: relative;
        padding-right: 51px;
    }
}
.voctos-reviews-hero .rvh-right img {
    width: 100%;
    height: auto;
    display: block;
}
@media (min-width: 1024px) {
    .voctos-reviews-hero .rvh-right img {
        object-fit: cover;
        height: 100%;
    }
}
