.new-calc-shell{
padding:4px 0 24px;
}
.new-calc-header{
margin-bottom:18px;
}
.new-calc-title{
margin:0 0 4px;
font-size:22px;
color:#102a43;
font-weight:800;
}
.new-calc-subtitle{
margin:0;
font-size:13px;
color:#64748b;
}
.new-calc-grid{
display:grid;
grid-template-columns:repeat(3, minmax(0, 1fr));
gap:16px;
}
.new-calc-card{
border:1.5px solid #e5e7eb;
border-radius:14px;
background:#fff;
cursor:pointer;
overflow:hidden;
transition:border-color .15s, transform .15s, box-shadow .15s;
display:flex;
flex-direction:column;
}
.new-calc-card:hover{
border-color:#024550;
transform:translateY(-2px);
box-shadow:0 8px 24px rgba(2,69,80,.12);
}
.new-calc-card-image{
width:100%;
aspect-ratio:500/150;
object-fit:cover;
display:block;
background:linear-gradient(135deg,#024550,#059669);
}
.new-calc-card-body{
padding:14px 16px 16px;
display:flex;
flex-direction:column;
gap:4px;
}
.new-calc-card-title{
font-size:15px;
font-weight:800;
color:#102a43;
}
.new-calc-card-meta{
font-size:11px;
color:#64748b;
text-transform:uppercase;
letter-spacing:.4px;
font-weight:700;
}
.new-calc-empty{
border:1.5px dashed #cbd5e1;
border-radius:14px;
padding:40px 24px;
text-align:center;
background:#f8fafc;
}
.new-calc-empty-title{
font-size:16px;
font-weight:800;
color:#334155;
margin-bottom:8px;
}
.new-calc-empty-body{
font-size:13px;
color:#64748b;
line-height:1.6;
max-width:520px;
margin:0 auto;
}
@media (max-width: 900px){
.new-calc-grid{ grid-template-columns:repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 600px){
.new-calc-grid{ grid-template-columns:1fr; }
}
/* Responsive — kalkyl-layouter */
@media (max-width: 1100px){
.nc-layout-grid{ grid-template-columns:1fr !important; }
.nc-product-detail{ grid-template-columns:1fr !important; gap:16px !important; }
}
@media (max-width: 600px){
.nc-tillval-grid{ grid-template-columns:1fr !important; }
}