/* sh-five-forces.css — Five Elements interactive tabs (Light Mode Match) */
/* Design tokens from variable.css */

.sh-forces-section {
  padding: 5vw 0 6vw;
  background: var(--light-alt, #f4f3ef);
  color: var(--dark-alt, #171717);
  border-top: 1px solid rgba(0,0,0,0.06);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.sh-forces-eyebrow {
  font-family: var(--primary-font);
  font-size: 0.85vw;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--primary, #dba55d);
  margin-bottom: 1.5vw;
}

.sh-forces-heading {
  font-family: var(--secondary-font);
  font-size: 2.83vw;
  font-weight: 400;
  color: var(--color-3, #00296b);
  line-height: 1.15;
  letter-spacing: -2px;
  margin-bottom: 3.5vw;
}

.sh-forces-tabs {
  display: flex;
  gap: 0;
  border-bottom: 2px solid rgba(0, 41, 107, 0.1);
  margin-bottom: 3vw;
}

.sh-forces-tab {
  background: none;
  border: none;
  padding: 0.8vw 1.8vw;
  font-family: var(--primary-font);
  font-size: 0.95vw;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.45);
  cursor: pointer;
  position: relative;
  transition: color 0.3s ease;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sh-forces-tab::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary, #dba55d);
  transition: width 0.35s ease;
}

.sh-forces-tab.is-active {
  color: var(--color-3, #00296b);
  font-weight: 600;
}

.sh-forces-tab.is-active::after {
  width: 100%;
}

.sh-forces-tab:hover {
  color: var(--primary, #dba55d);
}

.sh-forces-counter {
  font-family: var(--primary-font);
  font-size: 0.85vw;
  color: rgba(0, 0, 0, 0.35);
  letter-spacing: 0.1em;
  margin-bottom: 2vw;
  font-weight: 500;
}

.sh-forces-panel {
  display: none;
  opacity: 0;
}

.sh-forces-panel.is-active {
  display: flex;
  opacity: 1;
  align-items: flex-start;
  gap: 4vw;
}

.sh-forces-panel-label {
  font-family: var(--secondary-font);
  font-size: 5vw;
  font-weight: 400;
  color: var(--primary, #dba55d);
  line-height: 1;
  letter-spacing: -2px;
  min-width: 30%;
  opacity: 0.25;
}

.sh-forces-panel-body {
  flex: 1;
}

.sh-forces-panel-title {
  font-family: var(--secondary-font);
  font-size: 2.2vw;
  font-weight: 400;
  color: var(--color-3, #00296b);
  margin-bottom: 1.2vw;
  line-height: 1.2;
}

.sh-forces-panel-text {
  font-family: var(--primary-font);
  font-size: 1.05vw;
  font-weight: 300;
  color: var(--dark-alt, #171717);
  line-height: 1.7;
  max-width: 580px;
}

.sh-forces-disclaimer {
  margin-top: 3vw;
  font-family: var(--primary-font);
  font-size: 0.78vw;
  color: rgba(0, 0, 0, 0.4);
  line-height: 1.6;
  max-width: 600px;
}

@media (max-width: 768px) {
  .sh-forces-eyebrow { font-size: 11px; margin-bottom: 16px; }
  .sh-forces-heading { font-size: 26px; letter-spacing: -1px; margin-bottom: 24px; }
  .sh-forces-tabs { gap: 0; overflow-x: auto; flex-wrap: nowrap; padding-bottom: 0; }
  .sh-forces-tab { font-size: 12px; padding: 10px 14px; white-space: nowrap; }
  .sh-forces-counter { font-size: 11px; margin-bottom: 20px; }
  .sh-forces-panel.is-active { flex-direction: column; gap: 16px; }
  .sh-forces-panel-label { font-size: 36px; min-width: unset; }
  .sh-forces-panel-title { font-size: 22px; margin-bottom: 10px; }
  .sh-forces-panel-text { font-size: 14px; }
  .sh-forces-disclaimer { font-size: 11px; margin-top: 24px; }
}
