/* ============================================
   PAGES.CSS — Page-Specific Styles
   ============================================ */

/* Research Theme Cards */
.research-theme-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--border);
  transition: all var(--transition-base);
  margin-bottom: 1rem;
  position: relative;
  overflow: hidden;
}

.research-theme-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--accent);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform var(--transition-base);
}

.research-theme-card:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent);
}

.research-theme-card:hover::before { transform: scaleY(1); }

.theme-card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.theme-card-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-subtle);
  color: var(--accent);
  border-radius: var(--radius-md);
  font-size: 1.25rem;
  flex-shrink: 0;
  transition: all var(--transition-base);
}

.research-theme-card:hover .theme-card-icon {
  background: var(--accent);
  color: white;
}

.theme-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.125rem;
}

.theme-card-count { font-size: 0.8125rem; color: var(--text-muted); }

.theme-card-desc {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.theme-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-weight: 600;
  color: var(--accent);
  font-size: 0.875rem;
  transition: gap var(--transition-fast);
}

.research-theme-card:hover .theme-card-link { gap: 0.75rem; }

/* Case Studies */
.case-study-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--border);
  margin-bottom: 1rem;
  transition: all var(--transition-base);
}

.case-study-card:hover {
  transform: translateX(4px);
  border-color: var(--accent);
}

.case-study-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.case-study-desc { font-size: 0.9375rem; color: var(--text-secondary); }

/* Teaching Philosophy */
.teaching-philosophy {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--border);
}

.year-section { margin-bottom: 3rem; }

.year-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.year-badge {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: white;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 1rem;
  font-family: var(--font-mono);
}

/* Supervision */
.supervision-intro {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--border);
}

.supervision-section { margin-bottom: 3rem; }
.supervision-section h3 { margin-bottom: 1.5rem; }

/* Industry Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: var(--max-width);
  margin: 0 auto 3rem;
}

/* CV Download */
.cv-download { text-align: center; margin-bottom: 3rem; }

.cv-preview {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--border);
}

/* Page Header */
.page-header { padding: 8rem 1.5rem 4rem; }

@media (min-width: 768px) {
  .page-header { padding: 9rem 2rem 5rem; }
  .page-header h1 { font-size: 2.5rem; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
}
