:root {
  --primary-blue: #263489;
  --accent-red: #ec1d25;
  --text-black: #000000;
  --bg-light: #f4f6f9;
}

/* SECTION */
.vice-chairman-modern {
  background: var(--bg-light);
  padding: 70px 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media(max-width:576px){

  .vice-chairman-card {
    padding: 25px;
  }

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

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