/* ==========================================================================
   RuggedRides Export — About Us page (dedicated hero + entity/contact blocks)
   Isolated from app.css on purpose — loaded only on tpl=about, to avoid the
   recurring app.css collision with other editors.
   ========================================================================== */
.about-hero {
  position: relative;
  color: #fff;
  background-size: cover;
  background-position: 50% 38%;
  min-height: clamp(440px, 56vh, 560px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.about-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(190deg, rgba(20,12,7,0.72) 0%, rgba(20,12,7,0.84) 46%, rgba(16,10,6,0.95) 100%);
}
.about-hero-inner { position: relative; z-index: 1; max-width: 840px; padding: 56px 0 40px; }
.about-hero-eyebrow { display: inline-block; font-family: var(--font-head); text-transform: uppercase; letter-spacing: 2px; font-size: 12.5px; font-weight: 600; color: var(--sand); border: 1px solid rgba(255,255,255,0.4); border-radius: 999px; padding: 7px 18px; margin: 0 0 20px; }
.about-hero-title { color: #fff; font-size: clamp(30px, 3vw + 18px, 46px); letter-spacing: -0.5px; line-height: 1.12; margin: 0 0 18px; text-shadow: 0 4px 22px rgba(0,0,0,0.45); }
.about-hero-sub { color: var(--sand); font-size: 16px; max-width: 620px; margin: 0 0 30px; }
.about-hero-entity { display: flex; flex-wrap: wrap; gap: 20px 46px; border-top: 1px solid rgba(255,255,255,0.24); padding-top: 22px; margin: 0; }
.about-hero-entity dt { font-size: 11px; letter-spacing: 1.2px; text-transform: uppercase; color: var(--sand); opacity: .85; margin: 0 0 5px; }
.about-hero-entity dd { margin: 0; font-size: 13.5px; color: #fff; line-height: 1.5; }
.about-hero-entity dd small { display: block; color: var(--sand); font-size: 12px; margin-top: 2px; opacity: .9; }
@media (max-width: 780px) {
  .about-hero { min-height: auto; }
  .about-hero-inner { padding: 44px 0 32px; }
  .about-hero-entity { gap: 16px 30px; }
}

/* contact cards */
.contact-card-list { display: flex; flex-direction: column; gap: 12px; margin-top: 16px; }
.contact-card { display: flex; align-items: center; gap: 14px; border: 1px solid var(--line); border-radius: 12px; padding: 14px 18px; background: var(--card); transition: border-color .15s, box-shadow .15s, transform .15s; }
.contact-card:hover { border-color: var(--rust); box-shadow: 0 6px 18px rgba(193,80,31,0.14); text-decoration: none; transform: translateY(-1px); }
.contact-card-icon { width: 42px; height: 42px; border-radius: 10px; background: #e6f4ec; color: #279a5b; display: flex; align-items: center; justify-content: center; flex: 0 0 auto; }
.contact-card-icon svg { width: 22px; height: 22px; }
.contact-card-icon.mail { background: #eaf1fb; color: #2b5fa8; }
.contact-card-body { flex: 1; min-width: 0; }
.contact-card-label { display: block; font-size: 11px; letter-spacing: 1px; text-transform: uppercase; color: var(--ink-soft); font-weight: 600; }
.contact-card-value { display: block; font-size: 16px; font-weight: 700; color: var(--ink); margin-top: 2px; word-break: break-word; }
.contact-card-arrow { color: var(--ink-soft); font-size: 18px; flex: 0 0 auto; }

/* legal entity card */
.entity-card { border: 1px solid var(--line); border-radius: 10px; padding: 6px 20px; background: var(--card); }
.entity-row { padding: 14px 0; border-bottom: 1px dashed var(--line); }
.entity-row:last-child { border-bottom: none; }
.entity-k { display: block; font-size: 11px; letter-spacing: 1px; text-transform: uppercase; color: var(--ink-soft); font-weight: 600; margin-bottom: 6px; }
.entity-v { font-size: 14.5px; color: var(--ink); line-height: 1.55; }
.entity-v-cn { display: block; font-size: 13px; color: var(--ink-soft); margin-top: 3px; }

/* find-us map card */
.about-map-card { position: relative; border-radius: 14px; overflow: hidden; border: 1px solid var(--line); box-shadow: 0 10px 30px rgba(0,0,0,0.10); }
.about-map-frame { width: 100%; height: 420px; border: 0; display: block; filter: grayscale(0.15) contrast(1.05); }
.about-map-panel { position: absolute; left: 24px; bottom: 24px; max-width: 360px; background: rgba(20,12,7,0.92); color: #fff; border-radius: 12px; padding: 20px 22px; box-shadow: 0 12px 30px rgba(0,0,0,0.3); }
.about-map-eyebrow { font-family: var(--font-head); text-transform: uppercase; letter-spacing: 1.5px; font-size: 11px; color: var(--sand); margin: 0 0 8px; }
.about-map-address { font-size: 13.5px; line-height: 1.55; margin: 0 0 12px; color: #fff; }
.about-map-address-cn { display: block; color: var(--sand); font-size: 12px; margin-top: 4px; opacity: .9; }
.about-map-panel .link-inline { color: var(--sand); font-weight: 600; }
.about-map-panel .link-inline:hover { color: #fff; }
@media (max-width: 620px) {
  .about-map-panel { position: static; margin: 0; border-radius: 0 0 12px 12px; max-width: none; box-shadow: none; }
  .about-map-frame { height: 280px; }
}
