/* ============================
   ABOUT PAGE
   Relies on global marketing.css
   ============================ */

.cm-page--about {
  /* If you want About-specific tuning later, put vars here */
}

/* Pillar cards */
.cm-page--about .cm-about-card {
  border-radius: var(--cm-radius-md);
  border: 1px solid var(--cm-border-soft);
  padding: 1.15rem 1.2rem;
  background: var(--cm-surface);
  box-shadow: var(--cm-shadow-soft);
  height: 100%;
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease, background-color 0.15s ease;
}

.cm-page--about .cm-about-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--cm-shadow-hover);
  border-color: var(--cm-border-accent);
  background: var(--cm-surface-soft);
}

.cm-page--about .cm-about-card-title {
  font-size: 0.96rem;
  font-weight: 600;
  color: var(--cm-ink);
  margin-bottom: 0.2rem;
}

.cm-page--about .cm-about-card-text {
  font-size: 0.86rem;
  color: var(--cm-muted);
  margin: 0;
  line-height: 1.6;
}

/* Timeline */
.cm-page--about .cm-about-timeline-item {
  padding-left: 1rem;
  border-left: 2px solid var(--cm-border-strong);
  margin-bottom: 1.2rem;
}

.cm-page--about .cm-about-timeline-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--cm-muted);
  font-weight: 600;
  margin-bottom: 0.15rem;
}

.cm-page--about .cm-about-timeline-text {
  font-size: 0.86rem;
  color: var(--cm-muted-strong);
  margin: 0;
  line-height: 1.6;
}

/* =========================================================
   ABOUT — layout fix
   The "A few things we won’t compromise on" heading row uses
   col-md-10 + col-md-offset-1, which centers the entire block.
   We want it to align left with the rest of the page content.
   ========================================================= */

@media (min-width: 992px) {
  .cm-page--about .cm-section--band--dividers .col-md-offset-1 {
    margin-left: 0 !important;
  }

  .cm-page--about .cm-section--band--dividers .col-md-10 {
    width: 100% !important;
  }
}
