/* Lugan.Online Phase 3 v3.0.6 — full motorcycle hero fix */

/* Desktop: show the complete source image with zero cropping. */
.hero {
  align-items: start !important;
  overflow: visible !important;
}

.hero-visual {
  position: relative !important;
  min-width: 0 !important;
  min-height: 0 !important;
  height: auto !important;
  display: flex !important;
  align-items: flex-start !important;
  justify-content: center !important;
  padding: 14px 16px 18px !important;
  overflow: visible !important;
}

.hero-visual .map-lines,
.hero-visual .pin {
  display: none !important;
}

.hero-vehicle-image {
  position: relative !important;
  inset: auto !important;
  display: block !important;
  width: 100% !important;
  max-width: 980px !important;
  height: auto !important;
  max-height: none !important;
  min-height: 0 !important;
  margin: 0 auto !important;
  padding: 0 !important;
  transform: none !important;
  object-fit: contain !important;
  object-position: center center !important;
  border-radius: 18px !important;
  box-shadow: none !important;
  filter: none !important;
  clip-path: none !important;
}

/* The image itself already contains all four province labels. */
@media (min-width: 1181px) {
  .hero {
    grid-template-columns: minmax(380px, .92fr) minmax(640px, 1.28fr) !important;
    column-gap: 12px !important;
  }
  .hero-visual {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
}

@media (max-width: 1180px) {
  .hero {
    grid-template-columns: 1fr !important;
  }
  .hero-visual {
    padding: 12px 16px 22px !important;
  }
  .hero-vehicle-image {
    width: min(100%, 920px) !important;
  }
}

@media (max-width: 640px) {
  .hero-visual {
    padding: 10px 8px 18px !important;
  }
  .hero-vehicle-image {
    width: 100% !important;
    max-width: 100% !important;
    border-radius: 12px !important;
  }
}


/* v3.0.6 cross-browser image integrity */
.hero-visual{
  box-sizing:border-box !important;
  overflow:visible !important;
}
.hero-vehicle-image{
  box-sizing:border-box !important;
  width:auto !important;
  max-width:100% !important;
  height:auto !important;
  max-height:none !important;
  aspect-ratio:auto !important;
  object-fit:contain !important;
  object-position:center !important;
  margin-inline:auto !important;
}
@media (min-width:1181px){
  .hero-vehicle-image{width:min(100%,980px) !important;}
}
@media (max-width:1180px){
  .hero-vehicle-image{width:min(100%,920px) !important;}
}


/* Phase 3 v3.0.7 — advertising tagline */
.promo-tagline{
  margin-top:22px;
  display:grid;
  grid-template-columns:auto 1fr auto;
  align-items:center;
  gap:10px 14px;
  padding:14px 16px;
  max-width:680px;
  border:1px solid #d8e6fb;
  border-radius:16px;
  background:linear-gradient(135deg,#f7fbff 0%,#ffffff 100%);
  box-shadow:0 10px 26px rgba(7,29,59,.06);
}
.promo-tagline strong{
  color:#0d5fe7;
  font-size:17px;
  white-space:nowrap;
}
.promo-tagline span{
  color:#10213d;
  font-weight:700;
  line-height:1.35;
}
.promo-book{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:42px;
  padding:10px 16px;
  border-radius:11px;
  background:#ffbd00;
  color:#071d3b;
  font-weight:900;
  white-space:nowrap;
}
.promo-book:hover{filter:brightness(.97);}
@media(max-width:760px){
  .promo-tagline{
    grid-template-columns:1fr;
    align-items:start;
  }
  .promo-tagline strong{white-space:normal;}
  .promo-book{width:100%;}
}
