
:root {
  /* Primary – Red */
  --pp-red:          #e30514;
  --pp-red-light:    #ef8869;
  --pp-red-pale:     #fdf0ee;

  /* Secondary – Blue */
  --pp-blue:         #003087;
  --pp-blue-light:   #e7f3fb;
  --pp-blue-mid:     #cce3f4;

  /* Accent – Grey */
  --pp-grey:         #2c3e50;
  --pp-grey-mid:     #4a5f72;
  --pp-grey-light:   #fff;

  /* Neutral */
  --pp-white:        #ffffff;
  --pp-off-white:    #f8fafc;
  --pp-border:       #d0dce8;
}

/* ── Hero ── */
.pp-hero {
  background-color: var(--pp-blue) !important;
  min-height: 340px;
  padding: 72px 24px 80px;
}
.pp-eyebrow {
  display: inline-block;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 100px;
  padding: 4px 18px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--pp-blue-light) !important;
  margin-bottom: 20px;
}
.pp-hero-title {
  color: var(--pp-white) !important;
  font-size: clamp(2.4rem, 5vw, 3.6rem) !important;
  line-height: 1.15;
  margin-bottom: 20px;
}
.pp-hero-intro {
  color: #cce3f4 !important;
  font-size: 1.1rem;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.pp-subject-card__btn .wp-block-button__link {
  color:white !important;
}

/* ── Ethos band ── */
.pp-ethos-band {
  background-color: var(--pp-grey) !important;
  padding: 56px 24px;
}
.pp-ethos-inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}
.pp-ethos-icon {
  font-size: 2rem;
  color: var(--pp-red-light);
  display: block;
  margin-bottom: 20px;
}
.pp-ethos-title {
  color: var(--pp-white) !important;
  font-size: clamp(1.5rem, 3vw, 2rem) !important;
  margin-bottom: 16px;
}
.pp-ethos-text {
  color: #b0bec8 !important;
  font-size: 1.05rem;
  line-height: 1.75;
}

/* ── Section wrapper ── */
.pp-section {
  padding-top: 42px !important;
  padding-bottom: 42px !important;
}
.pp-section-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--pp-red) !important;
  margin-bottom: 10px !important;
}
.pp-section-title {
  font-size: clamp(1.6rem, 3.5vw, 2.2rem) !important;
  color: var(--pp-grey);
  margin-bottom: 36px !important;
}

