/* Hotfix 2.4.3 — Stats + Featured Vehicles Premium */
.mo-eyebrow{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-size:12px;
  line-height:1;
  font-weight:900;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:#dc2626;
}

.mo-stats-premium-v3{
  padding:38px 0 48px;
  background:linear-gradient(180deg,#f8fafc 0%,#ffffff 100%);
}
.mo-stats-v3-panel{
  display:grid;
  grid-template-columns:minmax(260px,.9fr) minmax(0,1.6fr);
  gap:28px;
  align-items:center;
  padding:30px;
  border:1px solid rgba(226,232,240,.95);
  border-radius:30px;
  background:rgba(255,255,255,.92);
  box-shadow:0 24px 70px rgba(15,23,42,.08);
}
.mo-stats-v3-heading h2{
  margin:12px 0 0;
  max-width:520px;
  font-size:clamp(26px,2.35vw,40px);
  line-height:1.06;
  letter-spacing:-.04em;
  color:#111827;
}
.mo-stats-v3-grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:14px;
}
.mo-stat-v3-card{
  min-height:150px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  gap:18px;
  padding:20px;
  border:1px solid #edf1f7;
  border-radius:24px;
  background:linear-gradient(180deg,#fff 0%,#fbfdff 100%);
  box-shadow:0 14px 34px rgba(15,23,42,.055);
  transition:transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.mo-stat-v3-card:hover{
  transform:translateY(-4px);
  border-color:rgba(220,38,38,.22);
  box-shadow:0 22px 46px rgba(15,23,42,.095);
}
.mo-stat-v3-icon{
  width:46px;
  height:46px;
  display:grid;
  place-items:center;
  border-radius:16px;
  color:#dc2626;
  background:#fff1f2;
}
.mo-stat-v3-icon svg{
  width:24px;
  height:24px;
  fill:currentColor;
}
.mo-stat-v3-card strong{
  display:block;
  font-size:clamp(30px,2.4vw,44px);
  line-height:1;
  letter-spacing:-.05em;
  color:#111827;
}
.mo-stat-v3-card span{
  display:block;
  margin-top:8px;
  font-size:13px;
  font-weight:900;
  color:#64748b;
}

.mo-featured-premium-v3{
  padding:74px 0 86px;
  background:#fff;
}
.mo-featured-v3-head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:24px;
  margin-bottom:28px;
}
.mo-featured-v3-head h2{
  margin:12px 0 8px;
  font-size:clamp(34px,3vw,54px);
  line-height:1.02;
  letter-spacing:-.055em;
  color:#111827;
}
.mo-featured-v3-head p{
  margin:0;
  max-width:680px;
  font-size:17px;
  line-height:1.65;
  color:#64748b;
}
.mo-featured-v3-link{
  flex:0 0 auto;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:46px;
  padding:0 18px;
  border-radius:999px;
  border:1px solid #e2e8f0;
  color:#111827;
  font-weight:900;
  text-decoration:none;
  background:#fff;
  box-shadow:0 12px 24px rgba(15,23,42,.055);
  transition:all .25s ease;
}
.mo-featured-v3-link:hover{
  border-color:#dc2626;
  color:#dc2626;
  transform:translateY(-2px);
}
.mo-featured-v3-grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:22px;
}
.mo-featured-v3-card{
  border-radius:28px;
  overflow:hidden;
  background:#fff;
  border:1px solid #e8edf5;
  box-shadow:0 18px 48px rgba(15,23,42,.08);
  transition:transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}
