



/* TITLE */
.page-title {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 40px;
  position: relative;
}



/* ===================== */
/* TOP ROW */
/* ===================== */
.director-top-row {
  display: flex;
  gap: 25px;
  margin-bottom: 30px;
  align-items: stretch;
}

/* ===================== */
/* IMAGE */
/* ===================== */
.director-image {
  width: 260px;
}

.profile-card {
  background: #fff;
  padding: 18px;
  border-radius: 18px;
  text-align: center;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  height: 100%;
  transition: 0.3s;
}

.profile-card:hover {
  transform: translateY(-5px);
}

.profile-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 12px;
}

.profile-card h3 {
  margin: 8px 0 3px;
  color: var(--primary-blue);
  font-size: 18px;
}

.profile-card p {
  font-size: 14px;
  color: #777;
}

/* ===================== */
/* DETAILS */
/* ===================== */
.director-details {
  flex: 1;
}

/* ===================== */
/* CARD */
/* ===================== */
.content-card {
  background: #fff;
  padding: 25px;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.06);
  transition: 0.3s;
  height: 100%;
}

.content-card:hover {
  transform: translateY(-4px);
}

/* HEADINGS */
.content-card h2 {
  color: var(--primary-blue);
  margin-bottom: 15px;
  font-size: 22px;
  position: relative;
}

.content-card h2::after {
  content: "";
  width: 45px;
  height: 3px;
  background: var(--accent-red);
  position: absolute;
  bottom: -6px;
  left: 0;
  border-radius: 5px;
}

/* ===================== */
/* GRID */
/* ===================== */
.info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  font-size: 14px;
}

.info-grid div {
  background: #f9fafc;
  padding: 10px 12px;
  border-radius: 8px;
}

.info-grid .full {
  grid-column: span 2;
}

/* ===================== */
/* FULL WIDTH SECTIONS */
/* ===================== */
.director-full {
  margin-bottom: 25px;
}

/* LIST */
.content-card ul {
  padding-left: 18px;
}

.content-card ul li {
  margin-bottom: 8px;
  line-height: 1.6;
  font-size: 14px;
  color: #444;
  position: relative;
}

/* BULLET STYLE */
.content-card ul li::marker {
  color: var(--accent-red);
}

/* ===================== */
/* TEXT */
/* ===================== */
.content-card p {
  font-size: 15px;
  line-height: 1.8;
  color: #444;
}

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

  .director-top-row {
    flex-direction: column;
  }

  .director-image {
    width: 100%;
  }

  .profile-card img {
    height: auto;
  }

  .info-grid {
    grid-template-columns: 1fr;
  }

  .info-grid .full {
    grid-column: span 1;
  }

  .page-title {
    font-size: 26px;
  }

  .content-card h2 {
    font-size: 18px;
  }
}