/* ============================================================
   Reviews page: modern refresh consistent with the rest of the
   site (guides, FAQ, Features, Download, Compare, CheckForUpdate).
   Scoped to .reviewsv2 so it never affects other pages.
   ============================================================ */

.reviewsv2 {
    background: #fff;
    padding: 10px 0 50px;
}

.reviewsv2 .container {
    max-width: 1000px;
}

/* ---- Intro lead under the breadcrumb ---- */
.reviewsv2-lead {
    max-width: 1000px;
    margin: 6px auto 22px;
    background: linear-gradient(135deg, #f4faf3, #eef6ec);
    border: 1px solid #e1ebde;
    border-left: 4px solid #3aa635;
    border-radius: 12px;
    padding: 18px 22px;
    color: #3a4734;
    font-size: 16px;
    line-height: 1.6;
    width: 100%;
}

/* ---- Centered section titles with green underline accent ---- */
.reviewsv2 .section-title {
    text-align: center;
    margin: 36px auto 20px;
}

.reviewsv2 .section-title h2 {
    display: inline-block;
    position: relative;
    color: #26331e;
    font-weight: 400;
    padding-bottom: 12px;
    margin: 0;
}

.reviewsv2 .section-title h2:after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 64px;
    height: 4px;
    border-radius: 3px;
    background: linear-gradient(90deg, #45b53f, #1f7a1c);
}

.reviewsv2 .section-title hr {
    display: none;
}

/* ============================================================
   Awards: badge logos in a soft card with even spacing
   ============================================================ */
.reviewsv2 .awards-card {
    background: #ffffff;
    border: 1px solid #e8ece6;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0,0,0,.06);
    padding: 26px 24px;
    text-align: center;
}

.reviewsv2 .awards-card a {
    display: inline-block;
    margin: 10px 14px;
    vertical-align: middle;
    transition: transform .15s ease, filter .15s ease;
}

.reviewsv2 .awards-card a:hover {
    transform: translateY(-3px);
    filter: drop-shadow(0 6px 12px rgba(0,0,0,.15));
}

.reviewsv2 .awards-card img {
    vertical-align: middle;
}

/* ============================================================
   Blog review cards
   ============================================================ */
.reviewsv2 .review-card {
    background: #ffffff;
    border: 1px solid #e8ece6;
    border-top: 3px solid #3aa635;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0,0,0,.06);
    padding: 24px 26px;
    margin-bottom: 22px;
    transition: transform .15s ease, box-shadow .15s ease;
}

.reviewsv2 .review-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 34px rgba(0,0,0,.10);
}

.reviewsv2 .review-card h4 {
    color: #26331e;
    font-weight: 500;
    margin-top: 0;
}

.reviewsv2 .review-card p i,
.reviewsv2 .review-card p {
    color: #4a5742;
    line-height: 1.65;
}

.reviewsv2 .review-card h5 {
    color: #5a6a52;
    font-weight: 500;
    margin-top: 16px;
    margin-bottom: 4px;
}

.reviewsv2 .review-card a {
    color: #1f7a1c;
    word-break: break-word;
}

.reviewsv2 .review-card a:hover {
    color: #15600f;
}

.reviewsv2 .review-card img.rightTop {
    float: right;
    clear: both;
    margin: 4px 0 4px 8px;
    max-width: 100%;
}

/* ============================================================
   Testimonials: clean quote cards with a green accent quote mark
   ============================================================ */
.reviewsv2 .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin-top: 4px;
}

.reviewsv2 .testimonial {
    margin: 0;
    position: relative;
    background: linear-gradient(135deg, #f9fcf8, #f1f7ef);
    border: 1px solid #e6eee2;
    border-radius: 16px;
    box-shadow: 0 8px 22px rgba(0,0,0,.05);
    padding: 26px 26px 22px 56px;
    font-family: Georgia, serif;
    color: #4a5742;
    font-style: italic;
    text-shadow: none;
    transition: transform .15s ease, box-shadow .15s ease;
}

.reviewsv2 .testimonial:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(0,0,0,.09);
}

.reviewsv2 .testimonial:before {
    content: "\201C";
    position: absolute;
    top: 14px;
    left: 18px;
    font-size: 52px;
    line-height: 1;
    color: #45b53f;
    font-style: normal;
    font-family: Georgia, serif;
}

.reviewsv2 .testimonial:after {
    content: "";
}

.reviewsv2 .testimonial p {
    margin: 0;
}

/* ============================================================
   Responsive tweaks
   ============================================================ */
@media (max-width: 767px) {
    .reviewsv2 .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .reviewsv2 .awards-card a {
        margin: 8px 10px;
    }

    .reviewsv2 .review-card img.rightTop {
        float: none;
        display: block;
        margin: 12px auto;
    }
}
