/* WayCare Home Promo Cards Widget */

.wchpromo-section,
.wchpromo-section *{
    box-sizing:border-box;
    text-shadow:none!important;
}

.wchpromo-section{
    width:100%;
    padding:24px 42px;
    font-family:Poppins,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
}

.wchpromo-shell{
    width:100%;
    max-width:1380px;
    margin:0 auto;
}

.wchpromo-grid{
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:28px;
}

.wchpromo-card{
    position:relative;
    overflow:hidden;
    min-height:192px;
    padding:28px;
    border:1px solid rgba(226,232,240,.72);
    border-radius:24px;
    box-shadow:0 18px 46px rgba(15,23,42,.055);
    isolation:isolate;
}

.wchpromo-card::before{
    content:"";
    position:absolute;
    inset:0;
    background:
        radial-gradient(circle at 85% 18%,rgba(255,255,255,.65),transparent 26%),
        linear-gradient(135deg,rgba(255,255,255,.36),transparent);
    pointer-events:none;
    z-index:-1;
}

.wchpromo-card.theme-mint{background:#EFFFF8}
.wchpromo-card.theme-gold{background:#FFF7E2}
.wchpromo-card.theme-blue{background:#EEF7FF}

.wchpromo-content{
    position:relative;
    z-index:2;
    max-width:58%;
}

.wchpromo-title{
    margin:0 0 14px;
    color:#122C4A;
    font-family:Fraunces,Georgia,serif;
    font-size:25px;
    line-height:1.12;
    letter-spacing:-.035em;
    font-weight:650;
}

.wchpromo-description{
    margin:0 0 20px;
    color:#475569;
    font-size:14px;
    line-height:1.55;
    font-weight:550;
}

.wchpromo-button{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:42px;
    padding:13px 22px;
    border-radius:10px;
    background:#009B83;
    color:#fff!important;
    text-decoration:none!important;
    font-size:12px;
    line-height:1;
    font-weight:850;
    letter-spacing:.08em;
    text-transform:uppercase;
    box-shadow:0 12px 26px rgba(0,155,131,.16);
    transition:transform .22s ease,box-shadow .22s ease;
}

.wchpromo-button:hover{
    transform:translateY(-2px);
    box-shadow:0 16px 36px rgba(0,155,131,.22);
}

.wchpromo-visual{
    position:absolute;
    right:24px;
    top:34px;
    width:130px;
    height:130px;
    display:flex;
    align-items:center;
    justify-content:center;
    z-index:1;
}

.wchpromo-visual img{
    width:100%;
    height:100%;
    object-fit:contain;
    display:block;
}

.wchpromo-visual-circle{
    width:100%;
    height:100%;
    border-radius:999px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#0F8BD9;
    color:#fff;
    box-shadow:0 18px 42px rgba(15,23,42,.12);
}

.wchpromo-visual-circle svg,
.wchpromo-visual-circle i{
    width:52%;
    height:52%;
    font-size:62px;
    display:block;
}

.wchpromo-badge{
    width:100%;
    height:100%;
    border-radius:999px;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    background:linear-gradient(135deg,#FFD84D,#F5AA00);
    color:#fff;
    font-size:31px;
    line-height:1.05;
    font-weight:900;
    letter-spacing:.02em;
    box-shadow:0 18px 42px rgba(245,170,0,.22);
}

.theme-mint .wchpromo-badge{
    background:linear-gradient(135deg,#2ABFB7,#5BE3B8);
}

.theme-blue .wchpromo-button{
    background:#0F8BD9;
    box-shadow:0 12px 26px rgba(15,139,217,.16);
}

.theme-gold .wchpromo-button{
    background:#F3BE35;
    color:#122C4A!important;
    box-shadow:0 12px 26px rgba(243,190,53,.18);
}

@media (max-width:1100px){
    .wchpromo-grid{
        grid-template-columns:1fr;
    }

    .wchpromo-card{
        min-height:180px;
    }
}

@media (max-width:767px){
    .wchpromo-section{
        padding:18px 14px;
    }

    .wchpromo-grid{
        gap:14px;
    }

    .wchpromo-card{
        min-height:190px;
        padding:22px 20px;
        border-radius:22px;
    }

    .wchpromo-content{
        max-width:62%;
    }

    .wchpromo-title{
        font-size:21px;
        line-height:1.12;
    }

    .wchpromo-description{
        font-size:13px;
        line-height:1.45;
    }

    .wchpromo-button{
        min-height:38px;
        padding:11px 17px;
        font-size:11px;
    }

    .wchpromo-visual{
        width:112px;
        height:112px;
        right:12px;
        top:42px;
    }

    .wchpromo-badge{
        font-size:25px;
    }
}

@media (max-width:390px){
    .wchpromo-content{
        max-width:68%;
    }

    .wchpromo-visual{
        width:92px;
        height:92px;
        opacity:.9;
    }
}


/* v1.1 — narrow promo strip defaults matching reference */
.wchpromo-section{
    padding:18px 42px !important;
}

.wchpromo-grid{
    gap:24px !important;
}

.wchpromo-card{
    min-height:154px !important;
    padding:22px 24px !important;
    border-radius:18px !important;
    box-shadow:0 14px 34px rgba(15,23,42,.045) !important;
}

.wchpromo-card.theme-mint{
    background:#ECFBF6 !important;
}

.wchpromo-card.theme-gold{
    background:#FFF6DD !important;
}

.wchpromo-card.theme-blue{
    background:#EEF7FD !important;
}

.wchpromo-content{
    max-width:62% !important;
}

.wchpromo-title{
    font-size:22px !important;
    line-height:1.12 !important;
    margin-bottom:10px !important;
    letter-spacing:-.025em !important;
}

.wchpromo-description{
    font-size:13px !important;
    line-height:1.45 !important;
    margin-bottom:14px !important;
    max-width:260px;
}

.wchpromo-button{
    min-height:36px !important;
    padding:10px 18px !important;
    border-radius:8px !important;
    font-size:11px !important;
    letter-spacing:.08em !important;
}

.wchpromo-visual{
    width:108px !important;
    height:108px !important;
    right:18px !important;
    top:24px !important;
}

.wchpromo-badge{
    font-size:25px !important;
}

.wchpromo-visual-circle svg,
.wchpromo-visual-circle i{
    width:50% !important;
    height:50% !important;
    font-size:48px !important;
}

@media (min-width:1101px){
    .wchpromo-grid{
        grid-template-columns:repeat(3,minmax(0,1fr)) !important;
    }
}

@media (max-width:1100px){
    .wchpromo-grid{
        grid-template-columns:1fr !important;
    }

    .wchpromo-card{
        min-height:150px !important;
    }
}

@media (max-width:767px){
    .wchpromo-section{
        padding:18px 14px !important;
    }

    .wchpromo-grid{
        gap:12px !important;
    }

    .wchpromo-card{
        min-height:148px !important;
        padding:20px 18px !important;
        border-radius:18px !important;
    }

    .wchpromo-content{
        max-width:66% !important;
    }

    .wchpromo-title{
        font-size:20px !important;
        margin-bottom:8px !important;
    }

    .wchpromo-description{
        font-size:12.5px !important;
        line-height:1.4 !important;
        margin-bottom:12px !important;
    }

    .wchpromo-button{
        min-height:34px !important;
        padding:9px 15px !important;
        font-size:10.5px !important;
    }

    .wchpromo-visual{
        width:90px !important;
        height:90px !important;
        right:12px !important;
        top:28px !important;
    }

    .wchpromo-badge{
        font-size:21px !important;
    }
}


/* v1.2 — premium button colors + reference-size promo strip */
.wchpromo-section{
    padding:18px 42px !important;
}

.wchpromo-shell{
    max-width:1380px !important;
}

.wchpromo-grid{
    grid-template-columns:repeat(3,minmax(0,1fr)) !important;
    gap:24px !important;
}

.wchpromo-card{
    min-height:154px !important;
    padding:22px 24px !important;
    border-radius:18px !important;
    border:1px solid rgba(226,232,240,.78) !important;
    box-shadow:0 16px 38px rgba(15,23,42,.045) !important;
}

.wchpromo-card::before{
    background:
        radial-gradient(circle at 86% 18%,rgba(255,255,255,.70),transparent 24%),
        linear-gradient(135deg,rgba(255,255,255,.28),transparent) !important;
}

.wchpromo-card.theme-mint{
    background:#ECFBF6 !important;
}

.wchpromo-card.theme-gold{
    background:#FFF6DD !important;
}

.wchpromo-card.theme-blue{
    background:#EEF7FD !important;
}

.wchpromo-content{
    max-width:60% !important;
}

.wchpromo-title{
    font-size:21px !important;
    line-height:1.15 !important;
    margin-bottom:10px !important;
    letter-spacing:-.025em !important;
    color:#122C4A !important;
}

.wchpromo-description{
    font-size:13px !important;
    line-height:1.45 !important;
    margin-bottom:14px !important;
    max-width:260px !important;
    color:#64748B !important;
}

.wchpromo-button{
    min-height:35px !important;
    padding:10px 18px !important;
    border-radius:8px !important;
    font-size:10.5px !important;
    letter-spacing:.08em !important;
    box-shadow:0 10px 22px rgba(15,23,42,.10) !important;
}

.wchpromo-card.theme-mint .wchpromo-button{
    background:#009B83 !important;
    color:#FFFFFF !important;
}

.wchpromo-card.theme-gold .wchpromo-button{
    background:#F3BE35 !important;
    color:#122C4A !important;
}

.wchpromo-card.theme-blue .wchpromo-button{
    background:#0F8BD9 !important;
    color:#FFFFFF !important;
}

.wchpromo-visual{
    width:108px !important;
    height:108px !important;
    right:18px !important;
    top:24px !important;
}

.wchpromo-badge{
    font-size:25px !important;
}

.wchpromo-visual-circle{
    box-shadow:0 14px 34px rgba(15,23,42,.12) !important;
}

.theme-blue .wchpromo-visual-circle{
    background:#0F8BD9 !important;
}

.theme-gold .wchpromo-badge{
    background:linear-gradient(135deg,#FFD84D,#F5AA00) !important;
}

@media (max-width:1100px){
    .wchpromo-grid{
        grid-template-columns:1fr !important;
    }
}

@media (max-width:767px){
    .wchpromo-section{
        padding:18px 14px !important;
    }

    .wchpromo-grid{
        gap:12px !important;
    }

    .wchpromo-card{
        min-height:148px !important;
        padding:20px 18px !important;
        border-radius:18px !important;
    }

    .wchpromo-content{
        max-width:66% !important;
    }

    .wchpromo-title{
        font-size:20px !important;
        margin-bottom:8px !important;
    }

    .wchpromo-description{
        font-size:12.5px !important;
        line-height:1.4 !important;
        margin-bottom:12px !important;
    }

    .wchpromo-button{
        min-height:34px !important;
        padding:9px 15px !important;
        font-size:10.5px !important;
    }

    .wchpromo-visual{
        width:90px !important;
        height:90px !important;
        right:12px !important;
        top:28px !important;
    }

    .wchpromo-badge{
        font-size:21px !important;
    }
}
