/* Provider recommendations – matches prissammenligner colors */
.mn-mob-recommendations{
  --mn-border:#dfe7f0;
  --mn-border-soft:#e8eef5;
  --mn-text:#10213a;
  --mn-muted:#5f7087;
  --mn-blue:#0a63d8;
  --mn-green:#12a66a;
  --mn-green-dark:#0b8b57;
  --mn-panel:#ffffff;
  --mn-soft:#f7faff;
  --mn-shadow:0 10px 30px rgba(16,33,58,.06);
  margin:32px 0;
  color:var(--mn-text);
}
.mn-mob-recommendations-header{
  display:flex;
  align-items:flex-start;
  gap:14px;
  margin-bottom:18px;
}
.mn-mob-recommendations-heading-icon{
  width:42px;
  height:42px;
  border-radius:10px;
  display:grid;
  place-items:center;
  background:var(--mn-soft);
  color:var(--mn-blue);
  border:1px solid var(--mn-border-soft);
  flex:0 0 auto;
}
.mn-mob-recommendations-heading-icon svg{width:22px;height:22px;display:block}
.mn-mob-recommendations-title{
  margin:0 0 4px;
  font-size:clamp(24px,2.2vw,34px);
  line-height:1.15;
  color:var(--mn-text);
  font-weight:900;
}
.mn-mob-recommendations-subtitle{
  margin:0;
  color:var(--mn-muted);
  font-size:16px;
}
.mn-mob-recommendations-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:18px;
}
.mn-mob-rec-card{
  border:1px solid var(--mn-border);
  border-radius:14px;
  background:var(--mn-panel);
  padding:18px;
  box-shadow:var(--mn-shadow);
  display:flex;
  flex-direction:column;
  gap:13px;
  min-width:0;
}
.mn-mob-rec-card:first-child{
  border-color:#b8ccec;
  box-shadow:0 10px 24px rgba(16,33,58,.08);
}
.mn-mob-rec-head{
  display:grid;
  grid-template-columns:auto 1fr auto;
  align-items:start;
  gap:12px;
}
.mn-mob-rec-icon{
  width:42px;
  height:42px;
  border-radius:10px;
  background:var(--mn-soft);
  border:1px solid var(--mn-border-soft);
  display:grid;
  place-items:center;
  color:var(--mn-blue);
}
.mn-mob-rec-icon svg{width:21px;height:21px;display:block}
.mn-mob-rec-title{
  margin:0;
  font-size:17px;
  line-height:1.2;
  color:var(--mn-text);
  font-weight:900;
}
.mn-mob-rec-subtitle{
  margin:4px 0 0;
  color:var(--mn-muted);
  font-size:14px;
  line-height:1.35;
}
.mn-mob-rec-badge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:6px 10px;
  border-radius:8px;
  border:1px solid #cbd9ec;
  background:var(--mn-soft);
  color:var(--mn-blue);
  font-size:13px;
  font-weight:900;
  white-space:nowrap;
}
.mn-mob-rec-brand-row{
  display:flex;
  align-items:center;
  gap:12px;
  min-height:50px;
}
.mn-mob-rec-logo{
  width:82px;
  height:42px;
  display:flex;
  align-items:center;
  justify-content:flex-start;
  flex:0 0 auto;
}
.mn-mob-rec-logo img{
  max-width:82px;
  max-height:42px;
  width:auto;
  height:auto;
}
.mn-mob-rec-brand{
  font-size:15px;
  font-weight:900;
  color:var(--mn-text);
}
.mn-mob-rec-price-wrap{margin-top:2px}
.mn-mob-rec-price-before{
  margin-bottom:2px;
  color:var(--mn-muted);
  text-decoration:line-through;
  font-size:14px;
  font-weight:800;
}
.mn-mob-rec-price-now{
  color:var(--mn-text);
  font-size:30px;
  line-height:1.05;
  font-weight:900;
  letter-spacing:-0.02em;
}
.mn-mob-rec-price-now span{
  font-size:15px;
  font-weight:800;
  color:var(--mn-muted);
}
.mn-mob-rec-chips{
  display:flex;
  flex-wrap:wrap;
  gap:7px;
}
.mn-mob-rec-chip{
  display:inline-flex;
  align-items:center;
  padding:6px 9px;
  border-radius:7px;
  background:var(--mn-soft);
  color:var(--mn-text);
  font-size:13px;
  font-weight:700;
  line-height:1;
}
.mn-mob-rec-meta-line{
  color:var(--mn-muted);
  font-size:13px;
  line-height:1.45;
}
.mn-mob-rec-meta-line--promo{
  color:var(--mn-green-dark);
  font-weight:800;
}
.mn-mob-rec-cta{
  margin-top:auto;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  min-height:44px;
  padding:11px 16px;
  border-radius:8px;
  border:1px solid var(--mn-green-dark);
  background:var(--mn-green);
  color:#fff !important;
  text-decoration:none !important;
  font-weight:900;
  font-size:15px;
  box-shadow:none;
}
.mn-mob-rec-cta:hover,
.mn-mob-rec-cta:focus{
  background:var(--mn-green-dark);
  color:#fff !important;
}
@media (max-width: 980px){
  .mn-mob-recommendations-grid{grid-template-columns:1fr;}
}
