.page-banner {
  background:
    linear-gradient(rgba(106, 27, 154, 0.75), rgba(106, 27, 154, 0.75)),
    url("images/about-banner.jpg") center/cover;
  color: #fff;
  text-align: center;
  padding: 2% 1%;
}

.page-banner-small {
  background:
    linear-gradient(rgba(106, 27, 154, 0.75), rgba(106, 27, 154, 0.75)),
    url("images/about-banner.jpg") center/cover;
  color: #fff;
  text-align: center;
  padding: 25px 20px;
}

.page-banner h1 {
  font-family: "Poppins", sans-serif;
  font-size: clamp(2rem, 4.2vw, 3.2rem);
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.2;
  margin-bottom: 14px;
}

.page-banner p {
  max-width: 800px;
  margin: auto;
  font-family: "Poppins", sans-serif;
  font-size: clamp(0.98rem, 1.2vw, 1.1rem);
  line-height: 1.75;
}

.about-container {
  width: min(1200px, 92%);
  margin: auto;
  padding: 80px 0;
}

/* ==========================
           LEADERSHIP
        ===========================*/

/* ==========================
           KANGRA
        ===========================*/

.kangra {
  margin-top: 90px;
}

.kangra-grid {
  display: grid;

  gap: 50px;

  align-items: center;
}

.kangra-content h2 {
  font-family: "Poppins", sans-serif;
  color: #6a1b9a;
  font-size: clamp(1.6rem, 2.5vw, 2.35rem);
  margin-bottom: 18px;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.kangra-content p {
  font-family: "Poppins", sans-serif;
  line-height: 1.75;

  color: #555;

  margin-bottom: 20px;

  text-align: justify;
}

.kangra-info {
  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 20px;
}

.info-box {
  background: #f8f5ff;

  border-left: 5px solid #6a1b9a;

  padding: 22px;

  border-radius: 12px;
}

.info-box h3 {
  font-family: "Poppins", sans-serif;
  color: #6a1b9a;
  font-weight: 600;
  margin-bottom: 10px;
}

.info-box p {
  margin: 0;
  font-family: "Poppins", sans-serif;
  line-height: 1.7;
}

/* ==========================
           AGE TABLE
        ===========================*/
.table-responsive {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.age-section {
  margin-top: 40px;
  padding: 40px;
}

.age-table {
  width: 100%;

  border-collapse: collapse;

  overflow: hidden;

  border-radius: 15px;

  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.age-table th {
  font-family: "Poppins", sans-serif;
  background: #6a1b9a;

  color: #fff;

  padding: 18px;

  font-size: clamp(0.95rem, 1.2vw, 1.06rem);
  font-weight: 600;
}

.age-table td {
  font-family: "Poppins", sans-serif;
  padding: 18px;

  border-bottom: 1px solid #eee;

  text-align: center;
}

.age-table tbody tr:nth-child(even) {
  background: #fafafa;
}

.age-table tbody tr:hover {
  background: #f2ebff;
}
.content-center {
  display: flex;
  justify-content: center;
}
.download-box {
  border: 6px solid;
  padding: 10px;
  width: 30%;
}

/* Informational badge used on book-list.php (non-clickable) */
.download-box .info-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 14px;
  font-weight: 600;
  font-size: 1rem;
  color: inherit;
  background: transparent;
  border-radius: 8px;
  width: 100%;
  box-sizing: border-box;
  pointer-events: none; /* ensure non-clickable and no hover effects */
}

.download-box .info-badge .info-icon {
  font-size: 1.2rem;
  line-height: 1;
}

.leaders {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 35px;
}
.leader-card-about {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  transition: 0.35s;
}
.leader-card-about img {
  width: 100%;
  /* height: 500px; */
}
.leader-content {
  padding: 30px;
}
.leader-content h3 {
  color: #6a1b9a;
  margin-bottom: 8px;
  font-size: 28px;
}
.designation {
  color: #ff8c3d;
  font-weight: 700;
  margin-bottom: 18px;
}
.leader-content p {
  line-height: 1.9;
  color: #666;
}
/* On small screens make the download box full width so badge doesn't overflow */
@media (max-width: 900px) {
  .download-box {
    width: 85%;
  }
}

/* ==========================
           MOBILE
        ===========================*/

@media (max-width: 900px) {
  .kangra-grid {
    grid-template-columns: 1fr;
  }

  .page-banner {
    padding: 80px 20px;
  }

  .page-banner h1 {
    font-size: 38px;
  }

  .section-heading h2 {
    font-size: 30px;
  }

  .kangra-info {
    grid-template-columns: 1fr;
  }
}
