/* BTP Board of Directors — base structural styles.
   Colors, fonts, spacing set here are DEFAULT fallbacks only.
   Elementor's Style tab controls override these per-instance. */

.btp-bod-wrapper * {
  box-sizing: border-box;
}

.btp-bod-wrapper {
  width: 100%;
  background: #faf7f0;
  font-family: 'Poppins', sans-serif;
  padding: 60px;
}

/* ---- Header ---- */

.btp-bod-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 40px;
}

.btp-bod-header-line {
  width: 90px;
  height: 1px;
  background: #c99b3a;
  position: relative;
  flex-shrink: 0;
}

.btp-bod-header-line::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #c99b3a;
  transform: translateY(-50%);
}

.btp-bod-header-line--left::after { right: -3px; }
.btp-bod-header-line--right::after { left: -3px; }

.btp-bod-title {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 40px;
  color: #3d1a5b;
  margin: 0;
  text-align: center;
}

/* ---- Grid ---- */

.btp-bod-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
  align-items: start;
}

/* ---- Card ---- */

.btp-bod-card {
  background: #fdfaf3;
  border: 1px solid #eee1d0;
  border-radius: 18px;
  padding: 32px 26px;
  text-align: center;
  display: block;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, background-color 0.3s ease;
}

.btp-bod-card.btp-bod-animate {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease, box-shadow 0.3s ease, border-color 0.3s ease, background-color 0.3s ease;
}

.btp-bod-card.btp-bod-animate.btp-bod-in-view {
  opacity: 1;
  transform: translateY(0);
}

.elementor-editor-active .btp-bod-card.btp-bod-animate {
  opacity: 1;
  transform: translateY(0);
}

.btp-bod-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 32px rgba(61, 26, 91, 0.14);
  border-color: #c99b3a;
}

/* ---- Photo ---- */

.btp-bod-photo-wrap {
  width: 150px;
  height: 150px;
  margin: 0 auto 20px;
  border-radius: 50%;
  border: 2px solid #a58fc2;
  overflow: hidden;
  display: block;
}

.btp-bod-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

/* ---- Name / Title ---- */

.btp-bod-name {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 25px;
  color: #3d1a5b;
  margin-bottom: 6px;
}

.btp-bod-role {
  font-weight: 600;
  font-size: 15px;
  color: #c1832f;
  line-height: 1.4;
  margin-bottom: 14px;
}

/* ---- Divider ---- */

.btp-bod-divider {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100px;
  margin: 0 auto 18px;
}

.btp-bod-divider .btp-bod-line {
  flex: 1;
  height: 1px;
  background: #c99b3a;
}

.btp-bod-divider i {
  font-size: 12px;
  color: #c99b3a;
}

.btp-bod-divider svg {
  width: 12px;
  height: 12px;
  fill: #c99b3a;
  flex-shrink: 0;
}

/* ---- Bio ---- */

.btp-bod-bio {
  font-size: 13.5px;
  line-height: 1.65;
  color: #333;
  text-align: left;
}

.btp-bod-bio p {
  margin: 0 0 14px;
}

.btp-bod-bio p:last-child {
  margin-bottom: 0;
}

/* ---- Responsive ---- */

@media (max-width: 1024px) {
  .btp-bod-grid {
    row-gap: 30px;
  }
}

@media (max-width: 600px) {
  .btp-bod-wrapper {
    padding: 45px 24px;
  }
  .btp-bod-title {
    font-size: 28px;
  }
  .btp-bod-header {
    flex-wrap: wrap;
  }
  .btp-bod-header-line {
    width: 40px;
  }
}
