/* ============================================================
   Features page: modern refresh consistent with the how-to guides
   Scoped to .fsfeatures so it never affects other pages.
   Shares the green card-based palette used in css/guides.css
   ============================================================ */

.fsfeatures {
    background: #fff;
    padding: 10px 0 40px;
}

/* Intro lead under the breadcrumb (matches .htv2-lead / .faqv2-lead) */
.fsfeatures-lead {
    max-width: 1000px;
    margin: 6px auto 8px;
    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;
}

/* ---- Each feature section becomes a clean white card ---- */
.fsfeatures .content.featuresection-left,
.fsfeatures .content.featuresection-right {
    background-color: transparent;
    padding: 0;
    margin-bottom: 10px;
}

.fsfeatures .content.featuresection-left > .container,
.fsfeatures .content.featuresection-right > .container {
    background: #ffffff;
    border: 1px solid #e8ece6;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0,0,0,.06);
    padding: 34px 38px;
    margin-bottom: 28px;
    transition: transform .2s ease, box-shadow .2s ease;
}

.fsfeatures .content.featuresection-left > .container:hover,
.fsfeatures .content.featuresection-right > .container:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 38px rgba(31,122,28,.12);
}

/* Vertically centre the text and image columns within each card */
.fsfeatures .featuresection-left .row,
.fsfeatures .featuresection-right .row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.fsfeatures .featuresection-left .row > .span6,
.fsfeatures .featuresection-right .row > .span6 {
    float: none;
}

/* ---- Headings ---- */
.fsfeatures .featuresection-left h3,
.fsfeatures .featuresection-right h3 {
    font-size: 24px;
    font-weight: 400;
    color: #26331e;
    margin: 0 0 18px;
    padding-bottom: 14px;
    position: relative;
}

/*.fsfeatures .featuresection-left h3:after,
.fsfeatures .featuresection-right h3:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 3px;
    border-radius: 3px;
    background: linear-gradient(90deg, #45b53f, #1f7a1c);
}*/

/* ---- Paragraph copy ---- */
.fsfeatures .featuresection-left p,
.fsfeatures .featuresection-right p {
    font-size: 15px;
    line-height: 1.7;
    color: #41493b;
    margin: 0 0 14px;
}

/* ---- Checklist (icons-ul) ---- */
.fsfeatures .icons-ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.fsfeatures .icons-ul li {
    position: relative;
    padding: 4px 0 4px 34px;
    margin: 0 0 8px;
    font-size: 15px;
    line-height: 1.6;
    color: #41493b;
}

/* Hide the legacy font-awesome tick and draw our own green badge */
.fsfeatures .icons-ul li .icon-li {
    display: none;
}

.fsfeatures .icons-ul li:before {
    content: "\2713"; /* check mark */
    position: absolute;
    left: 0;
    top: 4px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: linear-gradient(135deg, #45b53f, #1f7a1c);
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    line-height: 22px;
    text-align: center;
    box-shadow: 0 3px 7px rgba(31,122,28,.30);
}

/* ---- Images ---- */
.fsfeatures .featuresection-left img,
.fsfeatures .featuresection-right img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    border: 1px solid #ececec;
    box-shadow: 0 8px 22px rgba(0,0,0,.14);
    transition: transform .2s ease, box-shadow .2s ease;
}

.fsfeatures .featuresection-left img:hover,
.fsfeatures .featuresection-right img:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(0,0,0,.20);
}

/* Drop the legacy inline padding workaround on the maintain-dates image */
.fsfeatures .featuresection-left img[style],
.fsfeatures .featuresection-right img[style] {
    padding-top: 0 !important;
}

/* ---- Compare features call-to-action ---- */
.fsfeatures .featuresection-right h4 a,
.fsfeatures .featuresection-left h4 a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 26px;
    border-radius: 30px;
    background: linear-gradient(135deg, #45b53f, #1f7a1c);
    color: #ffffff !important;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none !important;
    box-shadow: 0 6px 16px rgba(31,122,28,.28);
    transition: transform .18s ease, box-shadow .18s ease;
}

.fsfeatures .featuresection-right h4 a:hover,
.fsfeatures .featuresection-left h4 a:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(31,122,28,.38);
}

.fsfeatures .featuresection-right h4 a .icon-info-sign,
.fsfeatures .featuresection-left h4 a .icon-info-sign {
    color: #ffffff !important;
}

@media (max-width: 767px) {
    .fsfeatures .content.featuresection-left > .container,
    .fsfeatures .content.featuresection-right > .container {
        padding: 24px 20px;
    }

    .fsfeatures .featuresection-left .row > .span6,
    .fsfeatures .featuresection-right .row > .span6 {
        width: 100%;
    }

    .fsfeatures .featuresection-left img,
    .fsfeatures .featuresection-right img {
        margin-top: 18px;
    }
}
