/* ============================================================
   ACADEMICS.CSS
   All styles scoped to #academics section
   ============================================================ */

/* ── 1. SECTION WRAPPER ──────────────────────────────────── */
#academics {
  background: #ffffff;
}

/* ── 2. ACADEMIC CARD ────────────────────────────────────── */
.academic-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 1.8rem;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.3s;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  height: 100%;
}

.academic-card:hover {
  transform: translateX(6px);
  border-color: var(--blue);
  box-shadow: 0 10px 40px rgba(30, 91, 198, 0.15);
  color: inherit;
}

.academic-card.flex-column {
  flex-direction: column;
}

.academic-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

/* ── 3. RESPONSIVE ───────────────────────────────────────── */
@media (max-width: 768px) {
  .academic-card {
    padding: 1.2rem;
  }
}
