.showcase-big img{
width:100%;
border-radius:14px;
border:1px solid rgba(15,23,42,0.1);
}

.showcase-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:40px;
align-items:center;
}

.showcase-grid.reverse{
direction:rtl;
}

.showcase-grid.reverse .showcase-text{
direction:ltr;
}

.showcase-image img{
width:100%;
border-radius:14px;
border:1px solid rgba(15,23,42,0.1);
}

.showcase-text h2{
font-size:1.7rem;
margin-bottom:10px;
}

.showcase-text p{
color:var(--muted);
margin-bottom:14px;
}

.showcase-text ul{
padding-left:18px;
color:var(--muted);
}

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