
:root{
  --bg:#0f1720;
  --bg-2:#121b25;
  --panel:#1b2837;
  --line:rgba(255,255,255,.10);
  --text:#e9eef4;
  --muted:#9dafc1;
  --blue:#3f79b8;
  --blue-2:#77a8dc;
  --accent:#f39b28;
  --shadow:0 18px 48px rgba(0,0,0,.28);
  --radius:20px;
  --max:1200px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Arial,Helvetica,sans-serif;
  color:var(--text);
  background:
    radial-gradient(circle at top left, rgba(119,168,220,.12), transparent 28%),
    linear-gradient(180deg,#0b1219 0%,#111922 45%,#0f1720 100%);
  line-height:1.6;
}
img{max-width:100%;display:block}
a{text-decoration:none;color:inherit}
.container{width:min(calc(100% - 32px), var(--max));margin:0 auto}
.section{padding:88px 0}
.eyebrow{
  display:inline-block;font-size:12px;font-weight:700;letter-spacing:.18em;
  text-transform:uppercase;color:var(--blue-2);margin-bottom:14px
}
h1,h2,h3,h4,p{margin:0}
h1{font-size:clamp(40px,7vw,72px);line-height:1.02}
h2{font-size:clamp(30px,4.4vw,48px);line-height:1.12}
h3{font-size:24px;line-height:1.25}
p.lead{font-size:18px;color:#cfdae5}
p.copy{color:var(--muted)}
.btns{display:flex;gap:14px;flex-wrap:wrap;margin-top:28px}
.btn{
  display:inline-flex;align-items:center;justify-content:center;min-height:48px;
  padding:0 22px;border-radius:999px;font-weight:700;transition:.2s ease;border:1px solid transparent
}
.btn-primary{background:var(--accent);color:#10161d}
.btn-secondary{border-color:rgba(255,255,255,.16);color:#fff;background:rgba(255,255,255,.02)}
.topbar{
  position:sticky;top:0;z-index:20;backdrop-filter:blur(10px);
  background:rgba(9,14,20,.78);border-bottom:1px solid rgba(255,255,255,.08)
}
.topbar-inner{
  width:min(calc(100% - 28px),1240px);margin:0 auto;min-height:74px;
  display:flex;align-items:center;justify-content:space-between;gap:22px
}
.brand{display:flex;align-items:center;gap:14px;font-weight:800;letter-spacing:.02em}
.brand-mark{
  width:44px;height:44px;border-radius:12px;
  background:linear-gradient(135deg,var(--accent),#ffcf7b 45%,#4e89ca 46%,#2f5b8b);
  box-shadow:inset 0 0 0 1px rgba(255,255,255,.18)
}
.brand small{
  display:block;color:var(--muted);font-size:12px;font-weight:600;
  letter-spacing:.08em;text-transform:uppercase
}
nav ul{list-style:none;display:flex;gap:26px;padding:0;margin:0;flex-wrap:wrap}
nav a{color:#dce6f0;font-size:14px;font-weight:700}
nav a.active,nav a:hover{color:#fff}
.page-hero{
  position:relative;overflow:hidden;border-bottom:1px solid rgba(255,255,255,.07);
  background:
    linear-gradient(115deg, rgba(12,19,28,.95) 0%, rgba(18,27,37,.92) 50%, rgba(19,30,41,.86) 100%),
    url('assets/hero.png') center/cover no-repeat
}
.page-hero::before{
  content:"";position:absolute;inset:0;
  background:
    radial-gradient(circle at 82% 15%, rgba(119,168,220,.22), transparent 22%),
    linear-gradient(90deg, rgba(12,18,25,.92) 0%, rgba(12,18,25,.78) 42%, rgba(12,18,25,.45) 64%, rgba(12,18,25,.65) 100%)
}
.page-hero-inner{position:relative;min-height:360px;display:grid;align-items:center;padding:74px 0}
.hero-grid{display:grid;grid-template-columns:1.05fr .95fr;gap:42px;align-items:center}
.panel{
  background:linear-gradient(180deg, rgba(25,38,51,.88), rgba(14,22,30,.88));
  border:1px solid rgba(255,255,255,.12);border-radius:28px;box-shadow:var(--shadow);overflow:hidden
}
.panel img{width:100%;height:100%;min-height:320px;object-fit:cover}
.grid-2{display:grid;grid-template-columns:1fr 1fr;gap:28px}
.grid-3{display:grid;grid-template-columns:repeat(3,1fr);gap:24px}
.card{
  background:linear-gradient(180deg, rgba(29,43,57,.86), rgba(20,31,42,.96));
  border:1px solid var(--line);border-radius:var(--radius);box-shadow:var(--shadow)
}
.pad{padding:26px}
.service-card{overflow:hidden}
.service-card img{height:220px;width:100%;object-fit:cover;border-bottom:1px solid var(--line)}
.service-card .body{padding:22px}
.spec-list,.bullet-list{display:grid;gap:12px;margin-top:18px}
.spec{
  border:1px solid rgba(255,255,255,.08);background:rgba(255,255,255,.03);
  border-radius:16px;padding:14px 16px;color:#d7e0e9
}
.bullet{display:flex;gap:10px;color:var(--muted);font-size:15px}
.dot{width:8px;height:8px;border-radius:999px;background:var(--accent);margin-top:9px;flex:0 0 auto}
.gallery-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}
.gallery-item{
  position:relative;border-radius:18px;overflow:hidden;min-height:255px;
  border:1px solid rgba(255,255,255,.08);background:#101923
}
.gallery-item img{width:100%;height:100%;object-fit:cover}
.gallery-caption{
  position:absolute;left:0;right:0;bottom:0;padding:16px 16px 14px;
  background:linear-gradient(180deg, rgba(5,8,12,0), rgba(5,8,12,.88))
}
.gallery-caption h4{font-size:17px}
.gallery-caption span{font-size:13px;color:#c7d3df}
.case-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:22px}
.case-card{display:grid;grid-template-columns:240px 1fr;overflow:hidden}
.case-card img{width:100%;height:100%;object-fit:cover}
.case-card .content{padding:22px}
.badge-row{display:flex;gap:12px;flex-wrap:wrap;margin-top:20px}
.badge{
  display:inline-flex;padding:8px 12px;border-radius:999px;border:1px solid rgba(255,255,255,.12);
  color:#dce6f0;background:rgba(255,255,255,.03);font-size:12px;font-weight:700;letter-spacing:.06em;text-transform:uppercase
}
.process-steps{display:grid;grid-template-columns:repeat(4,1fr);gap:16px;margin-top:24px}
.step{
  padding:20px;border-radius:18px;background:rgba(255,255,255,.03);border:1px solid rgba(255,255,255,.08)
}
.step-number{
  width:36px;height:36px;border-radius:999px;display:inline-flex;align-items:center;justify-content:center;
  background:var(--accent);color:#151b22;font-weight:800;margin-bottom:12px
}
.contact-wrap{display:grid;grid-template-columns:1.05fr .95fr;gap:26px}
.contact-card{padding:28px}
.contact-list{display:grid;gap:14px;margin-top:18px}
.contact-item{
  padding:16px 18px;border-radius:16px;border:1px solid rgba(255,255,255,.08);background:rgba(255,255,255,.03)
}
.footer{border-top:1px solid rgba(255,255,255,.08);padding:30px 0 40px;color:var(--muted);background:#0b1118}
.footer-grid{display:grid;grid-template-columns:1.2fr .8fr .8fr;gap:22px}
.footer a{color:#d8e0e8}
.muted-line{height:1px;background:rgba(255,255,255,.08);margin:22px 0}
.note{font-size:13px;color:var(--muted)}
.cta-band{
  border-top:1px solid rgba(255,255,255,.07);border-bottom:1px solid rgba(255,255,255,.07);
  background:linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.01))
}
.cta-band-inner{padding:30px 0;display:flex;justify-content:space-between;align-items:center;gap:20px}
.about-hero-title{
  font-size: clamp(20px, 2.55vw, 32px);
  line-height: 1.16;
  font-weight: 800;
  letter-spacing: 0.003em;
  max-width: 860px;
  color: #f4f7fb;
  text-shadow: 0 2px 14px rgba(0,0,0,.24);
}
.about-line{white-space: nowrap; display:inline-block}
@media (max-width:900px){
  .about-hero-title{font-size: clamp(18px, 3.2vw, 26px);line-height: 1.18;max-width:100%}
}
@media (max-width:1100px){
  .hero-grid,.contact-wrap,.footer-grid,.grid-3,.process-steps,.gallery-grid,.case-grid,.grid-2{grid-template-columns:1fr 1fr}
  .case-card{grid-template-columns:1fr}
}
@media (max-width:760px){
  .topbar-inner{padding:10px 0;align-items:flex-start;flex-direction:column}
  nav ul{gap:14px}
  .hero-grid,.contact-wrap,.footer-grid,.grid-3,.process-steps,.gallery-grid,.case-grid,.grid-2,.cta-band-inner{grid-template-columns:1fr;display:grid}
  .section{padding:70px 0}
  .about-hero-title{font-size: clamp(16px, 4.4vw, 22px);line-height:1.2}
  .about-line{white-space: normal}
}


.nowrap{white-space:nowrap}
.about-hero-title{
  line-height: 1.5;
}
.feature-points{
  margin-top:18px;
  display:grid;
  gap:10px;
}
.feature-point{
  position:relative;
  padding-left:18px;
  color:#d7e0e9;
  font-size:15px;
  line-height:1.65;
}
.feature-point::before{
  content:"◆";
  position:absolute;
  left:0;
  top:0;
  color:#77a8dc;
  font-size:12px;
  line-height:2.0;
}


.industries-image{
  height: 420px !important;
  object-fit: contain !important;
  object-position: center center !important;
  background: linear-gradient(180deg, rgba(11,18,25,.96), rgba(17,25,34,.96));
  padding: 14px;
}


.case-link{display:block;width:100%;height:100%}
.case-link:hover img{transform:scale(1.03)}
.case-card-link{display:block}
.case-card-link:hover img{filter:brightness(1.03)}
.case-gallery-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:20px;
}
@media (max-width:900px){
  .case-gallery-grid{grid-template-columns:1fr}
}


.cases-gallery-image{
  width: 75% !important;
  height: auto !important;
  max-height: 75% !important;
  object-fit: contain !important;
  object-position: center center !important;
  display: block;
  margin: 22px auto 0 auto;
}
.gallery-item{
  display:flex;
  align-items:center;
  justify-content:center;
  min-height: 420px;
  padding: 0 0 18px 0;
}
.gallery-item .case-link{
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:flex-start;
  width:100%;
  height:100%;
}
.gallery-item .gallery-caption{
  left:18px;
  right:18px;
  bottom:14px;
}


/* Refined cases grid for consistent image and text balance */
.gallery-grid{
  align-items:stretch;
}
.gallery-item{
  min-height: 500px !important;
  padding: 14px 14px 18px 14px !important;
  background: linear-gradient(180deg, rgba(8,14,21,.96), rgba(12,20,31,.98)) !important;
  border: 1px solid rgba(255,255,255,.09) !important;
}
.gallery-item .case-link{
  display:flex !important;
  flex-direction:column !important;
  justify-content:space-between !important;
  align-items:stretch !important;
  width:100% !important;
  height:100% !important;
}
.cases-gallery-image{
  width: 78% !important;
  height: 250px !important;
  max-height: none !important;
  object-fit: contain !important;
  object-position: center center !important;
  display: block !important;
  margin: 8px auto 0 auto !important;
  flex: 0 0 auto !important;
}
.cases-caption{
  position: static !important;
  margin-top: 18px !important;
  padding: 0 8px 2px 8px !important;
  background: none !important;
  min-height: 118px !important;
  display:flex !important;
  flex-direction:column !important;
  justify-content:flex-start !important;
}
.cases-card-title{
  font-size: 19px !important;
  line-height: 1.2 !important;
  color: #ffffff !important;
  min-height: 46px !important;
  margin: 0 0 8px 0 !important;
}
.cases-card-subtitle{
  display:block !important;
  font-size: 14px !important;
  line-height: 1.45 !important;
  color: #d7e3ef !important;
  min-height: 42px !important;
}
@media (max-width: 1100px){
  .gallery-item{
    min-height: 470px !important;
  }
  .cases-gallery-image{
    height: 230px !important;
    width: 80% !important;
  }
}
@media (max-width: 760px){
  .gallery-item{
    min-height: 430px !important;
  }
  .cases-gallery-image{
    width: 82% !important;
    height: 210px !important;
  }
  .cases-caption{
    min-height: 100px !important;
  }
  .cases-card-title{
    font-size: 18px !important;
    min-height: auto !important;
  }
  .cases-card-subtitle{
    font-size: 13px !important;
    min-height: auto !important;
  }
}


/* Shrink only the top-right hero image on the 6 case subpages */
.subpage-hero-image{
  width: 70% !important;
  height: auto !important;
  max-height: 70% !important;
  object-fit: contain !important;
  object-position: center center !important;
  display: block !important;
  margin: 20px auto !important;
}
.panel:has(.subpage-hero-image){
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;
  min-height: 320px !important;
  padding: 10px !important;
}


/* ===== Full-site merge patch v19 ===== */

/* Cases page spacing tune */
.cases-item{
  min-height: 425px !important; /* shrink roughly 15% from the earlier card height */
}
.cases-textbox{
  margin-top: 12px !important; /* closer to image */
  min-height: 100px !important;
  padding: 0 8px 0 8px !important;
}
.cases-title{
  margin: 0 0 6px 0 !important; /* smaller title/subtitle gap */
  min-height: 0 !important;
}
.cases-subtitle{
  line-height: 1.35 !important;
}
@media (max-width: 1100px){
  .cases-item{
    min-height: 405px !important;
  }
}
@media (max-width: 760px){
  .cases-item{
    min-height: 380px !important;
  }
  .cases-textbox{
    min-height: auto !important;
  }
}

/* Diesel case study: relayout image gallery so images show fully and look cleaner */
body.diesel-case-page .diesel-gallery-wrap{
  max-width: 1180px;
  margin: 24px auto 0;
}
body.diesel-case-page .diesel-gallery-grid{
  display: grid !important;
  grid-template-columns: 1.15fr 1fr 1fr !important;
  gap: 20px !important;
  align-items: stretch;
}
body.diesel-case-page .diesel-card{
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
}
body.diesel-case-page .diesel-card .body{
  padding: 16px 18px 18px;
}
body.diesel-case-page .diesel-gallery-image{
  display: block;
  width: 100%;
  object-fit: contain !important;
  object-position: center center;
  background: #ffffff;
  border-bottom: 1px solid var(--line);
}
body.diesel-case-page .diesel-card-main{
  grid-row: span 2;
}
body.diesel-case-page .diesel-card-wide{
  grid-column: span 2;
}
body.diesel-case-page .diesel-hero-card-image{
  height: 520px;
  padding: 16px;
}
body.diesel-case-page .diesel-wide-image{
  height: 300px;
  padding: 16px;
}
body.diesel-case-page .diesel-card-small .diesel-gallery-image{
  height: 220px;
  padding: 16px;
}
@media (max-width: 1100px){
  body.diesel-case-page .diesel-gallery-grid{
    grid-template-columns: 1fr 1fr !important;
  }
  body.diesel-case-page .diesel-card-main{
    grid-row: span 1;
  }
  body.diesel-case-page .diesel-card-wide{
    grid-column: span 2;
  }
}
@media (max-width: 760px){
  body.diesel-case-page .diesel-gallery-grid{
    grid-template-columns: 1fr !important;
  }
  body.diesel-case-page .diesel-card-wide{
    grid-column: span 1;
  }
  body.diesel-case-page .diesel-hero-card-image,
  body.diesel-case-page .diesel-wide-image,
  body.diesel-case-page .diesel-card-small .diesel-gallery-image{
    height: auto;
    min-height: 240px;
  }
}

/* Slightly better balance for subpage hero image panels */
.panel:has(.subpage-hero-image){
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  min-height: 280px !important;
}


/* ===== v21 diesel page adjustments based on full v19 ===== */
body.diesel-case-page .diesel-card{
  background: #e9eaec !important;
  border: 1px solid #d5d8dd !important;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}

body.diesel-case-page .diesel-gallery-image{
  background: #e9eaec !important;
  border-bottom: 1px solid #d5d8dd !important;
}

body.diesel-case-page .diesel-card .body{
  background: #e9eaec !important;
  padding: 14px 18px 16px !important;
}

body.diesel-case-page .diesel-card .body h3{
  color: #172433 !important;
  margin: 0 !important;
}

body.diesel-case-page .diesel-card .body p,
body.diesel-case-page .diesel-card .body .copy{
  color: #314154 !important;
}

body.diesel-case-page .diesel-card-wide .diesel-gallery-image{
  height: 320px !important;
  padding: 8px !important;
  object-fit: contain !important;
}

body.diesel-case-page .diesel-card-small .diesel-gallery-image{
  background: #e9eaec !important;
}

/* Keep the 4-card composition balanced after removing the last card */
@media (max-width: 1100px){
  body.diesel-case-page .diesel-card-wide{
    grid-column: span 2 !important;
  }
}
@media (max-width: 760px){
  body.diesel-case-page .diesel-card-wide{
    grid-column: span 1 !important;
  }
}


/* ===== v25 case visual-card background matching update ===== */
/* Unified case-study hero image size/layout to match Assembly And Error-proofing page */
.subpage-hero-image{
  width:auto !important;
  height:410px !important;
  max-width:96% !important;
  max-height:none !important;
  object-fit:contain !important;
  object-position:center center !important;
  display:block !important;
  margin:10px auto !important;
}
.page-hero .panel:has(.subpage-hero-image){
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;
  min-height:430px !important;
  max-width:620px;
  margin-left:auto;
  margin-right:auto;
  padding:8px !important;
}

/* Project Visuals: make images show fully on the requested six case subpages */
body.case-visual-bg-match .case-gallery-grid{
  display:grid !important;
  grid-template-columns:repeat(2, minmax(0, 1fr)) !important;
  gap:20px !important;
  align-items:stretch;
}
body.case-visual-bg-match .service-card{
  display:flex;
  flex-direction:column;
  height:100%;
  overflow:hidden;
  background:#e9eaec !important;
  border:1px solid #d5d8dd !important;
  box-shadow:0 10px 24px rgba(0,0,0,.14);
}
body.case-visual-bg-match .service-card img{
  width:100% !important;
  height:300px !important;
  object-fit:contain !important;
  object-position:center center !important;
  background:#e9eaec !important;
  padding:10px !important;
  border-bottom:1px solid #d5d8dd !important;
}
body.case-visual-bg-match.excavator-case-page .service-card img{
  height:320px !important;
}
body.case-visual-bg-match .service-card .body{
  background:#e9eaec !important;
  padding:16px 18px 18px !important;
  color:#172433 !important;
}
body.case-visual-bg-match .service-card .body h3{
  color:#172433 !important;
  margin:0 !important;
}
body.case-visual-bg-match .service-card .body p,
body.case-visual-bg-match .service-card .body .copy{
  color:#314154 !important;
}

/* Diesel page keeps its custom 4-card composition while matching text-box/background color */
body.diesel-case-page .diesel-gallery-wrap{
  max-width:1180px;
  margin:24px auto 0;
}
body.diesel-case-page .diesel-gallery-grid{
  display:grid !important;
  grid-template-columns:1.15fr 1fr 1fr !important;
  gap:20px !important;
  align-items:stretch;
}
body.diesel-case-page .diesel-card-main{grid-row:span 2;}
body.diesel-case-page .diesel-card-wide{grid-column:span 2;}
body.diesel-case-page .diesel-hero-card-image{height:520px !important;}
body.diesel-case-page .diesel-card-wide .diesel-gallery-image{height:320px !important;}
body.diesel-case-page .diesel-card-small .diesel-gallery-image{height:220px !important;}

@media (max-width:1100px){
  .subpage-hero-image{height:360px !important;}
  .page-hero .panel:has(.subpage-hero-image){min-height:380px !important;}
  body.case-visual-bg-match .case-gallery-grid{grid-template-columns:1fr 1fr !important;}
  body.diesel-case-page .diesel-card-main{grid-row:span 1;}
  body.diesel-case-page .diesel-card-wide{grid-column:span 2 !important;}
}
@media (max-width:760px){
  .subpage-hero-image{width:92% !important;height:auto !important;max-height:360px !important;}
  .page-hero .panel:has(.subpage-hero-image){min-height:300px !important;}
  body.case-visual-bg-match .case-gallery-grid,
  body.diesel-case-page .diesel-gallery-grid{grid-template-columns:1fr !important;}
  body.case-visual-bg-match .service-card img{
    height:auto !important;
    min-height:260px !important;
  }
  body.diesel-case-page .diesel-card-wide{grid-column:span 1 !important;}
  body.diesel-case-page .diesel-hero-card-image,
  body.diesel-case-page .diesel-card-wide .diesel-gallery-image,
  body.diesel-case-page .diesel-card-small .diesel-gallery-image{
    height:auto !important;
    min-height:240px !important;
  }
}

/* ===== v9 contact image replacement and v8 support arm preservation ===== */
body.contact-page .page-hero .panel img,
body.contact-page .contact-card > img{
  width:100% !important;
  object-fit:cover !important;
  object-position:center center !important;
}
body.contact-page .page-hero .panel img{
  height:100% !important;
  min-height:320px !important;
}
body.contact-page .contact-card > img{
  height:260px !important;
}
body.diesel-case-page .support-arm-image-65{
  height: 858px !important;
  width: auto !important;
  max-width: 100% !important;
  object-fit: contain !important;
  object-position: center top !important;
  display: block !important;
  margin: 0 auto !important;
  padding-top: 0 !important;
}
body.diesel-case-page .diesel-card-main .body{
  padding-top: 14px !important;
  padding-bottom: 18px !important;
}
body.diesel-case-page .diesel-card-main .body h3{
  line-height: 1.24 !important;
}
@media (max-width:760px){
  body.diesel-case-page .support-arm-image-65{
    height: auto !important;
    min-height: 240px !important;
    max-height: none !important;
  }
}


/* ===== v11 support arm 1.6x and title lower ===== */
body.diesel-case-page .support-arm-image-65{
  height: 832px !important; /* 520px × 1.6 */
  width: auto !important;
  max-width: 100% !important;
  object-fit: contain !important;
  object-position: center top !important;
  display: block !important;
  margin: 0 auto !important;
  padding-top: 0 !important;
  padding-bottom: 22px !important;
}
body.diesel-case-page .diesel-card-main .body{
  padding-top: 34px !important;
  padding-bottom: 22px !important;
}
body.diesel-case-page .diesel-card-main .body h3{
  line-height: 1.25 !important;
}
@media (max-width:760px){
  body.diesel-case-page .support-arm-image-65{
    height: auto !important;
    min-height: 240px !important;
    max-height: none !important;
    padding-bottom: 10px !important;
  }
  body.diesel-case-page .diesel-card-main .body{
    padding-top: 18px !important;
  }
}


/* ===== v12 Support Arm image: true 1.6x visual enlargement and lower title ===== */
body.diesel-case-page .support-arm-v12-zoom{
  height: 832px !important;
  width: 100% !important;
  max-width: none !important;
  object-fit: contain !important;
  object-position: center top !important;
  margin: 0 auto !important;
  padding: 0 0 0 0 !important;
  display: block !important;
}
body.diesel-case-page .diesel-card-main .body{
  padding-top: 58px !important;
  padding-bottom: 24px !important;
}
body.diesel-case-page .diesel-card-main .body h3{
  margin-top: 0 !important;
  line-height: 1.25 !important;
}
@media (max-width:760px){
  body.diesel-case-page .support-arm-v12-zoom{
    height:auto !important;
    min-height:240px !important;
  }
  body.diesel-case-page .diesel-card-main .body{
    padding-top: 24px !important;
  }
}

/* ===== v14 requested image replacements and support-arm title placement ===== */
body.diesel-case-page .diesel-card-main{
  display:flex !important;
  flex-direction:column !important;
  justify-content:space-between !important;
}
body.diesel-case-page .support-arm-v12-zoom{
  height:832px !important;
  width:100% !important;
  object-fit:contain !important;
  object-position:center center !important;
  padding:0 !important;
  background:#e9eaec !important;
}
body.diesel-case-page .diesel-card-main .body{
  margin-top:auto !important;
  padding-top:26px !important;
  padding-bottom:24px !important;
}
body.engine-leak-case-page .case-gallery-grid{
  grid-template-columns:repeat(2, minmax(0, 1fr)) !important;
}
@media (max-width:760px){
  body.engine-leak-case-page .case-gallery-grid{grid-template-columns:1fr !important;}
  body.diesel-case-page .support-arm-v12-zoom{height:auto !important;min-height:360px !important;}
}