.mo-featured-v3-card:hover{
  transform:translateY(-7px);
  border-color:rgba(220,38,38,.22);
  box-shadow:0 30px 70px rgba(15,23,42,.14);
}
.mo-featured-v3-card a{
  color:inherit;
  text-decoration:none;
  display:block;
  height:100%;
}
.mo-featured-v3-photo{
  position:relative;
  aspect-ratio:1.36/1;
  background:#111827;
  overflow:hidden;
}
.mo-featured-v3-photo img{
    width:100%;
    height:100%;
    object-fit:cover;

    transform:scale(1.02);

    filter:
        brightness(1.05)
        contrast(1.06)
        saturate(1.08);

    transition:
        transform .45s ease,
        filter .45s ease;
}
.mo-featured-v3-card:hover .mo-featured-v3-photo img{
    transform:scale(1.06);

    filter:
        brightness(1.08)
        contrast(1.10)
        saturate(1.15);
}
.mo-featured-v3-photo-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        180deg,
        rgba(15,23,42,.02),
        rgba(15,23,42,.08)
    );
    pointer-events:none;
}
.mo-featured-v3-tags{
  position:absolute;
  left:14px;
  right:14px;
  bottom:14px;
  display:flex;
  justify-content:space-between;
  gap:8px;
}
.mo-featured-v3-tags span{
  display:inline-flex;
  align-items:center;
  max-width:70%;
  min-height:30px;
  padding:0 10px;
  border-radius:999px;
  background:rgba(255,255,255,.92);
  color:#111827;
  font-size:12px;
  font-weight:900;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
  backdrop-filter:blur(10px);
}
.mo-featured-v3-tags span:last-child{
  max-width:none;
  background:#dc2626;
  color:#fff;
}
.mo-featured-v3-no-photo{
  height:100%;
  display:grid;
  place-items:center;
  color:#cbd5e1;
  font-weight:900;
  background:linear-gradient(135deg,#111827,#334155);
}
.mo-featured-v3-body{
  padding:20px;
}
.mo-featured-v3-body h3{
  margin:0;
  min-height:54px;
  font-size:19px;
  line-height:1.25;
  letter-spacing:-.025em;
  color:#111827;
}
.mo-featured-v3-subtitle{
  margin:8px 0 0;
  color:#64748b;
  font-weight:700;
  line-height:1.45;
  min-height:42px;
}
.mo-featured-v3-specs{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin:18px 0;
}
.mo-featured-v3-specs span{
  display:inline-flex;
  align-items:center;
  min-height:30px;
  padding:0 9px;
  border-radius:999px;
  background:#f8fafc;
  border:1px solid #edf1f7;
  color:#475569;
  font-size:12px;
  font-weight:850;
}
.mo-featured-v3-footer{
  display:flex;
  align-items:end;
  justify-content:space-between;
  gap:12px;
  padding-top:18px;
  border-top:1px solid #edf1f7;
}
.mo-featured-v3-price small{
  display:block;
  margin-bottom:4px;
  color:#94a3b8;
  font-size:11px;
  font-weight:900;
  letter-spacing:.09em;
  text-transform:uppercase;
}
.mo-featured-v3-price strong{
  display:block;
  color:#b91c1c;
  font-size:21px;
  line-height:1;
  letter-spacing:-.035em;
  white-space:nowrap;
}
.mo-featured-v3-cta{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:38px;
  padding:0 12px;
  border-radius:999px;
  background:#111827;
  color:#fff;
  font-size:12px;
  font-weight:900;
  white-space:nowrap;
}
.mo-featured-empty{
  padding:34px;
  border:1px dashed #cbd5e1;
  border-radius:24px;
  background:#f8fafc;
  color:#64748b;
}
.mo-featured-empty strong{
  display:block;
  color:#111827;
  font-size:20px;
  margin-bottom:6px;
}

@media(max-width:1180px){
  .mo-stats-v3-panel{grid-template-columns:1fr;}
  .mo-featured-v3-grid{grid-template-columns:repeat(2,minmax(0,1fr));}
}
@media(max-width:760px){
  .mo-stats-premium-v3{padding:28px 0 34px;}
  .mo-stats-v3-panel{padding:20px;border-radius:24px;}
  .mo-stats-v3-grid{grid-template-columns:repeat(2,minmax(0,1fr));}
  .mo-stat-v3-card{min-height:132px;padding:16px;}
  .mo-featured-premium-v3{padding:52px 0 62px;}
  .mo-featured-v3-head{display:block;}
  .mo-featured-v3-link{margin-top:18px;}
  .mo-featured-v3-grid{grid-template-columns:1fr;}
}
@media(max-width:440px){
  .mo-stats-v3-grid{grid-template-columns:1fr;}
}
