.chancellor-card-wrapper {
  display: flex;
  justify-content: center;
  padding: 24px 0;
}

.chancellor-card {
  position: relative;
  width: 100%;
  max-width: 860px;
  border-radius: 24px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 20px 60px rgba(12, 43, 89, 0.18);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  border: 1px solid rgba(12, 43, 89, 0.08);
}

.chancellor-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 70px rgba(12, 43, 89, 0.28);
}

.chancellor-card__banner {
  position: relative;
  height: 130px;
  background: linear-gradient(120deg, #0c2b59 0%, #1e4e9c 55%, #2f80ed 100%);
  overflow: hidden;
}

.chancellor-card__banner::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -40px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
}

.chancellor-card__banner::after {
  content: "";
  position: absolute;
  bottom: -80px;
  left: 30%;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
}

.chancellor-card__banner-tag {
  position: absolute;
  top: 18px;
  left: 20px;
  background: rgba(255, 255, 255, 0.16);
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.chancellor-card__body {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  padding: 0 32px 30px;
  position: relative;
}

.chancellor-card__photo-wrap {
  position: relative;
  margin-top: -72px;
  z-index: 2;
  flex: 0 0 auto;
}

.chancellor-card__photo {
  display: block;
  width: 170px;
  height: 200px;
  object-fit: cover;
  object-position: top center;
  border-radius: 18px;
  border: 5px solid #ffffff;
  box-shadow: 0 14px 34px rgba(12, 43, 89, 0.28);
  background: #f1f5fb;
}

.chancellor-card__info {
  flex: 1 1 380px;
  min-width: 260px;
  padding: 18px 0 0 26px;
}

.chancellor-card__name {
  margin: 0;
  font-size: 26px;
  font-weight: 800;
  color: #0c2b59;
  letter-spacing: -0.3px;
  line-height: 1.2;
}

.chancellor-card__designation {
  margin: 8px 0 0;
  font-size: 15px;
  font-weight: 600;
  color: #2f80ed;
  line-height: 1.5;
}

.chancellor-card__divider {
  height: 3px;
  width: 64px;
  margin: 14px 0 16px;
  border-radius: 3px;
  background: linear-gradient(90deg, #2f80ed, #56ccf2);
}

.chancellor-card__details {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.chancellor-card__details li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: #33475b;
  line-height: 1.5;
}

.chancellor-card__details .detail-icon {
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  font-size: 15px;
  color: #ffffff;
  background: linear-gradient(135deg, #2f80ed, #56ccf2);
  box-shadow: 0 6px 14px rgba(47, 128, 237, 0.3);
}

.chancellor-card__details strong {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #94a3b8;
  margin-bottom: 2px;
}

.chancellor-card__details a {
  color: #1e4e9c;
  text-decoration: none;
  font-weight: 600;
}

.chancellor-card__details a:hover {
  text-decoration: underline;
  color: #2f80ed;
}

.chancellor-card__btn {
  display: inline-block;
  margin-top: 20px;
  padding: 11px 26px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
  background: linear-gradient(120deg, #0c2b59, #2f80ed);
  box-shadow: 0 10px 22px rgba(47, 128, 237, 0.35);
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.chancellor-card__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(47, 128, 237, 0.45);
  color: #ffffff;
}

@media (max-width: 640px) {
  .chancellor-card__body {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 20px 26px;
  }

  .chancellor-card__info {
    padding: 18px 0 0;
    min-width: 0;
  }

  .chancellor-card__divider {
    margin-left: auto;
    margin-right: auto;
  }

  .chancellor-card__details {
    text-align: left;
  }

  .chancellor-card__photo {
    width: 150px;
    height: 176px;
  }
}