.large-personel-info {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 100px 0;
  background: #fff;
  font-family: "Arial", sans-serif;
}
.member-position-large{
  position: relative;
  top:-20px;
  font-weight: bold;
  font-size: 14px;
                font-style: italic;
}
.personel-wrapper {
  position: relative;
  display: flex;
  width: 100%;
  height: 400px;
  background: #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);

}

.personel-image {
  height: 400px;
  width: 400px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.personel-image img {
  width: auto;
  height: 100%;
  object-fit: cover;
  display: block;
}

.personel-content {
  position: relative;
  padding: 40px;
  flex: 1;
}

.personel-name {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 20px;
}

.personel-name span {
  font-weight: 700;
}

.personel-desc {
  font-size: 15px;
  line-height: 1.6;
}

/* Dekoratif köşe çizgisi */
.decor-top-right {
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  height: 40px;
  border-top: 10px solid #8A0303;
  border-right: 10px solid #8A0303;
}

.decor-top-left {
  position: absolute;
  bottom: -19px;
  left: -20px;
  width: 180px;
  height: 140px;
  border-bottom: 20px solid #8A0303;
  border-left: 20px solid #8A0303;
  z-index: 0;
}

@media (max-width: 991px) {
  .personel-wrapper {
height: auto;
flex-direction: column;
  }
  .personel-image {
    width: 100%;
    height: auto;
  }

  .personel-image img {
    width: 100%;
    height: auto;
  }
  .large-personel-info{
width: 90%;
margin: auto;
  }
}