/* ============================================================
   Screenshots page: modern refresh consistent with the how-to
   guides, FAQ and Features pages.
   Scoped to .ssv2 so it never affects other pages.
   Shares the green card-based palette used in css/guides.css
   ============================================================ */

.ssv2 {
    background: #fff;
    padding: 10px 0 40px;
}

.ssv2 > .container {
    max-width: 1100px;
}

/* Intro lead under the breadcrumb (matches .fsfeatures-lead / .faqv2-lead) */
.ssv2-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;
}

/* ---- Section titles: centred heading with green underline ---- */
.ssv2 .section-title {
    text-align: center;
    margin: 34px 0 26px;
}

.ssv2 .section-title h2 {
    display: inline-block;
    position: relative;
    font-size: 26px;
    font-weight: 400;
    color: #26331e;
    padding-bottom: 14px;
    margin: 0;
}

.ssv2 .section-title h2:after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 140px;
    height: 3px;
    border-radius: 3px;
    background: linear-gradient(90deg, #45b53f, #1f7a1c);
}

/* Hide the legacy <hr /> beneath the section titles */
.ssv2 .section-title hr {
    display: none;
}

/* ---- Gallery rows align cards to equal height ---- */
.ssv2 .row {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
}

.ssv2 .row > .span4 {
    float: none;
    display: flex;
}

.ssv2 .row > .span12 {
    float: none;
    width: 100%;
}

/* ---- Each screenshot becomes a clean white card ---- */
.ssv2 .feature-screened {
    background: #ffffff;
    border: 1px solid #e8ece6;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0,0,0,.06);
    padding: 18px 18px 22px;
    margin-bottom: 28px;
    width: 100%;
    display: flex;
    flex-direction: column;
    transition: transform .2s ease, box-shadow .2s ease;
}

.ssv2 .feature-screened:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 38px rgba(31,122,28,.12);
}

/* ---- Thumbnail treatment ---- */
.ssv2 .feature-screened .thumbnail {
    display: block;
    position: relative;
    border: none;
    border-radius: 12px;
    overflow: hidden;
    margin: 0 0 16px;
    background: #f1f4ef;
    box-shadow: inset 0 0 0 1px #e8ece6;
}

.ssv2 .feature-screened .thumbnail img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 12px;
    transition: transform .25s ease;
}

.ssv2 .feature-screened:hover .thumbnail img {
    transform: scale(1.03);
}

/* Zoom badge overlay */
.ssv2 .feature-screened .thumbnail-zoom {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(31,122,28,.92);
    box-shadow: 0 4px 14px rgba(0,0,0,.25);
    opacity: 0;
    transform: translate(-50%, -50%) scale(.7);
    transition: opacity .2s ease, transform .2s ease;
}

.ssv2 .feature-screened .thumbnail-zoom:before {
    content: "\f00e"; /* font-awesome search-plus */
    font-family: "FontAwesome";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #ffffff;
    font-size: 20px;
}

.ssv2 .feature-screened:hover .thumbnail-zoom {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

/* ---- Headings ---- */
.ssv2 .feature-screened h4 {
    font-size: 18px;
    font-weight: 500;
    color: #26331e;
    margin: 0 0 10px;
    padding-bottom: 10px;
    position: relative;
}

/*.ssv2 .feature-screened h4:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 48px;
    height: 3px;
    border-radius: 3px;
    background: linear-gradient(90deg, #45b53f, #1f7a1c);
}*/

/* ---- Caption copy ---- */
.ssv2 .feature-screened p {
    font-size: 14px;
    line-height: 1.65;
    color: #41493b;
    margin: 0;
}

/* ---- Responsive ---- */
@media (max-width: 767px) {
    .ssv2 .row {
        display: block;
    }

    .ssv2 .row > .span4 {
        display: block;
        width: 100%;
        margin-left: 0;
    }

    .ssv2 .section-title h2 {
        font-size: 22px;
    }
}
