/* =========================================================================
   Dentora — Styles for this page only.
   Loaded after css/ui.css by the page that uses it.
   ========================================================================= */

  .about-split {
    display: grid;
    gap: clamp(2.5rem, 1.5rem + 4vw, 4.5rem);
    align-items: center;
  }

  @media (min-width: 900px) {
    .about-split {
      grid-template-columns: 1fr 1fr;
    }

    /* Media moves to the right on alternating sections. On mobile the
       DOM order already puts content first, which is what we want. */
    .about-split--reverse .about-split__content {
      order: 1;
    }
  }

  .about-split__content {
    display: grid;
    gap: var(--space-4);
    justify-items: start;
  }

  .about-img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
  }

  .about-img--portrait {
    aspect-ratio: 4 / 4.4;
    object-position: 50% 18%;
  }

  .about-para {
    margin: 0;
    max-width: 58ch;
    color: var(--color-text-muted);
  }

  .about-cred {
    margin: 0;
    color: var(--color-teal-700);
    font-family: var(--font-heading);
    font-size: var(--text-body-lg);
    font-weight: var(--weight-semibold);
  }

  .about-actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-3);
    margin-block-start: var(--space-2);
  }

  .about-facts {
    display: grid;
    gap: var(--space-4);
    width: 100%;
    margin: var(--space-4) 0 0;
    padding: var(--space-5);
    background-color: var(--color-off-white);
    border: var(--border);
    border-radius: var(--radius-card);
  }

  @media (min-width: 520px) {
    .about-facts {
      grid-template-columns: 1fr 1fr;
    }
  }

  .about-facts > div {
    display: grid;
    gap: 2px;
  }

  .about-facts dt {
    margin: 0;
    color: var(--color-text-muted);
    font-size: var(--text-small);
  }

  .about-facts dd {
    margin: 0;
    color: var(--color-navy);
    font-size: var(--text-small);
    font-weight: var(--weight-semibold);
  }

  /* Philosophy */
  .phil-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 22rem), 1fr));
    gap: var(--space-5);
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .phil {
    display: flex;
    gap: var(--space-4);
    padding: var(--space-6);
    background-color: var(--color-white);
    border: var(--border);
    border-radius: var(--radius-card);
  }

  .phil__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    color: var(--color-teal-700);
    background-color: var(--color-teal-100);
    border-radius: var(--radius-button);
  }

  .phil__title {
    margin: 0 0 var(--space-2);
    font-size: var(--text-body-lg);
    font-weight: var(--weight-semibold);
    color: var(--color-navy);
  }

  .phil__text {
    margin: 0;
    color: var(--color-text-muted);
    font-size: var(--text-small);
    line-height: var(--leading-body);
  }
