@charset "utf-8";

.people-feature-card{
  display:grid;
  grid-template-columns: 220px 1fr 220px;
  font-family:"Montserrat", Sans-serif;
  align-items: center;
  gap: 24px;
  background:#ffffff;
  padding: 20px 24px;
  border-radius: 18px;
  box-shadow: 0 6px 18px rgba(0,0,0,.08);
  position:relative;   /* <-- FIXED */
}

/* LEFT IMAGE */
.pfc-image img{
  width:100%;
  height:auto;
  border-radius: 14px;
  display:block;
}

/* NAME + ROLE LINE */
.pfc-content {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.pfc-name{
  margin:0 0 6px;
  font-size: 20px;
  font-weight:600;
}

.pfc-dot{
  margin: 0 6px;
  opacity:.7;
}

.pfc-role{
  font-weight:500;
}

/* SUBTITLE LINE */
.pfc-subtitle{
  margin:0 0 10px;
  color:#666;
}

/* CONTACT AREA */
.pfc-contact {
  margin-top: auto;
}

.pfc-contact a{
  color:#666;   /* <-- FIXED semicolon */
}

.pfc-row{
  display:flex;
  align-items:center;
  font-family:"Montserrat", Sans-serif;
  gap:8px;
  font-size:14px;
  line-height:24px;
}

.pfc-row i{
  font-size:16px;
  min-width:18px;
}

/* BUTTON */
.pfc-button{
  display:inline-flex;
  align-items: center;
  background:#444;
  color:#fff;
  padding: 10px 16px;
  border-radius: 8px;
  text-decoration:none;
  font-weight:500;
}

/* CTA position */
.pfc-cta {
  position: absolute;
  top: 10px;
  right:10px;
}

/* Arrow styling */
.pfc-button::after {
  content: " \2192";
  display: inline-block;
  transform: rotate(-45deg);
  margin-left: 6px;
}

/* MOBILE */
@media (max-width: 767px){

  .people-feature-card{
    grid-template-columns: 1fr!impotant;
    gap:16px;
  }

  .pfc-image{
    max-width: 180px;
  }

  .pfc-contact{
    flex-direction: column;
    gap:8px;
  }

  .pfc-cta{
    position: static;   /* better for mobile */
    margin-top: 8px;
  }
}
@charset "utf-8";
/* CSS Document */

