/* Layout 1: Left-Right Split for Strategic Brand Partner */

#wk-why .wk-why-split {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
}

#wk-why .wk-why-left {
  position: sticky;
  top: 120px;
  text-align: left;
}

#wk-why .wk-why-lead {
  font-size: 14px;
  line-height: 1.75;
  color: var(--text-body);
  margin-top: 20px;
}

/* Override: 2 columns instead of 3 for the right side */
#wk-why .wk-adv-grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

/* Slightly smaller cards for 2-col layout */
#wk-why .wk-adv-card {
  padding: 32px 24px;
}
#wk-why .wk-adv-num {
  font-size: 1.8rem;
}

/* Remove old centered header and label (they don't exist in this layout) */
#wk-why .wk-why-header,
#wk-why .wk-why-strengths-label {
  display: none;
}

/* Responsive */
@media (max-width: 1024px) {
  #wk-why .wk-why-split {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  #wk-why .wk-why-left {
    position: static;
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
  }
  #wk-why .wk-why-lead {
    margin: 20px auto 0;
  }
  #wk-why .wk-adv-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  #wk-why .wk-adv-grid {
    grid-template-columns: 1fr;
  }
}
