/* about.css — About page custom styling (shared across zh/en/de) */

.about-cards{ margin-top: 12px; }

.timeline{
  list-style:none;
  margin: 0;
  padding: 0;
  display:grid;
  gap: 12px;
}

.timeline-item{
  display:grid;
  grid-template-columns: 110px 1fr;
  gap: 12px;
  padding: 14px;
  border: 1px solid rgba(15,23,42,.10);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 6px 18px rgba(2,6,23,.06);
}

.timeline-year{
  font-weight: 900;
  font-size: 16px;
  line-height: 1.15;
  color: rgba(15,23,42,.92);
}

.timeline-year span{
  display:block;
  margin-top: 6px;
  font-size: 12px;
  font-weight: 800;
  color: rgba(15,23,42,.55);
  letter-spacing: .02em;
}

.timeline-body{
  color: rgba(15,23,42,.74);
  line-height: 1.75;
  font-size: 14px;
}

.timeline-body p{ margin: 0; }

.service-area{
  display:grid;
  gap: 14px;
}

.map-box{
  border: 1px solid rgba(15,23,42,.10);
  border-radius: 18px;
  overflow: hidden;
  background: rgba(224,242,255,.18);
}

#service-map{
  width: 100%;
  height: 360px;
}

.cn-map-frame{
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  background: #fff;
}

.map-fallback{
  padding: 14px;
  color: rgba(15,23,42,.78);
  line-height: 1.75;
}

.map-meta{
  display:flex;
  flex-direction:column;
  gap: 10px;
}

.meta-row{
  display:grid;
  grid-template-columns: 92px 1fr;
  gap: 10px;
  align-items:start;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(15,23,42,.10);
  background: rgba(255,255,255,.75);
}

.meta-row strong{
  font-size: 13px;
  color: rgba(15,23,42,.88);
}

.meta-row span{
  font-size: 13px;
  color: rgba(15,23,42,.72);
  line-height: 1.6;
}

.about-cta{
  margin-top: 14px;
  display:flex;
  flex-wrap:wrap;
  gap: 10px;
}

/* Make timeline stack nicely on very small screens */
@media (max-width: 520px){
  .timeline-item{ grid-template-columns: 1fr; }
  .meta-row{ grid-template-columns: 1fr; }
  #service-map{ height: 320px; }
}
