.student-pathways {
  padding: 4.5rem 2rem; /* overall section spacing */
  text-align: center;
}

/* ADD SPACE BETWEEN H2 AND ICONS */
.student-pathways .acard-ttl {
  margin-bottom: 4rem; /* ← THIS creates the extra space */
}

/* GRID */
.student-pathways .pathway-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 3rem;
}

/* CARD */
.student-pathways .pathway-card {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  gap: 0.75rem;

  text-decoration: none !important;
  border: none !important;
  background: none;
}

/* Kill underline borders from theme */
.student-pathways .pathway-card,
.student-pathways .pathway-card:hover,
.student-pathways .pathway-card:focus {
  border-bottom: 0 !important;
}

/* ICONS */
.student-pathways .pathway-card i {
  font-size: 3.25rem;
    transition: transform 0.2s ease;

  --fa-primary-color: #003366;
  --fa-secondary-color: #c8b18b;
  --fa-secondary-opacity: 1;
}

/* LABELS */
.student-pathways .pathway-card span {
  display: block !important;
  color: #003366;
  font-size: 1.05rem;
  font-weight: 500;
  text-align: center;
}

.student-pathways .pathway-card:hover i,
.student-pathways .pathway-card:focus i {
  transform: scale(1.15);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .student-pathways .pathway-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }
}
