/* ex-inline subjects/phd.html — externalisé pour la mise en cache */
/* Inherit styles from previous pages */

/* Progress Stats */
.progress-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
}

.stat-circle {
  position: relative;
  display: inline-block;
}

.stat-percent {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
}

.stat-item p {
  margin-top: 0.75rem;
  font-weight: 600;
  color: var(--text-medium);
}

/* Vision Cards */
.vision-card {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border: 2px solid var(--primary-color);
  border-radius: 16px;
  padding: 2rem;
  height: 100%;
  text-align: center;
}

.vision-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: white;
  font-size: 1.75rem;
}

.vision-card h4 {
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.vision-card p {
  color: var(--text-medium);
  line-height: 1.6;
}

/* Research Cards */
.research-card {
  background: white;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  height: 100%;
  transition: all 0.3s ease;
}

.research-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

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

.research-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.research-header h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0;
}

.research-topics {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.topic-tag {
  display: inline-block;
  background: var(--bg-gray);
  color: var(--text-medium);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.topic-tag:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-2px);
}

/* Feature Boxes */
.feature-box {
  background: white;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem 1.5rem;
  text-align: center;
  height: 100%;
  transition: all 0.3s ease;
}

.feature-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.feature-icon {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: white;
  font-size: 1.75rem;
}

.feature-box h5 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

.feature-box p {
  font-size: 0.9rem;
  color: var(--text-medium);
  margin: 0;
  line-height: 1.6;
}

/* Community Card */
.community-card {
  background: white;
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 3rem 2rem;
}

.community-icon {
  font-size: 4rem;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
}

.community-benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  max-width: 600px;
  margin: 0 auto;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
  color: var(--text-dark);
}

.benefit-item i {
  font-size: 1.25rem;
}

/* Responsive */
@media (max-width: 767px) {
  .progress-stats {
    gap: 2rem;
  }
  
  .community-benefits {
    grid-template-columns: 1fr;
  }
}
