/* Events Page Styles - Matching Classes/About Page Design */

/* Use about.css for base styling, add events-specific overrides here */

.instructor-card {
  border: 1px solid rgba(182, 32, 91, 0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(4px);
}

.instructor-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 35px 55px -25px rgba(25, 28, 90, 0.25);
}

.instructor-card .card-accent {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(255, 122, 77, 0.08), transparent 60%);
  pointer-events: none;
}

.instructor-card h4 {
  color: #333;
  font-size: 1.5rem;
}

.instructor-card h5 {
  color: #333;
  font-size: 1.2rem;
}

.instructor-card ul li {
  color: #555;
  line-height: 1.8;
}

.instructor-card .text-center {
  text-align: center;
}

.instructor-card .lead {
  font-size: 1.1rem;
  color: #555;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .instructor-card h4 {
    font-size: 1.3rem;
  }
  
  .instructor-card h5 {
    font-size: 1.1rem;
  }
}

@media (max-width: 576px) {
  .instructor-card {
    padding: 1.75rem;
  }
  
  .instructor-card h4 {
    font-size: 1.2rem;
  }
  
  .instructor-card h5 {
    font-size: 1rem;
  }
  
  .instructor-card .lead {
    font-size: 1rem;
  }
}
