/* ══════════════════════════════════
   CATEGORIES
══════════════════════════════════ */
.ap-categories {
  max-width: 1312px;
  margin: 0 auto 4.25rem;
  padding: 2rem 4rem;
  display: flex; gap: 3rem; align-items: flex-start;
}
.ap-cat { flex: 1; }
.ap-cat__icon { width: 3.236rem; height: 2.345rem; object-fit: contain; margin-bottom: 0.75rem; }
.ap-cat__text { font-weight: 500; font-size: 1.125rem; line-height: 1.4375rem; color: var(--gray); }

/* Path animation (hidden on desktop) */
.ap-categories__path { display: none; }

.ap-hero-text{
  max-width: 1312px;
  margin: 3.25rem auto;
  padding: 0 4rem;
  align-items: start;
}

@media (max-width: 767px) {
  .ap-hero-text{
    display: grid;
    grid-template-columns: 1fr;
    margin: 2rem 0;
    padding: 0 1rem;
    row-gap: 1.5rem;
  }
  .ap-categories {
    flex-direction: column;
    gap: 2rem;
    padding: 0 1rem;
    margin-bottom: 2rem;
    position: relative;
  }
  .ap-categories__path {
    display: block;
    position: absolute;
    width: 67px;
    height: auto;
    pointer-events: none;
    z-index: 0;
  }
  .ap-cat { position: relative; z-index: 1; }
  .ap-cat__text { font-weight: 500; font-size: 1.125rem; line-height: 1.4375rem; color: var(--gray); width: 23rem;}
}

/* ══════════════════════════════════
   APPROACH CARD OVERRIDES
══════════════════════════════════ */
.approach-section { margin-top: 10rem; }

@media (max-width: 767px) {
  .approach-section { margin-top: 0; }
  .approach-card { gap: 4.25rem; height: 33rem; margin-top: 7rem; }
  .approach-card__img-wrap { height: 214px; }
}

