.nexum-market-section{
    width:100%;
    position:relative;
}

.nexum-market-main-heading{
    text-align:center;
    font-size:18px;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
    margin:0 0 55px;
    line-height:1.4;
}

.nexum-market-grid{
    display:grid;
    align-items:stretch;
}

.nexum-market-card{
    position:relative;
    display:flex;
    flex-direction:column;
    justify-content:flex-start;
    min-height:100%;
    transition:0.35s ease;
    border:1px solid #e5e5e5;
    overflow:hidden;
}

.nexum-market-card.featured{
    transform:translateY(-16px);
    box-shadow:0 25px 60px rgba(0,0,0,0.18);
    z-index:2;
}

.nexum-market-card-title{
    font-size:18px;
    line-height:1.4;
    font-weight:700;
    margin:0 0 10px;
}

.nexum-market-card-subtitle{
    font-size:15px;
    line-height:1.5;
    font-weight:500;
    margin:0 0 30px;
    opacity:0.8;
}

.nexum-market-card-content{
    display:flex;
    flex-direction:column;
    gap:22px;
}

.nexum-market-item{
    display:flex;
    align-items:flex-start;
    gap:12px;
    font-size:14px;
    line-height:1.8;
}

.nexum-market-bullet{
    flex:0 0 auto;
    width:7px;
    height:7px;
    border-radius:50%;
    background:currentColor;
    margin-top:11px;
}

.nexum-market-item strong{
    font-weight:700;
}

@media(max-width:1024px){

    .nexum-market-grid{
        grid-template-columns:repeat(2,1fr) !important;
    }

    .nexum-market-card.featured{
        transform:none;
    }

}

@media(max-width:767px){

    .nexum-market-grid{
        grid-template-columns:1fr !important;
    }

    .nexum-market-card{
        order:2;
    }

    .nexum-market-card.featured{
        order:1;
    }

    .nexum-market-main-heading{
        font-size:16px;
        margin-bottom:40px;
    }

    .nexum-market-card-title{
        font-size:17px;
    }

    .nexum-market-card-subtitle{
        font-size:14px;
    }

    .nexum-market-item{
        font-size:13px;
        line-height:1.7;
    }

}