.elementor-42 .elementor-element.elementor-element-40d4b1e{--display:flex;}/* Start custom CSS for html, class: .elementor-element-bf948f1 *//* Tambahkan gaya ini pada body atau elemen kontainer utama */
body {
    background-color: #f8fafc; /* Latar belakang lembut (off-white) */
}

.bengawan-team {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
  font-family: 'Poppins', system-ui, sans-serif;
}

.bt-heading {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 32px;
  font-weight: 700;
  color: #0f172a;
}

.bt-section {
  margin-bottom: 48px;
  /* Latar belakang dan shadow untuk memecah warna putih */
  background-color: #ffffff;
  padding: 30px 20px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

/* SUBHEADING DENGAN GARIS TEBAL DAN ORNAMEN DIAMOND */
.bt-subheading {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: #1e293b;
  border-left: 4px solid #51ceca;
  padding-left: 10px;
  position: relative; 
  display: flex; 
  align-items: center;
  padding-right: 30px; 
}

/* Ornamen diamond (#e54242) */
.bt-subheading::after {
  content: '';
  display: block;
  min-width: 8px; 
  height: 8px;
  background-color: #e54242; /* Warna kontras */
  margin-left: auto; 
  border-radius: 2px; 
  transform: rotate(45deg); 
  position: absolute;
  right: 20px; 
}

/* KADIV &amp; STAFF STYLES */
.bt-kadiv-grid {
  display: grid;
  grid-template-columns: minmax(180px, 300px);
  gap: 24px;
  margin-bottom: 24px;
}

/* KADIV CARD DENGAN PITA AKSEL DI ATAS */
.bt-kadiv-card {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  background-color: #f7f9fc;
  position: relative;
  overflow: hidden;
  padding-top: 30px; /* Ruang untuk pita */
}

/* Pita Aksen di bagian atas Kadiv Card */
.bt-kadiv-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 8px; 
  background-color: #51ceca; /* Warna tim */
}

.bt-anggota-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1e293b;
  margin-top: 24px;
  margin-bottom: 16px;
  padding-bottom: 4px;
  border-bottom: 2px solid #e2e8f0;
}
/* END KADIV &amp; STAFF STYLES */

.bt-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
}

.bt-card {
  background: #ffffff;
  border-radius: 16px;
  /* Sesuaikan padding atas agar sejajar dengan Kadiv card */
  padding: 30px 12px 20px 12px;
  text-align: center; 
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease; /* Transisi untuk hover effect */
}

/* EFEK HOVER DENGAN SHADOW WARNA TIM */
.bt-card:hover {
  transform: translateY(-8px); /* Card naik sedikit */
  box-shadow: 0 12px 28px rgba(81, 206, 202, 0.3), /* Shadow utama (#51ceca) */
              0 0 0 3px rgba(229, 66, 66, 0.1); /* Shadow tipis kontras (#e54242) */
}

.bt-card img {
  width: 110px;
  height: 110px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 12px;
  /* Rata tengah horizontal */
  display: block;
  margin-left: auto;
  margin-right: auto;
  /* Border warna tim solid */
  border: 4px solid #51ceca; 
}

.bt-name {
  font-size: 1rem;
  font-weight: 600;
  color: #0f172a;
  margin: 0;
}

.bt-role {
  font-size: 0.88rem;
  color: #6b7280;
  margin-top: 4px;
}

/* RESPONSIVE */
@media (max-width: 480px) {
    .bengawan-team {
        padding: 0 10px;
    }
    .bt-section {
        padding: 20px 10px;
    }
    .bt-kadiv-grid {
        grid-template-columns: 1fr;
    }
    .bt-subheading::after {
        right: 10px;
    }
    .bt-heading {
        font-size: 1.5rem;
    }
    .bt-grid {
        gap: 16px;
    }
    .bt-card img {
        width: 90px;
        height: 90px;
    }
}/* End custom CSS */