.feature-highlight-grid{
    width: 1280px;
    margin: 0 auto;
}
.feature-highlight-grid .grid-wrapper{
    width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.feature-highlight-grid .feature-card{
    background-color: rgb(255, 255, 255);
    border: 1px solid #E5E7EB;
    border-radius: 16px 16px 16px 16px;
    padding: 20px;
    height: 100%;
}
.feature-highlight-grid .feature-card .title{
    padding-top: 15px;
    font-family: "Inter";
    font-size: 20px;
    font-weight: 600;
    line-height: 24px;
    letter-spacing: 0px;
    color: rgba(16, 24, 40, 1); 
}
.feature-highlight-grid .feature-card img{
    border-radius: 8px!important;
    width: 50px;
    height: 50px!important;
    display: block;
}
.feature-highlight-grid .feature-card .desc{
    padding-top: 10px;
    font-family: "Inter";
    font-size: 16px;
    font-weight: 500;
    line-height: 26px;
    letter-spacing: 0px;
    word-spacing: 0px;
    color: rgba(17, 17, 17, 1);
    opacity: 0.7;
}
.feature-highlight-grid .feature-card:hover{
    border-color: #0042F9;
    transition: all 0.7s ease;
}
@media screen and (max-width: 1280px) {
    .feature-highlight-grid{
        width: 100%;
        margin: 0 auto;
    }
}
@media screen and (max-width: 768px){
    .feature-highlight-grid .grid-wrapper{
        grid-template-columns: 1fr;
    }
}