/* Base wrapper */
.fu-widget {
  font-family: 'Inter', sans-serif;
  background: #f7f7f5;
  border-radius: 12px;
  overflow: hidden;
}

/* ── Hero ── */
.fu-hero {
  background: #1a2a5e;
  padding: 3.5rem 2.5rem 3rem;
  position: relative;
  overflow: hidden;
}
.fu-hero::after {
  content: '';
  position: absolute;
  right: -40px; top: -40px;
  width: 260px; height: 260px;
  border-radius: 50%;
  background: rgba(232, 73, 15, 0.12);
}
.fu-hero-eyebrow {
  font-size: 11px; 
  font-weight: 500;
  letter-spacing: 0.1em; 
  text-transform: uppercase;
  color: #e8490f; 
  margin-bottom: 0.6rem;
  margin-top: 0;
}
.fu-hero-title {
  font-size: 36px; 
  font-weight: 700;
  color: #fff; 
  line-height: 1.15; 
  max-width: 560px;
  margin: 0;
}
.fu-hero-sub {
  margin-top: 0.75rem; 
  margin-bottom: 0;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.65);
  max-width: 460px; 
  line-height: 1.6;
}

/* ── Content ── */
.fu-content {
  padding: 2.5rem 2.5rem 5rem;
  max-width: 1100px;
}

/* ── Cards grid ── */
.fu-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  gap: 1rem;
}

/* ── Person card ── */
.fu-person-card {
  background: #fff;
  border-radius: 12px;
  border: 0.5px solid #e2e1dc;
  overflow: hidden;
  transition: border-color 0.15s, transform 0.15s;
  display: flex;
  flex-direction: column;
}
.fu-person-card:hover {
  border-color: #1a2a5e;
  transform: translateY(-2px);
}
.fu-person-card.featured {
  border-color: #1a2a5e;
}

/* Photo */
.fu-person-photo-img {
  width: 100%; 
  aspect-ratio: 3/4;
  object-fit: cover; 
  object-position: top;
  display: block;
}
.fu-person-photo-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
}
.fu-person-photo-placeholder svg {
  width: 100%; 
  height: 100%; 
  display: block;
}

/* Info Section */
.fu-person-info { 
  padding: 0.85rem 1rem; 
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.fu-person-role-badge {
  display: inline-block; 
  align-self: flex-start;
  margin-bottom: 0.4rem;
  font-size: 10px; 
  font-weight: 500;
  letter-spacing: 0.05em; 
  text-transform: uppercase;
  background: #f0f2f9; 
  color: #1a2a5e;
  border-radius: 4px; 
  padding: 2px 6px;
}
.fu-person-role-badge.orange {
  background: #fdf0eb; 
  color: #c43a09;
}

.fu-person-name {
  font-size: 14px; 
  font-weight: 500;
  color: #1a2a5e; 
  line-height: 1.3; 
  margin: 0 0 0.35rem 0;
}

.fu-person-contact {
  font-size: 11px; 
  color: #888; 
  line-height: 1.6;
  margin-top: auto;
}
.fu-person-contact span {
  display: block;
}
.fu-person-contact a {
  color: #888; 
  text-decoration: none;
  display: block; 
  word-break: break-all;
  transition: color 0.15s;
}
.fu-person-contact a:hover { 
  color: #e8490f; 
}

/* ── Responsive ── */
@media (max-width: 600px) {
  .fu-hero { padding: 2.5rem 1.25rem 2rem; }
  .fu-hero-title { font-size: 28px; }
  .fu-content { padding: 1.5rem 1.25rem 4rem; }
}