/* SURGE — tech-education
   Centered dark-canvas strip of 4–6 spec icons + label + sub-copy. */

.sg-tech-edu {
  padding-block: var(--space-8);
}
.sg-tech-edu__head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto var(--space-7) auto;
}
.sg-tech-edu__eyebrow {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: var(--tracking-eyebrow);
  text-transform: uppercase;
  margin-bottom: 10px;
}
.sg-tech-edu__title {
  font-family: var(--font-heading);
  font-size: 40px;
  font-weight: 700;
  letter-spacing: var(--tracking-display);
  line-height: 1;
  color: inherit;
}
.sg-tech-edu__sub {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.55;
  margin: 14px auto 0;
  max-width: 600px;
}

.sg-tech-edu__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--space-5);
}
.sg-tech-edu__grid[data-cols="4"] { grid-template-columns: repeat(4, 1fr); }
.sg-tech-edu__grid[data-cols="3"] { grid-template-columns: repeat(3, 1fr); }
.sg-tech-edu__grid[data-cols="6"] { grid-template-columns: repeat(6, 1fr); }

.sg-tech-edu__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 var(--space-3);
}
.sg-edu-icon {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: inherit;
}
.sg-tech-edu__item-title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 16px;
  margin-top: 16px;
  letter-spacing: -0.01em;
}
.sg-tech-edu__item-body {
  font-family: var(--font-body);
  font-size: 12px;
  line-height: 1.55;
  margin-top: 6px;
}

@media (max-width: 960px) {
  .sg-tech-edu__grid,
  .sg-tech-edu__grid[data-cols="4"],
  .sg-tech-edu__grid[data-cols="5"],
  .sg-tech-edu__grid[data-cols="6"] {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-5) var(--space-4);
  }
  .sg-tech-edu__title { font-size: 28px; }
}
@media (max-width: 480px) {
  .sg-tech-edu__grid,
  .sg-tech-edu__grid[data-cols="4"],
  .sg-tech-edu__grid[data-cols="5"],
  .sg-tech-edu__grid[data-cols="6"] {
    grid-template-columns: repeat(2, 1fr);
  }
}
