

/* CARD */
.chairman-card {
  background: #fff;
  padding: 40px;
  border-radius: 18px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  position: relative;
  overflow: hidden;
}

/* TITLE */
.chairman-title {
  text-align: center;
  margin-bottom: 40px;
}

.chairman-title h1 {
  color: var(--primary-blue);
  font-weight: 900;
  font-size: 42px;
  margin-bottom: 10px;
}

.title-divider {
  width: 70px;
  height: 4px;
  background: var(--accent-red);
  margin: auto;
  border-radius: 10px;
}

/* CONTENT */
.chairman-content {
  position: relative;
  color: var(--text-black);
  line-height: 1.9;
  font-size: 15px;
  text-align: justify;
}

/* FLOAT IMAGE */
.chairman-img {
  float: left;
  width: 340px;
  margin: 0 35px 20px 0;
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
  border: 4px solid #fff;
}

/* IMAGE */
.chairman-img img {
  width: 100%;
  display: block;
  border-radius: 14px;
  transition: transform 0.5s ease;
}

/* HOVER */
.chairman-img:hover img {
  transform: scale(1.08);
}

/* NAME */
.chairman-name {
  margin-top: 30px;
}

.chairman-name h2 {
  color: var(--primary-blue);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.6;
}

/* TEXT */
.chairman-content p {
  margin-bottom: 18px;
  color: #444;
}

/* CLEAR FLOAT */
.chairman-content::after {
  content: "";
  display: block;
  clear: both;
}

/* RESPONSIVE */
@media(max-width:991px){

  .chairman-img {
    float: none;
    width: 100%;
    max-width: 380px;
    margin: 0 auto 30px;
  }

  .chairman-title h1 {
    font-size: 34px;
  }

  .chairman-content {
    text-align: left;
  }

  .chairman-name {
    text-align: center;
  }
}

@media(max-width:576px){

  .chairman-card {
    padding: 25px;
  }

  .chairman-title h1 {
    font-size: 28px;
  }

  .chairman-content {
    font-size: 14px;
  }
}