/* Import Bootstrap Icons */
@import url('https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.0/font/bootstrap-icons.css');

/* Panels Container */
.panels-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 2rem;
}

/* Page Title */
.page-title {
  font-size: 2.5rem;
  color: #333;
  text-align: center;
  margin-bottom: 3rem;
}

/* Panel Section */
.panel-section {
  margin-bottom: 5rem;
  padding-bottom: 3rem;
  border-bottom: 2px solid #e0e0e0;
}

.panel-section:last-child {
  border-bottom: none;
}

/* Panel Title */
.panel-title {
  font-size: 2rem;
  color: #333;
  margin-bottom: 2.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 3px solid #CA224B;
}

/* Facilitator Section */
.facilitator-heading {
  font-size: 1.5rem;
  color: #333;
  margin-bottom: 1.5rem;
  margin-top: 2rem;
}

.facilitator-container {
  display: flex;
  justify-content: center;
  margin-bottom: 3rem;
}

.facilitator-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2rem;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  transition: transform 0.2s, box-shadow 0.2s;
  border: 2px solid #CA224B;
  max-width: 300px;
}

.facilitator-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.facilitator-photo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
  border: 3px solid #CA224B;
}

.facilitator-name {
  font-size: 1.3rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 0.3rem;
}

.facilitator-org {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 1rem;
  line-height: 1.4;
}

.facilitator-social {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.facilitator-social a {
  color: #666;
  font-size: 1.5rem;
  transition: color 0.2s;
  text-decoration: none;
}

.facilitator-social a:hover {
  color: #CA224B;
}

.facilitator-social a:nth-child(1):hover {
  color: #4CAF50; /* Website - green */
}

.facilitator-social a:nth-child(2):hover {
  color: #333; /* GitHub - dark */
}

.facilitator-social a:nth-child(3):hover {
  color: #CA224B; /* LinkedIn - orange */
}

/* Panelists Section */
.panelists-heading {
  font-size: 1.5rem;
  color: #333;
  margin-bottom: 1.5rem;
}

/* Panelists Grid - 4 columns */
.panelists-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
}

/* Panelist Card */
.panelist-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.5rem;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: transform 0.2s, box-shadow 0.2s;
}

.panelist-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

/* Panelist Photo */
.panelist-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
  border: 3px solid #e0e0e0;
}

/* Panelist Name */
.panelist-name {
  font-size: 1.1rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 0.3rem;
}

/* Panelist Organization */
.panelist-org {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 1rem;
  line-height: 1.4;
}

/* Panelist Social Icons */
.panelist-social {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
}

.panelist-social a {
  color: #666;
  font-size: 1.3rem;
  transition: color 0.2s;
  text-decoration: none;
}

.panelist-social a:hover {
  color: #0077b5;
}

.panelist-social a:nth-child(1):hover {
  color: #4CAF50; /* Website - green */
}

.panelist-social a:nth-child(2):hover {
  color: #333; /* GitHub - dark */
}

.panelist-social a:nth-child(3):hover {
  color: #0077b5; /* LinkedIn - blue */
}

/* Responsive Design */
@media (max-width: 1200px) {
  .panelists-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .page-title {
    font-size: 2rem;
  }
  
  .panel-title {
    font-size: 1.5rem;
  }
  
  .panelists-grid {
    grid-template-columns: 1fr;
  }
  
  .facilitator-card {
    max-width: 100%;
  }
}
