/* Custom Styles for the Governing Body Page */

.governance-hero-banner {
  background: var(--hero-bg-gradient);
  border-bottom: 1px solid var(--hero-border-color);
  padding: 80px 0;
  text-align: center;
  color: var(--hero-text-main);
  position: relative;
  overflow: hidden;
}

.governance-hero-banner::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(180, 83, 9, 0.08) 0%, transparent 60%);
  transform: translate(-50%, -50%);
  pointer-events: none;
}

/* Board Member Profile Card */
.profile-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  padding: 35px 25px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.02);
  transition: var(--transition-smooth);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

.profile-card:hover {
  transform: translateY(-6px);
  border-color: rgba(180, 83, 9, 0.35);
  box-shadow: 0 20px 45px rgba(180, 83, 9, 0.08);
}

.profile-portrait-wrapper {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  padding: 5px;
  border: 2px solid var(--border-color);
  position: relative;
  margin-bottom: 25px;
  transition: var(--transition-smooth);
}

.profile-card:hover .profile-portrait-wrapper {
  border-color: var(--primary);
  box-shadow: 0 0 20px rgba(180, 83, 9, 0.25);
}

.profile-portrait {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  background: #f1f5f9;
}

.profile-name {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 5px;
}

.profile-role {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 15px;
}

.profile-bio {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
}

.profile-socials {
  display: flex;
  gap: 12px;
}

.profile-socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #f1f5f9;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  transition: var(--transition-smooth);
}

.profile-socials a:hover {
  background: var(--primary);
  color: #ffffff;
  transform: translateY(-2px);
}