/* ── Value cards ── */
.pp-values-grid {
  gap: 20px !important;
}
.pp-value-card {
  background: var(--pp-white);
  border: 1px solid var(--pp-border);
  border-top: 3px solid var(--pp-red);
  border-radius: 10px;
  padding: 28px 24px !important;
  transition: box-shadow 0.2s, transform 0.2s;
}
.pp-value-card:hover {
  box-shadow: 0 8px 24px rgba(227,5,20,0.1);
  transform: translateY(-3px);
}
.pp-value-card--empty {
  background: transparent;
  border: none;
}
.pp-value-icon-wrap {
  width: 46px;
  height: 46px;
  background: var(--pp-blue-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.pp-value-icon-wrap i {
  font-size: 1.2rem;
  color: var(--pp-blue);
}
.pp-value-title {
  font-size: 1.05rem !important;
  color: var(--pp-grey) !important;
  margin-bottom: 10px !important;
}
.pp-value-text {
  font-size: 0.93rem;
  color: var(--pp-grey-mid);
  line-height: 1.65;
}

/* ── Divider ── */
.pp-divider {
  border-color: var(--pp-border) !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

/* ── Commitments ── */
.pp-commitments {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.pp-commitment {
  display: flex !important;
  flex-direction: row !important;
  align-items: flex-start;
  gap: 24px;
  padding: 28px 0 !important;
  border-bottom: 1px solid var(--pp-border);
}
.pp-commitment:last-child {
  border-bottom: none;
}
.pp-commitment-num {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--pp-blue-mid);
  line-height: 1;
  min-width: 52px;
  padding-top: 4px;
  font-variant-numeric: tabular-nums;
}
.pp-commitment-body {
  flex: 1;
}
.pp-commitment-icon {
  width: 40px;
  height: 40px;
  background: var(--pp-red-pale);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}
.pp-commitment-icon i {
  font-size: 1.1rem;
  color: var(--pp-red);
}
.pp-commitment-title {
  font-size: 1.1rem !important;
  color: var(--pp-grey) !important;
  margin-bottom: 8px !important;
}
.pp-commitment-text {
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ── Closing band ── */
.pp-closing-band {
  background-color: var(--pp-blue-light) !important;
  border-top: 3px solid var(--pp-blue);
  padding: 56px 24px !important;
}
.pp-closing-text {
  color: var(--pp-grey) !important;
  font-size: 1.05rem;
  line-height: 1.8;
  max-width: 780px;
  margin: 0 auto;
  font-style: italic;
}

/* ── Responsive ── */
@media (max-width: 600px) {
  .pp-commitment {
    flex-direction: column !important;
    gap: 12px;
  }
  .pp-commitment-num {
    font-size: 1.4rem;
  }
}
/* ── Info cards (reuses pp-value-card base but icon style differs) ── */
.pp-info-cards {
  gap: 20px !important;
}
.pp-info-card {
  background: var(--pp-white);
  border: 1px solid var(--pp-border);
  border-top: 3px solid #b50410;
  border-radius: 10px;
  padding: 28px 24px !important;
  transition: box-shadow 0.2s, transform 0.2s;
}
.pp-info-card:hover {
  box-shadow: 0 8px 24px rgba(0,48,135,0.1);
  transform: translateY(-3px);
}
.pp-info-card-icon {
  width: 46px;
  height: 46px;
  background: var(--pp-blue-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.pp-info-card-icon i {
  font-size: 1.2rem;
  color: var(--pp-blue);
}

/* ── Staff tables section ── */
.pp-staff-tables-section {
  background-color: var(--pp-off-white);
  padding: 48px 0;
}
.pp-staff-tables-inner {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Year group heading ── */
.pp-table-group-title {
  font-size: 1.1rem !important;
  color: var(--pp-white) !important;
  background-color: var(--pp-blue);
  padding: 10px 16px !important;
  border-radius: 6px 6px 0 0;
  margin-bottom: 0 !important;
  margin-top: 32px !important;
}
.pp-table-group-title--leadership {
  background-color: var(--pp-grey);
}

/* ── Staff table ── */
.pp-staff-table {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}
.pp-staff-table table {
  width: 100%;
  border-collapse: collapse;
  background: var(--pp-white);
  border: 1px solid var(--pp-border);
  border-top: none;
  border-radius: 0 0 6px 6px;
  overflow: hidden;
  font-size: 0.92rem;
}
.pp-staff-table thead tr {
  background-color: var(--pp-blue-light);
}
.pp-staff-table thead th {
  padding: 12px 16px;
  text-align: center;
  font-weight: 600;
  color: var(--pp-blue);
  border-right: 1px solid var(--pp-border);
  font-size: 0.88rem;
}
.pp-staff-table thead th:last-child {
  border-right: none;
}
.pp-staff-table tbody tr {
  border-top: 1px solid var(--pp-border);
}
.pp-staff-table tbody tr:nth-child(even) {
  background-color: var(--pp-off-white);
}
.pp-staff-table tbody td {
  padding: 10px 16px;
  text-align: center;
  color: var(--pp-grey-mid);
}
.pp-staff-table tbody td strong {
  color: var(--pp-grey);
}

/* ── Leadership table overrides ── */
.pp-staff-table--leadership thead {
  display: none;
}
.pp-staff-table--leadership tbody td {
  text-align: left;
  width: 50%;
}
.pp-staff-table--leadership tbody td:first-child {
  color: var(--pp-grey);
  font-weight: 500;
  border-right: 1px solid var(--pp-border);
  background-color: var(--pp-blue-light);
  width: 40%;
}

/* ── Responsive ── */
@media (max-width: 640px) {
  .pp-staff-table table,
  .pp-staff-table thead,
  .pp-staff-table tbody,
  .pp-staff-table th,
  .pp-staff-table td,
  .pp-staff-table tr {
    display: block;
  }
  .pp-staff-table thead tr {
    display: none;
  }
  .pp-staff-table tbody td {
    text-align: left;
    padding: 8px 16px;
  }
  .pp-staff-table--leadership tbody td:first-child {
    width: 100%;
    border-right: none;
    border-bottom: none;
    padding-bottom: 2px;
  }
  .pp-staff-table--leadership tbody td:last-child {
    padding-top: 4px;
    padding-bottom: 12px;
  }
}

.pp-info-card figure > img {
margin-bottom:20px;
}