/* President message card - modern, responsive */
.president-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 30px 16px;
  box-sizing: border-box;
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(250,250,252,0.98));
  font-family: Inter, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.president-card {
  width: 100%;
  max-width: 1100px;
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 28px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfbfd 100%);
  border-radius: 14px;
  padding: 26px;
  box-shadow: 0 12px 40px rgba(23, 30, 63, 0.10), inset 0 1px 0 rgba(255,255,255,0.6);
  align-items: start;
}

/* Left media (photo + basic info) */
.president-media {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  padding: 10px 6px;
}

.president-photo {
  width: 220px;
  height: 220px;
  object-fit: cover;
  border-radius: 12px;
  border: 6px solid rgba(45,81,255,0.06);
  box-shadow: 0 8px 30px rgba(13, 18, 43, 0.12);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.president-photo:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 18px 40px rgba(13, 18, 43, 0.18);
}

.president-id {
  text-align: center;
}

.president-id .name {
  font-weight: 700;
  font-size: 18px;
  color: #0d1b47;
}

.president-id .role {
  font-size: 14px;
  color: #475569;
  margin-top: 4px;
}

.president-id .org {
  font-size: 13px;
  color: #6b7280;
  margin-top: 6px;
  line-height: 1.2;
}

/* Right content */
.president-content {
  padding: 6px 8px;
}

.president-content h2 {
  margin: 2px 0 12px;
  font-size: 22px;
  color: #0d1b47;
  letter-spacing: 0.2px;
}

/* blockquote style */
.president-quote {
  margin: 0 0 14px 0;
  padding: 18px 18px;
  border-left: 4px solid rgba(45,81,255,0.14);
  background: linear-gradient(90deg, rgba(45,81,255,0.03), rgba(45,81,255,0.01));
  color: #0b2547;
  font-weight: 600;
  border-radius: 8px;
  font-size: 15px;
  line-height: 1.55;
}

/* body paragraphs */
.president-body {
  margin: 12px 0;
  color: #21304a;
  font-size: 14.2px;
  line-height: 1.7;
  text-align: justify;
}

/* signature */
.signature {
  margin-top: 18px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.sig-text {
  display: flex;
  flex-direction: column;
  color: #0d1b47;
  font-weight: 600;
}

.sig-name {
  margin-top: 8px;
  font-family: "Segoe Script", "Brush Script MT", cursive;
  font-size: 18px;
  color: #102042;
}

/* small screens */
@media (max-width: 920px) {
  .president-card {
    grid-template-columns: 1fr;
    padding: 18px;
  }

  .president-media {
    flex-direction: row;
    gap: 16px;
    align-items: center;
    justify-content: flex-start;
  }

  .president-photo {
    width: 120px;
    height: 120px;
  }

  .president-id {
    text-align: left;
  }
}

/* print friendly */
@media print {
  .president-card { box-shadow: none; background: white; }
  .president-photo { border: 2px solid #ddd; }
}


