:root{
  --container-width:1400px;
  --container-padding:1.5rem;
}

.container{
  max-width:var(--container-width);
  margin:0 auto;
  padding:0 var(--container-padding);
}

.profiles-header{
  background:var(--color-navy);
  padding:5rem 0 4rem;
  border-bottom:3px solid var(--color-green);
}
.profiles-header-inner{
  max-width:680px;
}
.profiles-kicker{
  display:inline-flex;
  align-items:center;
  gap:10px;
  margin-bottom:1.5rem;
}
.profiles-kicker-dot{
  width:8px;height:8px;
  border-radius:50%;
  background:var(--color-green);
  animation:pulse 2.5s ease-in-out infinite;
}
@keyframes pulse{
  0%,100%{box-shadow:0 0 0 0 rgba(0,173,104,0.5)}
  60%{box-shadow:0 0 0 8px rgba(0,173,104,0)}
}
.profiles-kicker span{
  font-family:var(--font-body);
  font-size:11px;
  letter-spacing:0.14em;
  text-transform:uppercase;
  color:var(--color-green);
  font-weight:600;
}
.profiles-title{
  font-family:var(--font-body);
  font-size:clamp(2.875rem,4vw,3.5rem);
  font-weight:700;
  color:white;
  line-height:1.1;
  letter-spacing:-0.02em;
  margin-bottom:1.5rem;
}
.profiles-subtitle{
  font-family:var(--font-body);
  font-size:1.1rem;
  font-weight:400;
  color:rgba(255,255,255,0.55);
  line-height:1.7;
}

.profiles-grid-section{
  background:#DADADA;
  padding:var(--spacing-xl) 0;
}

.profiles-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:var(--spacing-md);
}

.profile-card{
  display:flex;
  flex-direction:column;
  text-decoration:none;
  color:inherit;
  transition:transform 0.3s ease;
  opacity:0;
  transform:translateY(16px);
}
.profile-card.card-animate{
  animation:cardReveal 0.5s ease forwards;
}
@keyframes cardReveal{
  to{opacity:1;transform:translateY(0)}
}
.profile-card:hover{
}

.profile-card-image{
  overflow:hidden;
  position:relative;
}
.profile-card-image img{
  width:100%;
  aspect-ratio:3/4;
  object-fit:cover;
  object-position:center top;
  display:block;
  transition:transform 0.5s ease;
}
.profile-card:hover .profile-card-image img{
}

.profile-card-image::after{
  content:'';
  position:absolute;
  bottom:0;left:0;right:0;
  height:3px;
  background:var(--color-green);
}

.profile-card-body{
  background:var(--color-navy);
  padding:var(--spacing-md);
  flex:1;
  display:flex;
  flex-direction:column;
}
.profile-card-topic{
  font-family:var(--font-body);
  font-size:10px;
  letter-spacing:0.14em;
  text-transform:uppercase;
  color:var(--color-green);
  font-weight:600;
  margin-bottom:0.6rem;
}
.profile-card-name{
  font-family:var(--font-serif);
  font-size:1.5rem;
  font-weight:600;
  color:white;
  line-height:1.15;
  margin-bottom:0.4rem;
}
.profile-card-name em{
  font-style:italic;
  font-weight:400;
  color:rgba(255,255,255,0.7);
}
.profile-card-role{
  font-family:var(--font-body);
  font-size:0.78rem;
  color:#77848D;
  line-height:1.5;
  margin-bottom:var(--spacing-sm);
  font-weight:400;
}
.profile-card-hook{
  font-family:var(--font-body);
  font-size:0.92rem;
  color:rgba(255,255,255,0.75);
  line-height:1.7;
  flex:1;
  margin-bottom:var(--spacing-md);
}
.profile-card-link{
  font-family:var(--font-body);
  font-size:0.82rem;
  font-weight:600;
  color:white;
  text-transform:uppercase;
  letter-spacing:0.06em;
  transition:color 0.25s ease;
  display:inline-flex;
  align-items:center;
  gap:6px;
}
.profile-card:hover .profile-card-link{
  color:var(--color-green);
}
.profile-card-arrow{
  display:inline-block;
  transition:transform 0.25s ease;
}
.profile-card:hover .profile-card-arrow{
  transform:translateX(4px);
}

@media(max-width:1100px){
  .profiles-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:640px){
  .profiles-header{padding:3rem 0 2.5rem;}
  .profiles-grid{
    grid-template-columns:1fr;
  }
  .profile-card-image img{
    aspect-ratio:16/9;
  }
}
