/* =========================================================
   CHOICENEXA PREMIUM AFFILIATE BLOG CARDS
   Brand: Navy + Blue + Purple + Pink
========================================================= */

.choicenexa-blog-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:32px;
    width:100%;
    margin:50px 0;
    padding:0;
}

/* CARD */

.choicenexa-blog-card{
    position:relative;
    display:flex;
    flex-direction:column;
    min-width:0;
    overflow:hidden;
    background:#fff;
    border:1px solid #e9edf4;
    border-radius:22px;
    box-shadow:0 12px 35px rgba(7,26,58,.08);
    transition:transform .35s ease,box-shadow .35s ease,border-color .35s ease;
}

.choicenexa-blog-card:hover{
    transform:translateY(-9px);
    border-color:#dce2f5;
    box-shadow:0 25px 60px rgba(7,26,58,.15);
}

/* TOP BRAND ACCENT */

.choicenexa-blog-card::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    right:0;
    height:4px;
    z-index:3;
    background:linear-gradient(90deg,#263BFF 0%,#7B2CBF 50%,#F72563 100%);
}

/* IMAGE */

.choicenexa-blog-image{
    display:block;
    width:100%;
    height:250px;
    overflow:hidden;
    background:#f7f8fc;
    line-height:0;
    text-decoration:none;
}

.choicenexa-blog-image img{
    display:block;
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center;
    transition:transform .6s cubic-bezier(.2,.7,.2,1);
}

.choicenexa-blog-card:hover .choicenexa-blog-image img{
    transform:scale(1.08);
}

/* FALLBACK */

.choicenexa-no-image{
    display:flex;
    align-items:center;
    justify-content:center;
    width:100%;
    height:100%;
    gap:0;
    font-size:32px;
    font-weight:800;
    letter-spacing:-1.5px;
    background:#fff;
}

.choicenexa-no-image span{
    color:#071A3A;
}

.choicenexa-no-image strong{
    color:#7B2CBF;
    background:linear-gradient(90deg,#263BFF,#7B2CBF,#F72563);
    -webkit-background-clip:text;
    background-clip:text;
    -webkit-text-fill-color:transparent;
}

/* CONTENT */

.choicenexa-blog-content{
    display:flex;
    flex:1;
    flex-direction:column;
    padding:22px;
}

.choicenexa-blog-category{
    display:inline-block;
    align-self:flex-start;
    margin:0 0 10px;
    font-size:11px;
    line-height:1.2;
    font-weight:800;
    letter-spacing:.9px;
    text-transform:uppercase;
    color:#263BFF;
}

.choicenexa-blog-title{
    margin:0 0 12px;
    padding:0;
    font-size:23px;
    line-height:1.38;
    font-weight:800;
}

.choicenexa-blog-title a{
    color:#071A3A;
    text-decoration:none;
    transition:color .25s ease;
}

.choicenexa-blog-card:hover .choicenexa-blog-title a{
    color:#7B2CBF;
}

.choicenexa-blog-excerpt{
    margin:0 0 20px;
    color:#667085;
    font-size:15px;
    line-height:1.7;
}

.choicenexa-blog-read-more{
    display:inline-flex;
    align-items:center;
    align-self:flex-start;
    gap:8px;
    margin-top:auto;
    padding:10px 0 2px;
    color:#263BFF;
    font-size:13px;
    line-height:1;
    font-weight:800;
    letter-spacing:.55px;
    text-decoration:none;
    text-transform:uppercase;
    transition:gap .25s ease,color .25s ease;
}

.choicenexa-blog-read-more b{
    font-size:20px;
    line-height:12px;
    font-weight:600;
}

.choicenexa-blog-read-more:hover{
    gap:13px;
    color:#F72563;
}

.choicenexa-blog-empty{
    padding:25px;
    text-align:center;
}

/* TABLET */

@media(max-width:991px){
    .choicenexa-blog-grid{
        grid-template-columns:repeat(2,1fr);
        gap:24px;
    }

    .choicenexa-blog-image{
        height:225px;
    }

    .choicenexa-blog-content{
        padding:20px;
    }

    .choicenexa-blog-title{
        font-size:21px;
    }
}

/* MOBILE */

@media(max-width:767px){
    .choicenexa-blog-grid{
        grid-template-columns:1fr;
        gap:24px;
        margin:35px 0;
    }

    .choicenexa-blog-image{
        height:220px;
    }

    .choicenexa-blog-content{
        padding:18px;
    }

    .choicenexa-blog-title{
        font-size:21px;
    }

    .choicenexa-blog-excerpt{
        font-size:14px;
    }
}

/* SMALL MOBILE */

@media(max-width:480px){
    .choicenexa-blog-grid{
        gap:20px;
    }

    .choicenexa-blog-card{
        border-radius:18px;
    }

    .choicenexa-blog-image{
        height:200px;
    }

    .choicenexa-blog-content{
        padding:16px;
    }

    .choicenexa-blog-title{
        font-size:19px;
    }
}
