/* Yönetim Kurulu — mobil (admin yonetim_kurulu ile aynı veri) */

.yk-page .board-list {
  display: grid;
  gap: 14px;
}

.yk-page .member-card {
  position: relative;
  overflow: hidden;
  min-height: 172px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 12px 26px rgba(8, 60, 116, 0.09);
}

.yk-page .member-card::after {
  content: "";
  position: absolute;
  right: -36px;
  top: -36px;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(22, 136, 255, 0.13), rgba(13, 110, 253, 0.03));
  pointer-events: none;
}

.yk-page .member-inner {
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 14px;
  padding: 14px;
  position: relative;
  z-index: 2;
}

.yk-page .member-photo {
  width: 112px;
  height: 144px;
  border-radius: 21px;
  overflow: hidden;
  background: linear-gradient(135deg, #dcecff, #ffffff);
  border: 1px solid #d8e9fa;
  display: grid;
  place-items: center;
  color: #0d6efd;
  font-size: 34px;
  font-weight: 900;
  box-shadow: 0 10px 22px rgba(8, 60, 116, 0.08);
  position: relative;
}

.yk-page .member-fallback {
  position: relative;
  z-index: 0;
  user-select: none;
}

.yk-page .member-photo-img {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.yk-page .member-info {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.yk-page .order {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  height: 30px;
  padding: 0 9px;
  border-radius: 999px;
  background: linear-gradient(135deg, #1688ff, #0d6efd);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  box-shadow: 0 8px 18px rgba(13, 110, 253, 0.18);
  margin-bottom: 10px;
}

.yk-page .member-info h4 {
  margin: 0;
  color: #10243d;
  font-size: 18px;
  line-height: 1.18;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.35px;
}

.yk-page .role {
  display: inline-flex;
  max-width: 100%;
  margin-top: 10px;
  padding: 7px 10px;
  border-radius: 999px;
  background: #f1f8ff;
  border: 1px solid #d7eafb;
  color: #0d6efd;
  font-size: 10px;
  font-weight: 900;
  line-height: 1.25;
  text-transform: uppercase;
}

.yk-page .bio-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 13px;
  color: #07376a;
  font-size: 12px;
  font-weight: 900;
}

.yk-page .yk-empty {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow);
  padding: 22px 18px;
  text-align: center;
  color: var(--muted);
  font-weight: 700;
  font-size: 15px;
}

/* Üye detay (özgeçmiş) */
.yk-page--detail .yk-detail-head {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 14px;
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow);
  padding: 16px;
  margin-bottom: 16px;
}

.yk-page--detail .yk-detail-head .member-photo {
  width: 96px;
  height: 120px;
}

.yk-page--detail .yk-detail-head h2 {
  margin: 0 0 6px;
  font-size: 17px;
  font-weight: 900;
  color: #10243d;
  line-height: 1.2;
  text-transform: uppercase;
}

.yk-page--detail .content-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow);
  padding: 18px;
  margin-bottom: 14px;
}

.yk-page--detail .yk-detail-bio {
  font-size: 15px;
  line-height: 1.86;
  color: #243c58;
  font-weight: 500;
}

.yk-page--detail .yk-detail-bio p:first-of-type {
  padding: 15px 15px 15px 17px;
  border-left: 4px solid var(--blue);
  border-radius: 0 15px 15px 0;
  background: #f1f8ff;
  color: #173b60 !important;
  font-weight: 800 !important;
  line-height: 1.7 !important;
}

.yk-page--detail .yk-detail-bio ul,
.yk-page--detail .yk-detail-bio ol {
  margin: 0 0 14px 1.1em;
  padding-left: 0.4em;
}

.yk-page--detail .yk-detail-empty {
  margin: 0;
  color: var(--muted);
  font-weight: 600;
}

@media (max-width: 360px) {
  .yk-page .member-inner {
    grid-template-columns: 94px 1fr;
    gap: 12px;
  }
  .yk-page .member-photo {
    width: 94px;
    height: 126px;
    border-radius: 18px;
  }
  .yk-page .member-info h4 {
    font-size: 16px;
  }
}
