/* Program Detail — Design Preview v3 */
:root {
  --pdd-nav-h: 52px;
  --pdd-navy: #173058;
}

/* Preview bar */
.pdd-preview-bar {
  background: var(--pdd-navy);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.45rem 0;
}
.pdd-preview-bar i { margin-right: 0.3rem; }
.pdd-preview-bar__link { color: #fff; text-decoration: none; font-weight: 700; }

/* Hero — match admin program crop (3:1) so framing is preserved */
.pdd-hero {
  position: relative;
  isolation: isolate;
  aspect-ratio: 3 / 1;
  width: 100%;
  min-height: 260px;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: stretch;
  overflow: hidden;
  background: #1a1a1a;
}
.pdd-hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.pdd-hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  /* max-width: 100%; */
  min-width: 0;
  padding: 2rem 0 2.5rem;
  filter:
    drop-shadow(0 0 2px rgba(0, 0, 0, 0.95))
    drop-shadow(0 2px 6px rgba(0, 0, 0, 0.85))
    drop-shadow(0 6px 18px rgba(0, 0, 0, 0.55));
}
.pdd-hero__grid {
  max-width: 100%;
  width: 100%;
  min-width: 0;
}
.pdd-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.72) 0%,
    rgba(0, 0, 0, 0.32) 42%,
    rgba(0, 0, 0, 0.08) 70%,
    rgba(0, 0, 0, 0) 100%
  );
}

.pdd-hero__title {
  margin: 0;
  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.4vw + 0.55rem, 2.65rem);
  line-height: 1.2;
  max-width: 100%;
  width: 100%;
  font-weight: 800;
  white-space: normal !important;
  overflow: visible;
  overflow-wrap: anywhere;
  word-break: break-word;
  text-overflow: unset;
  text-shadow:
    0 0 2px #000,
    0 0 6px rgba(0, 0, 0, 0.95),
    0 2px 4px rgba(0, 0, 0, 0.95),
    0 4px 14px rgba(0, 0, 0, 0.85);
  -webkit-text-stroke: 0.6px rgba(0, 0, 0, 0.65);
  paint-order: stroke fill;
}

/* Horizontal sticky nav */
.pdd-nav {
  position: sticky;
  top: var(--site-header-height, 114px);
  z-index: 1020;
  background: #fff;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 12px rgba(15, 32, 58, 0.06);
}
.pdd-nav__list {
  list-style: none;
  margin: 0;
  padding: 0.55rem 0;
  display: flex;
  flex-wrap: nowrap;
  gap: 0.35rem;
  overflow-x: auto;
  scrollbar-width: none;
}
.pdd-nav__list::-webkit-scrollbar { display: none; }
.pdd-nav__list li { flex: 0 0 auto; }
.pdd-nav__list a {
  display: block;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  color: var(--text-muted);
  font-size: 0.86rem;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.15s, background 0.15s;
}
.pdd-nav__list a:hover {
  color: var(--brand-primary);
  background: rgba(23, 48, 88, 0.05);
}
.pdd-nav__list a.is-active {
  color: #fff;
  background: var(--brand-primary);
}

body.site-header-scrolled .pdd-nav {
  top: var(--site-nav-height, 76px);
}

/* Main */
.pdd-main {
  background: #fff;
}
.pdd-section {
  padding: 3.5rem 0;
  scroll-margin-top: calc(var(--site-header-height, 114px) + var(--pdd-nav-h));
}
.pdd-section--alt {
  background: #f7f9fc;
}
body.site-header-scrolled .pdd-section {
  scroll-margin-top: calc(var(--site-nav-height, 76px) + var(--pdd-nav-h));
}

/* Section headers */
.pdd-head { margin-bottom: 1.75rem; }
.pdd-head--compact { margin-bottom: 1.25rem; }
.pdd-head--center { text-align: center; }
.pdd-head--center .pdd-head__lead { margin-inline: auto; }
.pdd-head--row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
}
.pdd-head__label {
  margin: 0 0 0.3rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-transform: uppercase;
  text-align: inherit;
  color: var(--brand-accent);
}
.pdd-head--center .pdd-head__label {
  text-align: center;
}
.pdd-head__title {
  margin: 0;
  color: var(--brand-primary);
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 1.5vw + 1rem, 1.85rem);
  line-height: 1.2;
  text-align: inherit;
}
.pdd-head--center .pdd-head__title {
  text-align: center;
}
.pdd-head__lead {
  margin: 0.5rem 0 0;
  max-width: 600px;
  color: var(--text-muted);
  font-size: 0.94rem;
  line-height: 1.65;
}

/* Intro & features */
.pdd-intro {
  margin: 0 0 2rem;
  color: var(--text-main);
  font-size: 1rem;
  line-height: 1.8;
  max-width: 100%;
  overflow-wrap: anywhere;
  word-break: break-word;
}
.pdd-intro--institute {
  margin-bottom: 0.75rem;
}
.pdd-industry-partner {
  margin: 0 0 2rem;
}
.pdd-industry-partner .pdd-block__title {
  display: block;
}
.pdd-industry-partner__body {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.pdd-industry-partner__logo {
  display: block;
  max-width: 320px;
}
.pdd-industry-partner__logo img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 110px;
  object-fit: contain;
}
.pdd-industry-partner__copy {
  margin: 0;
  color: var(--text-main);
  font-size: 1rem;
  line-height: 1.8;
}
.pdd-block { margin-bottom: 2rem; }
.pdd-block__title {
  margin: 0 0 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--brand-accent);
  color: var(--brand-primary);
  font-size: 1.05rem;
  font-weight: 700;
  display: inline-block;
}
.pdd-features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
.pdd-feature {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 1.15rem;
  min-height: 180px;
  padding: 1.5rem 1.35rem;
  border: 1px solid var(--border);
  border-top: 3px solid var(--brand-accent);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(23, 48, 88, 0.06);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.pdd-feature:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(170, 34, 46, 0.12);
}
.pdd-section--alt .pdd-feature { background: #fff; }
.pdd-feature__icon {
  flex: 0 0 72px;
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: rgba(170, 34, 46, 0.1);
  color: var(--brand-accent);
  font-size: 2rem;
}
.pdd-feature__text {
  margin: 0;
  color: var(--brand-primary);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.45;
  text-align: left;
  text-justify: auto;
  hyphens: manual;
  word-spacing: normal;
}

/* Quick facts card */
.pdd-facts-card {
  padding: 1.35rem;
  border-radius: 12px;
  background: #fff;
  color: var(--brand-primary);
  border: 1px solid var(--border);
  border-left: 4px solid var(--brand-accent);
  box-shadow: 0 8px 24px rgba(170, 34, 46, 0.08);
  position: sticky;
  top: calc(var(--site-header-height, 114px) + var(--pdd-nav-h) + 1rem);
}
body.site-header-scrolled .pdd-facts-card {
  top: calc(var(--site-nav-height, 76px) + var(--pdd-nav-h) + 1rem);
}
.pdd-facts-card::before {
  content: "Quick Facts";
  display: block;
  margin-bottom: 1rem;
  font-size: 1rem;
  font-weight: 700;
  color: var(--brand-primary);
}
.pdd-fact {
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--border);
}
.pdd-fact:last-child { border-bottom: none; }
.pdd-fact span {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--brand-accent);
}
.pdd-fact strong {
  display: block;
  margin-top: 0.1rem;
  font-size: 0.88rem;
  line-height: 1.4;
  color: var(--brand-primary);
}

/* Why choose grid */
.pdd-why { margin-top: 0.5rem; }
.pdd-why__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.pdd-why__card {
  padding: 1.25rem;
  border-radius: 10px;
  background: linear-gradient(145deg, var(--pdd-navy) 0%, #254a82 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  height: 100%;
}
.pdd-why__card-icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  margin-bottom: 0.75rem;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 1.05rem;
}
.pdd-why__card h4 {
  margin: 0 0 0.35rem;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.35;
  color: #fff;
}
.pdd-why__card p {
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
}

/* Cards */
.pdd-card {
  height: 100%;
  padding: 1.35rem 1.4rem;
  border-radius: 10px;
  background: #fff;
  border: 1px solid var(--border);
}
.pdd-card__title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 1.1rem;
  color: var(--brand-primary);
  font-size: 1rem;
  font-weight: 700;
}
.pdd-card__title i { color: var(--brand-accent); }

.pdd-timeline {
  list-style: none;
  margin: 0;
  padding: 0;
}
.pdd-timeline li {
  display: flex;
  gap: 0.85rem;
  padding-bottom: 1.1rem;
  position: relative;
}
.pdd-timeline li:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 15px;
  top: 32px;
  bottom: 0;
  width: 2px;
  background: var(--border);
}
.pdd-timeline .step-num {
  flex: 0 0 32px;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--brand-primary);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  position: relative;
  z-index: 1;
}
.pdd-timeline__content {
  flex: 1;
  min-width: 0;
  padding-top: 0.3rem;
}
.pdd-timeline__content > span {
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--text-main);
}
.pdd-timeline__points {
  margin: 0.45rem 0 0;
  padding-left: 1.15rem;
  list-style: disc;
}
.pdd-timeline__points li {
  display: list-item;
  padding-bottom: 0.2rem;
  position: static;
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--text-main);
}
.pdd-timeline__points li::after {
  display: none;
}
.pdd-timeline li > span:last-child {
  padding-top: 0.3rem;
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--text-main);
}

.pdd-dates { display: grid; gap: 0.55rem; }
.pdd-date {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding: 0.7rem 0.85rem;
  border-radius: 8px;
  background: #f7f9fc;
  border-left: 3px solid var(--brand-accent);
}
.pdd-date span { font-size: 0.84rem; font-weight: 600; color: var(--text-muted); }
.pdd-date strong { font-size: 0.86rem; color: var(--brand-primary); text-align: right; }

/* Curriculum — semester tabs + subject grid */
.pdd-curriculum {
  display: grid;
  grid-template-columns: minmax(200px, 240px) minmax(0, 1fr);
  gap: 1.25rem;
  align-items: start;
}
.pdd-curriculum__tabs {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding: 0.75rem;
  border-radius: 12px;
  background: #f7f9fc;
  border: 1px solid var(--border);
  max-height: 420px;
  overflow-y: auto;
}
.pdd-curriculum__tab {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
  padding: 0.75rem 0.85rem;
  border: none;
  border-radius: 8px;
  background: transparent;
  text-align: left;
  cursor: pointer;
  transition: background 0.15s, box-shadow 0.15s;
  position: relative;
}
.pdd-curriculum__tab:hover {
  background: rgba(23, 48, 88, 0.06);
}
.pdd-curriculum__tab.is-active {
  background: var(--pdd-navy);
  box-shadow: 0 4px 14px rgba(23, 48, 88, 0.2);
}
.pdd-curriculum__tab-num {
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: rgba(23, 48, 88, 0.08);
  color: var(--brand-primary);
  font-size: 0.78rem;
  font-weight: 700;
}
.pdd-curriculum__tab.is-active .pdd-curriculum__tab-num {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}
.pdd-curriculum__tab-label {
  color: var(--brand-primary);
  font-size: 0.84rem;
  font-weight: 600;
  line-height: 1.35;
}
.pdd-curriculum__tab.is-active .pdd-curriculum__tab-label {
  color: #fff;
}
.pdd-curriculum__content {
  min-height: 280px;
  padding: 1.35rem 1.4rem;
  border-radius: 12px;
  background: #fff;
  border: 1px solid var(--border);
  border-left: 5px solid var(--brand-accent);
  box-shadow: 0 6px 24px rgba(15, 32, 58, 0.06);
}
.pdd-curriculum__panel {
  display: none;
}
.pdd-curriculum__panel.is-active {
  display: block;
}
.pdd-curriculum__panel-head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.5rem 1rem;
  margin-bottom: 1.15rem;
  padding-bottom: 0.85rem;
  border-bottom: 2px solid var(--brand-accent);
}
.pdd-curriculum__panel-head h3 {
  margin: 0;
  color: var(--brand-primary);
  font-size: 1.1rem;
  font-weight: 700;
}
.pdd-curriculum__panel-head span {
  color: var(--text-muted);
  font-size: 0.8rem;
  font-weight: 600;
}
.pdd-curriculum__subjects {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem 1rem;
}
.pdd-curriculum__tab-badge {
  flex: 0 0 auto;
  min-width: 1.15rem;
  height: 1.15rem;
  padding: 0 0.3rem;
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  background: var(--brand-accent, #c44a36);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 800;
  line-height: 1;
}
.pdd-curriculum__tab.is-active .pdd-curriculum__tab-badge {
  background: #fff;
  color: var(--brand-accent, #c44a36);
}
.pdd-curriculum__group {
  margin-top: 1.15rem;
}
.pdd-curriculum__group + .pdd-curriculum__group {
  margin-top: 1.25rem;
}
.pdd-curriculum__group-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
  padding-bottom: 0.55rem;
  border-bottom: 1px solid var(--border, #e2e8f0);
}
.pdd-curriculum__group-title {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--brand-primary);
}
.pdd-curriculum__group-count {
  flex: 0 0 auto;
  min-width: 1.5rem;
  height: 1.5rem;
  padding: 0 0.4rem;
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  background: rgba(15, 32, 58, 0.08);
  color: var(--brand-primary);
  font-size: 0.75rem;
  font-weight: 800;
}
.pdd-curriculum__specialized {
  margin-top: 1.15rem;
  padding: 0.95rem 1rem 1.05rem;
  border-radius: 12px;
  border: 1px solid rgba(196, 74, 54, 0.22);
  background: linear-gradient(180deg, #fff7f4 0%, #fff 100%);
  box-shadow: 0 8px 20px rgba(196, 74, 54, 0.06);
}
.pdd-curriculum__group .pdd-curriculum__specialized {
  margin-top: 0.9rem;
}
.pdd-curriculum__specialized .pdd-curriculum__subjects + .pdd-curriculum__subjects {
  margin-top: 0.75rem;
}
.pdd-curriculum__specialized + .pdd-curriculum__specialized {
  margin-top: 0.9rem;
}
.pdd-curriculum__specialized-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}
.pdd-curriculum__specialized .pdd-curriculum__group-title i {
  color: var(--brand-accent, #c44a36);
}
.pdd-curriculum__specialized-count {
  flex: 0 0 auto;
  min-width: 1.5rem;
  height: 1.5rem;
  padding: 0 0.4rem;
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  background: rgba(196, 74, 54, 0.12);
  color: var(--brand-accent, #c44a36);
  font-size: 0.75rem;
  font-weight: 800;
}
.pdd-curriculum__subjects--specialized .pdd-curriculum__subject,
.pdd-curriculum__subject--specialized {
  background: #fff;
  border-color: rgba(196, 74, 54, 0.28);
  box-shadow: inset 3px 0 0 var(--brand-accent, #c44a36);
}
.pdd-curriculum__subjects--specialized .pdd-curriculum__subject i,
.pdd-curriculum__subject--specialized i {
  color: var(--brand-accent, #c44a36);
}
.pdd-curriculum__subject-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.3rem;
  font-weight: 500;
}
.pdd-curriculum__badge {
  display: inline-flex;
  align-items: center;
  padding: 0.12rem 0.45rem;
  border-radius: 999px;
  background: rgba(196, 74, 54, 0.12);
  color: var(--brand-accent, #c44a36);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.pdd-curriculum__subject {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  padding: 0.7rem 0.85rem;
  border-radius: 8px;
  background: #f7f9fc;
  border: 1px solid rgba(23, 48, 88, 0.06);
  color: var(--text-main);
  font-size: 0.88rem;
  line-height: 1.45;
}
.pdd-curriculum__subject i {
  flex: 0 0 auto;
  margin-top: 0.1rem;
  color: var(--brand-accent);
  font-size: 0.95rem;
}
.pdd-curriculum__subject span {
  font-weight: 500;
}

/* Accordion (FAQs only) */
.pdd-accordion .accordion-item {
  border: 1px solid var(--border);
  border-radius: 8px !important;
  margin-bottom: 0.5rem;
  overflow: hidden;
}
.pdd-accordion .accordion-button {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--brand-primary);
  background: #fff;
  box-shadow: none;
  padding: 1rem 1.15rem;
}
.pdd-accordion .accordion-button:not(.collapsed) {
  background: #f7f9fc;
}
.pdd-accordion .accordion-body ul { margin: 0; padding-left: 1.1rem; }
.pdd-accordion .accordion-body li { margin-bottom: 0.25rem; font-size: 0.9rem; line-height: 1.55; }

/* Careers */
.pdd-careers-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.75rem;
}
.pdd-career-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 155px;
  padding: 1.2rem 1.05rem;
  border-radius: 12px;
  background: #fff;
  border: 2px solid rgba(23, 48, 88, 0.22);
  border-top: 4px solid var(--pdd-navy);
  color: var(--brand-primary);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.pdd-career-card:hover {
  transform: translateY(-4px);
  border-color: rgba(23, 48, 88, 0.42);
  border-top-color: var(--pdd-navy);
  box-shadow: 0 14px 30px rgba(23, 48, 88, 0.14);
}
.pdd-career-card__icon {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  margin-bottom: 0.9rem;
  border-radius: 12px;
  background: rgba(23, 48, 88, 0.09);
  border: 1px solid rgba(23, 48, 88, 0.12);
  color: var(--pdd-navy);
  font-size: 1.3rem;
}
.pdd-career-card__title {
  margin: 0;
  margin-top: auto;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.4;
  color: var(--brand-primary);
}
.pdd-career-card__glow {
  position: absolute;
  right: -25%;
  bottom: -45%;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(23, 48, 88, 0.08) 0%, transparent 70%);
  pointer-events: none;
}
.pdd-careers__outro-wrap {
  max-width: 720px;
  margin: 1.75rem auto 0;
  padding: 1.1rem 1.25rem;
  border-radius: 10px;
  background: #fff;
  border: 1px solid var(--border);
  border-left: 4px solid var(--brand-accent);
  text-align: center;
}
.pdd-careers__outro {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.65;
}

.pdd-mou-list,
.pdd-mou-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
  align-items: stretch;
}
.pdd-mou-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  min-height: 148px;
  padding: 0.85rem 0.75rem 0.95rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
}
.pdd-mou-card__media {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 84px;
}
.pdd-mou-card__image,
.pdd-mou-card .pdd-placement-image {
  width: auto;
  max-width: 132px;
  height: auto;
  max-height: 72px;
  object-fit: contain;
  background: transparent;
  border: 0;
  border-radius: 0;
  cursor: zoom-in;
}
.pdd-mou-card__placeholder {
  display: block;
  width: 56px;
  height: 40px;
  border-radius: 6px;
  background: #f1f5f9;
}
.pdd-mou-card__title {
  margin: 0.6rem 0 0;
  width: 100%;
  text-align: center;
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.35;
  color: var(--brand-primary, #173058);
}

/* Placements */
#pdd-placements > .container {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  max-width: 1180px;
}
#pdd-placements .pdd-head,
#pdd-placements .pdd-placement-cell,
#pdd-placements .pdd-placement-process,
#pdd-placements .pdd-placement-initiatives,
#pdd-placements .pdd-placement-records,
#pdd-placements .pdd-placement-subtitle,
#pdd-placements .pdd-placement-figure,
#pdd-placements .pdd-placement-stats,
#pdd-placements .pdd-placement-highlights,
#pdd-placements .pdd-placement-recruiters,
#pdd-placements .pdd-placements__outro-wrap {
  width: 100%;
  max-width: none;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
}
#pdd-placements .pdd-head__lead {
  max-width: none;
}
.pdd-placement-gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin: 1.5rem auto 0;
}
.pdd-placement-gallery--multi {
  grid-template-columns: 1fr;
}
.pdd-placement-image {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
  object-fit: contain;
  background: #fff;
  border-radius: 12px;
  border: 1px solid var(--border);
  cursor: zoom-in;
}
.pdd-placement-process .pdd-placement-figure,
.pdd-placement-initiative .pdd-placement-figure,
.pdd-placement-records .pdd-placement-figure {
  justify-items: center;
}
.pdd-placement-process__layout {
  display: grid;
  gap: 1.15rem;
  align-items: start;
}
.pdd-placement-process__copy {
  display: flex;
  flex-direction: column;
  min-width: 0;
  height: 100%;
}
.pdd-placement-process .pdd-placement-image,
.pdd-placement-initiative .pdd-placement-image,
.pdd-placement-records .pdd-placement-image {
  width: auto;
  max-width: min(100%, 640px);
  max-height: min(70vh, 720px);
}
.pdd-placement-process .pdd-placement-image {
  width: 100%;
  max-width: 100%;
  max-height: min(68vh, 620px);
  object-fit: contain;
}
.pdd-placement-image:focus-visible {
  outline: 2px solid var(--brand-primary, #173058);
  outline-offset: 3px;
}
.pdd-placement-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 180px), 1fr));
  gap: 0.85rem;
  margin: 1.5rem auto 0;
}
.pdd-placement-stat {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1.15rem 1rem;
  border-radius: 12px;
  background: #fff;
  border: 1px solid var(--border);
  text-align: center;
}
.pdd-placement-stat__value {
  font-size: 1.45rem;
  font-weight: 800;
  line-height: 1.2;
  color: var(--pdd-navy);
}
.pdd-placement-stat__label {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.4;
}
.pdd-placement-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
  gap: 0.85rem;
  margin-top: 1.5rem;
}
.pdd-placement-highlight {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 1rem 1.05rem;
  border-radius: 12px;
  background: #fff;
  border: 1px solid var(--border);
}
.pdd-placement-highlight__icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: rgba(23, 48, 88, 0.09);
  color: var(--pdd-navy);
  font-size: 1.15rem;
}
.pdd-placement-highlight p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--brand-primary);
}
.pdd-placement-recruiters {
  margin-top: 1.75rem;
}
.pdd-placement-recruiters__title {
  margin: 0 0 0.85rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--brand-primary);
  text-align: center;
}
.pdd-placement-recruiters__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.55rem;
}
.pdd-placement-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--border);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--brand-primary);
}
.pdd-placements__outro-wrap {
  margin: 1.75rem auto 0;
  padding: 1.15rem 1.35rem;
  border-radius: 12px;
  background: #fff;
  border: 1px solid var(--border);
  border-left: 4px solid var(--brand-accent);
  text-align: left;
}
.pdd-placements__outro {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.7;
  white-space: pre-line;
}
.pdd-placement-highlights--single,
.pdd-placement-stats--single {
  grid-template-columns: 1fr;
}

.pdd-placement-subtitle {
  margin: 0 0 0.85rem;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--brand-primary);
  text-align: center;
}
.pdd-placement-cell,
.pdd-placement-process,
.pdd-placement-initiatives,
.pdd-placement-records,
.pdd-placement-recruiters {
  margin-top: 2rem;
  padding: 1.4rem 1.25rem 1.5rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--border);
}
.pdd-placement-cell__grid {
  display: grid;
  gap: 1rem;
}
.pdd-placement-tagline,
.pdd-placement-note {
  margin: 0 0 1rem;
  text-align: center;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-muted);
}
.pdd-placement-figure {
  display: grid;
  gap: 1rem;
  margin: 0 0 1.15rem;
}
.pdd-placement-figure--recruiters {
  grid-template-columns: 1fr;
}
.pdd-placement-members {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.55rem;
}
.pdd-placement-members li {
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--border);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--brand-primary);
}
.pdd-placement-contact {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 1.15rem;
  font-size: 0.92rem;
}
.pdd-placement-contact a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--pdd-navy);
  font-weight: 600;
  text-decoration: none;
}
.pdd-placement-contact a:hover {
  text-decoration: underline;
}
.pdd-placement-flow {
  margin: 0 0 1rem;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  background: #fff;
  border: 1px solid var(--border);
  text-align: center;
  font-weight: 700;
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--pdd-navy);
}
.pdd-placement-steps {
  display: grid;
  gap: 0.75rem;
}
@media (min-width: 768px) {
  .pdd-placement-steps {
    grid-template-columns: 1fr 1fr;
  }
  .pdd-placement-figure--recruiters {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 992px) {
  .pdd-placement-process__layout {
    grid-template-columns: minmax(280px, 0.92fr) minmax(340px, 1.08fr);
    align-items: stretch;
    gap: 1.35rem;
  }
  .pdd-placement-process .pdd-placement-figure {
    justify-items: start;
    margin: 0;
    height: 100%;
  }
  .pdd-placement-process .pdd-placement-image {
    height: 100%;
    max-height: 100%;
    object-fit: contain;
    object-position: left center;
  }
  .pdd-placement-process .pdd-placement-flow {
    font-size: 0.8rem;
    padding: 0.65rem 0.75rem;
    margin-bottom: 0.75rem;
  }
  .pdd-placement-process .pdd-placement-steps {
    flex: 1;
    grid-template-columns: 1fr 1fr;
    gap: 0.7rem;
  }
  .pdd-placement-process .pdd-placement-step {
    padding: 0.8rem 0.85rem;
  }
  .pdd-placement-process .pdd-placement-step__index {
    min-width: 36px;
    height: 32px;
    font-size: 0.75rem;
  }
  .pdd-placement-process .pdd-placement-step__body h4 {
    font-size: 0.92rem;
  }
  .pdd-placement-process .pdd-placement-step__body p {
    font-size: 0.8rem;
    line-height: 1.45;
  }
}
.pdd-placement-step {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  padding: 1rem 1.05rem;
  border-radius: 12px;
  background: #fff;
  border: 1px solid var(--border);
  height: 100%;
}
.pdd-placement-step__index {
  flex-shrink: 0;
  min-width: 42px;
  height: 36px;
  padding: 0 0.4rem;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(23, 48, 88, 0.09);
  color: var(--pdd-navy);
  font-weight: 800;
  font-size: 0.85rem;
}
.pdd-placement-step__body h4 {
  margin: 0 0 0.35rem;
  font-size: 1rem;
  color: var(--brand-primary);
}
.pdd-placement-step__body p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text-muted);
  white-space: pre-line;
}
.pdd-placement-initiative-list {
  display: grid;
  gap: 1rem;
}
.pdd-placement-initiative {
  padding: 1.15rem 1.2rem 1.25rem;
  border-radius: 14px;
  background: #fff;
  border: 1px solid var(--border);
}
.pdd-placement-initiative h4 {
  margin: 0 0 0.5rem;
  font-size: 1.08rem;
  color: var(--brand-primary);
}
.pdd-placement-initiative p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--text-muted);
  white-space: pre-line;
}
.pdd-placement-initiative__points {
  margin: 0.85rem 0 0;
  padding-left: 1.15rem;
  color: var(--brand-primary);
}
.pdd-placement-initiative__points li {
  margin: 0.35rem 0;
  font-size: 0.9rem;
  line-height: 1.55;
}
.pdd-placement-initiative .pdd-placement-figure {
  margin-top: 1rem;
  margin-bottom: 0;
}
.pdd-placement-initiative--split .pdd-placement-initiative__layout {
  display: grid;
  gap: 1.1rem;
  align-items: start;
}
.pdd-placement-initiative--split .pdd-placement-figure {
  margin-top: 0;
  justify-items: start;
}
.pdd-placement-initiative--split .pdd-placement-image {
  width: 100%;
  max-width: 100%;
  max-height: min(68vh, 620px);
  object-fit: contain;
  object-position: left center;
}
.pdd-placement-initiative--split .pdd-placement-initiative__copy p {
  font-size: 0.88rem;
  line-height: 1.55;
}
.pdd-placement-initiative--split .pdd-placement-initiative__points {
  margin-top: 0.7rem;
}
@media (min-width: 992px) {
  .pdd-placement-initiative--split .pdd-placement-initiative__layout {
    grid-template-columns: minmax(280px, 0.92fr) minmax(340px, 1.08fr);
    align-items: stretch;
    gap: 1.35rem;
  }
  .pdd-placement-initiative--split .pdd-placement-figure {
    height: 100%;
  }
  .pdd-placement-initiative--split .pdd-placement-image {
    height: 100%;
    max-height: 100%;
  }
  .pdd-placement-initiative--split .pdd-placement-initiative__copy {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }
  .pdd-placement-initiative--split .pdd-placement-initiative__points li {
    font-size: 0.86rem;
    line-height: 1.45;
  }
}

/* Faculty */
.pdd-faculty-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--border);
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.pdd-faculty-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(170, 34, 46, 0.18);
}
.pdd-faculty-card__media {
  flex: 0 0 auto;
  height: 260px;
  max-height: none;
  background: #eef2f7;
  overflow: hidden;
}
.pdd-faculty-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  image-rendering: auto;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.pdd-faculty-card__placeholder {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  color: var(--text-muted);
  font-size: 2.5rem;
}
.pdd-faculty-card__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  padding: 0.9rem 1rem 0.75rem;
}
.pdd-faculty-card__body h4 {
  margin: 0;
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--brand-primary);
  text-align: center;
}
.pdd-faculty-card__role {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--brand-accent);
  text-align: center;
}
.pdd-faculty-card__meta {
  margin: 0;
  font-size: 0.76rem;
  line-height: 1.45;
  color: var(--text-muted);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.pdd-faculty-card__footer {
  margin-top: auto;
  padding: 0.8rem 1rem 1rem;
  border-top: 1px solid var(--border);
  background: #fafbfd;
  text-align: center;
}
.pdd-faculty-card__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--brand-accent);
}
.pdd-faculty-card:hover .pdd-faculty-card__cta i {
  transform: translateX(3px);
}
.pdd-faculty-card__cta i {
  transition: transform 0.2s ease;
}

@media (max-width: 991.98px) {
  #pddFacultyGrid {
    --bs-gutter-x: 0.7rem;
    --bs-gutter-y: 0.7rem;
  }

  .pdd-faculty-card__media {
    height: 148px;
  }

  .pdd-faculty-card__body {
    padding: 0.7rem 0.65rem 0.4rem;
    gap: 0.22rem;
  }

  .pdd-faculty-card__body h4 {
    font-size: 0.82rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .pdd-faculty-card__role {
    font-size: 0.72rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .pdd-faculty-card__meta {
    display: none;
  }

  .pdd-faculty-card__footer {
    padding: 0.5rem 0.55rem 0.7rem;
  }

  .pdd-faculty-card__cta {
    font-size: 0.74rem;
  }
}

/* Campus life */
.pdd-life {
  display: grid;
  gap: 1.75rem;
}
.pdd-life-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 1.5rem 2rem;
  align-items: center;
}
.pdd-life-intro__copy {
  max-width: 420px;
}
.pdd-life-intro__title {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2vw + 0.8rem, 2.15rem);
  line-height: 1.2;
  color: var(--brand-primary);
}
.pdd-life-intro__lead {
  margin: 0 0 1.1rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}
.pdd-life-intro__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--brand-accent);
  text-decoration: none;
}
.pdd-life-intro__link:hover i {
  transform: translateX(3px);
}
.pdd-life-intro__link i {
  transition: transform 0.2s ease;
}
.pdd-life-intro__media {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  min-height: 280px;
  box-shadow: 0 16px 40px rgba(23, 48, 88, 0.12);
}
.pdd-life-intro__media img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  display: block;
}
.pdd-life-intro__badge {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--brand-accent);
  font-size: 0.75rem;
  font-weight: 700;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}
.pdd-life-filter {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.55rem;
}
.pdd-life-filter__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--brand-primary);
  font-size: 0.84rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease, box-shadow 0.15s ease;
}
.pdd-life-filter__btn i {
  font-size: 0.95rem;
  color: var(--brand-accent);
}
.pdd-life-filter__btn.is-active,
.pdd-life-filter__btn.is-active:hover {
  background: var(--brand-accent);
  border-color: var(--brand-accent);
  color: #fff;
  box-shadow: 0 8px 20px rgba(170, 34, 46, 0.25);
}
.pdd-life-filter__btn.is-active i {
  color: #fff;
}
.pdd-life-panels > .tab-pane { display: none; }
.pdd-life-panels > .tab-pane.active { display: block; }
.pdd-life-empty {
  margin: 0;
  padding: 2rem 1rem;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9rem;
  border: 1px dashed var(--border);
  border-radius: 12px;
  background: #fff;
}
.pdd-life-mosaic {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 140px;
  gap: 0.65rem;
}
.pdd-life-mosaic__item {
  position: relative;
  margin: 0;
  border-radius: 12px;
  overflow: hidden;
  background: #e8eef5;
}
.pdd-life-mosaic__item--hero {
  grid-column: span 2;
  grid-row: span 2;
}
.pdd-life-mosaic__item--wide {
  grid-column: span 2;
}
.pdd-life-mosaic__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}
.pdd-life-mosaic__item:hover img {
  transform: scale(1.05);
}
.pdd-life-mosaic__caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.85rem 1rem;
  background: linear-gradient(180deg, transparent 0%, rgba(15, 20, 30, 0.72) 100%);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
}

/* Events */
.pdd-news {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 0.85rem;
  align-items: start;
}
.pdd-news__featured {
  display: grid;
  grid-template-rows: auto 1fr;
  border-radius: 10px;
  overflow: hidden;
  background: var(--pdd-navy);
  color: #fff;
  min-height: 100%;
}
.pdd-news__featured-media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: rgba(255,255,255,0.08);
  position: relative;
}
.pdd-news__featured-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pdd-news__featured-media.program-event-slider img,
.pdd-news__thumb.program-event-slider img {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.6s ease;
}
.pdd-news__featured-media.program-event-slider img.is-active,
.pdd-news__thumb.program-event-slider img.is-active {
  opacity: 1;
  z-index: 1;
}
.pdd-news__featured-media.is-zoomable,
.pdd-news__thumb.is-zoomable {
  cursor: zoom-in;
}
.pdd-news__featured-media .program-event-slider__nav,
.pdd-news__thumb .program-event-slider__nav {
  position: absolute;
  top: 50%;
  z-index: 4;
  width: 2rem;
  height: 2rem;
  border: 0;
  border-radius: 50%;
  background: rgba(15, 28, 52, 0.72);
  color: #fff;
  display: grid;
  place-items: center;
  transform: translateY(-50%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  cursor: pointer;
}
.pdd-news__featured-media.has-nav:hover .program-event-slider__nav,
.pdd-news__featured-media.has-nav:focus-within .program-event-slider__nav {
  opacity: 1;
  pointer-events: auto;
}
.pdd-news__thumb .program-event-slider__nav {
  display: none;
}
.pdd-news__featured-media .program-event-slider__nav--prev {
  left: 0.55rem;
}
.pdd-news__featured-media .program-event-slider__nav--next {
  right: 0.55rem;
}
.program-event-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1090;
  background: rgba(8, 14, 28, 0.92);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}
.program-event-lightbox.is-open {
  display: flex;
}
.program-event-lightbox img {
  max-width: min(1100px, 100%);
  max-height: 88vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
}
.program-event-lightbox__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 1.25rem;
  cursor: pointer;
}
.program-event-lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--brand-primary, #173058);
  font-size: 1.35rem;
  cursor: pointer;
}
.program-event-lightbox__nav--prev { left: 1rem; }
.program-event-lightbox__nav--next { right: 1rem; }
.program-event-lightbox__nav[hidden] { display: none; }
.pdd-news__featured-body { padding: 1.15rem 1.25rem 1.3rem; }
.pdd-news__featured strong { display: block; font-size: 1.05rem; line-height: 1.35; margin-bottom: 0.45rem; }
.pdd-news__date { display: block; font-size: 0.76rem; color: rgba(255,255,255,0.7); margin-bottom: 0.5rem; }
.pdd-news__featured p { margin: 0 0 0.55rem; font-size: 0.88rem; line-height: 1.55; color: rgba(255,255,255,0.85); }
.pdd-news__meta {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.75);
}
.pdd-news__list {
  display: grid;
  gap: 0.5rem;
  max-height: 34rem;
  overflow-y: auto;
  padding-right: 0.15rem;
}
.pdd-news__item {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 0.7rem;
  align-items: center;
  padding: 0.55rem;
  border-radius: 8px;
  background: #fff;
  border: 1px solid var(--border);
}
.pdd-news__thumb {
  width: 72px;
  height: 56px;
  border-radius: 6px;
  overflow: hidden;
  background: #eef2f8;
  flex-shrink: 0;
  position: relative;
}
.pdd-news__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pdd-news__thumb--empty {
  display: grid;
  place-items: center;
  color: var(--brand-accent);
  font-size: 1.1rem;
}
.pdd-news__item-body { min-width: 0; padding-right: 0.35rem; }
.pdd-news__item strong { display: block; font-size: 0.86rem; color: var(--brand-primary); margin-bottom: 0.2rem; line-height: 1.35; }
.pdd-news__item span { display: inline-flex; align-items: center; gap: 0.25rem; font-size: 0.76rem; color: var(--brand-accent); font-weight: 600; margin-right: 0.55rem; }
.pdd-news__loc { color: var(--text-muted) !important; font-weight: 500 !important; }

/* Media */
.pdd-media-feature {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: #fff;
  text-decoration: none;
  color: inherit;
  margin-bottom: 0.85rem;
}
.pdd-media-feature__visual { position: relative; min-height: 200px; }
.pdd-media-feature__visual img { width: 100%; height: 100%; object-fit: cover; }
.pdd-media-feature__badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.2rem 0.55rem;
  border-radius: 4px;
  background: var(--brand-accent);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
}
.pdd-media-feature__body { padding: 1.15rem 1.25rem; display: flex; flex-direction: column; justify-content: center; }
.pdd-media-feature__tag { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; color: var(--brand-accent); margin-bottom: 0.35rem; }
.pdd-media-feature__body h3 { margin: 0 0 0.35rem; font-size: 1rem; color: var(--brand-primary); line-height: 1.35; }
.pdd-media-feature__meta { font-size: 0.78rem; color: var(--text-muted); margin-bottom: 0.35rem; }
.pdd-media-feature__body p { margin: 0 0 0.5rem; font-size: 0.86rem; line-height: 1.55; }
.pdd-media-feature__link { font-size: 0.82rem; font-weight: 700; color: var(--brand-primary); }

.pdd-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.5rem;
  margin-bottom: 0.85rem;
}
.pdd-gallery img { width: 100%; aspect-ratio: 16/10; object-fit: cover; border-radius: 8px; display: block; }

.pdd-quote {
  padding: 1rem 1.1rem;
  border-radius: 8px;
  background: #fff;
  border: 1px solid var(--border);
  height: 100%;
}
.pdd-quote p { margin: 0 0 0.45rem; font-style: italic; font-size: 0.88rem; line-height: 1.6; }
.pdd-quote footer { font-size: 0.8rem; font-weight: 700; color: var(--brand-primary); }

/* Related */
.pdd-related-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}
.pdd-program-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 1.25rem 1.15rem;
  border-radius: 12px;
  background: #fff;
  border: 1px solid var(--border);
  border-top: 3px solid var(--brand-accent);
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.pdd-program-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(170, 34, 46, 0.12);
}
.pdd-program-card__icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 0.75rem;
  border-radius: 10px;
  background: rgba(170, 34, 46, 0.1);
  color: var(--brand-accent);
  font-size: 1.1rem;
}
.pdd-program-card h3 {
  margin: 0 0 0.4rem;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--brand-primary);
}
.pdd-program-card p {
  margin: 0 0 0.75rem;
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.pdd-program-card__cta {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--brand-accent);
}
.pdd-program-card:hover .pdd-program-card__cta i {
  transform: translateX(3px);
}
.pdd-program-card__cta i {
  transition: transform 0.2s ease;
}

/* CTA */
.pdd-cta-band {
  padding: 3rem 0;
  background: linear-gradient(125deg, var(--pdd-navy) 0%, #1a3560 100%);
}
.pdd-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  color: #fff;
}
.pdd-cta h2 { margin: 0 0 0.3rem; font-size: clamp(1.25rem, 2vw + 0.5rem, 1.6rem); }
.pdd-cta p { margin: 0; color: rgba(255,255,255,0.85); font-size: 0.9rem; }
.pdd-cta__btns { display: flex; flex-wrap: wrap; gap: 0.55rem; }

/* Responsive */
@media (max-width: 991.98px) {
  .pdd-hero {
    aspect-ratio: 16 / 9;
    min-height: 260px;
    flex-direction: column;
    justify-content: flex-end;
    align-items: stretch;
  }
  .pdd-hero__title {
    font-size: clamp(1.15rem, 5vw, 1.55rem);
    white-space: normal;
  }
  .pdd-hero__inner {
    padding: 1.25rem 0 2.35rem;
  }
  .pdd-hero__inner > * {
    opacity: 1;
    transform: none;
    animation: none;
  }
  .pdd-nav {
    top: var(--site-nav-height, 68px);
  }
  .pdd-why__grid { grid-template-columns: 1fr; }
  .pdd-careers-grid {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 0.65rem;
    padding-bottom: 0.25rem;
    scrollbar-width: thin;
  }
  .pdd-career-card { flex: 0 0 min(190px, 44vw); }
  .pdd-news { grid-template-columns: 1fr; }
  .pdd-media-feature { grid-template-columns: 1fr; }
  .pdd-facts-card { position: static; }
  .pdd-section { padding: 2.5rem 0; }
  .pdd-curriculum {
    grid-template-columns: minmax(0, 1fr);
    min-width: 0;
    max-width: 100%;
  }
  .pdd-related-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .pdd-life-intro { grid-template-columns: 1fr; }
  .pdd-life-intro__copy { max-width: none; }
  .pdd-life-mosaic {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 150px;
  }
  .pdd-life-mosaic__item--hero { grid-column: span 2; }
  .pdd-curriculum__tabs {
    flex-direction: row;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    max-height: none;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    gap: 0.45rem;
    padding: 0.55rem 1.1rem 0.55rem 0.55rem;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x proximity;
    scroll-padding-inline: 0.55rem;
    scrollbar-width: thin;
  }
  .pdd-curriculum__tab {
    flex: 0 0 auto;
    width: auto !important;
    min-width: 0;
    max-width: calc(100% - 3.35rem);
    white-space: nowrap;
    scroll-snap-align: start;
  }
  .pdd-curriculum__tab-label {
    white-space: nowrap;
  }
  .pdd-curriculum__content {
    min-width: 0;
    max-width: 100%;
    overflow-x: hidden;
  }
  .pdd-curriculum__subjects { grid-template-columns: 1fr; }
}

@media (max-width: 575.98px) {
  .pdd-hero {
    aspect-ratio: 4 / 1;
    min-height: 140px;
  }
  .pdd-hero__title {
    font-size: clamp(1.1rem, 5.2vw, 1.4rem);
    line-height: 1.22;
  }
  .pdd-hero__inner {
    padding: 1.1rem 8px 2.15rem;
  }
  .pdd-features { grid-template-columns: 1fr; }
  .pdd-feature { min-height: 160px; }
  .pdd-feature__icon {
    width: 64px;
    height: 64px;
    flex: 0 0 64px;
    font-size: 1.75rem;
  }
  .pdd-related-grid { grid-template-columns: 1fr; }
  .pdd-mou-list,
  .pdd-mou-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.7rem;
  }
  .pdd-mou-card {
    min-height: 128px;
    padding: 0.7rem 0.5rem 0.8rem;
  }
  .pdd-mou-card__media {
    height: 68px;
  }
  .pdd-mou-card__image,
  .pdd-mou-card .pdd-placement-image {
    max-width: 110px;
    max-height: 56px;
  }
  .pdd-life-intro { grid-template-columns: 1fr; }
  .pdd-life-intro__copy { max-width: none; }
  .pdd-life-mosaic {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 130px;
  }
  .pdd-life-mosaic__item--hero {
    grid-column: span 2;
    grid-row: span 2;
  }
  .pdd-life-mosaic__item--wide { grid-column: span 2; }
  .pdd-nav__list a { font-size: 0.8rem; padding: 0.45rem 0.75rem; }
}

/* Scroll + entrance animations */
.pdd-hero__inner > * {
  opacity: 0;
  transform: translateY(22px);
  animation: pddFadeUp 0.7s ease forwards;
}
.pdd-hero__inner > .pdd-hero__grid { animation-delay: 0.12s; }

.pdd-nav {
  opacity: 0;
  transform: translateY(-8px);
  animation: pddFadeUp 0.55s ease 0.35s forwards;
}

.pdd-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.65s ease,
    transform 0.65s ease;
  will-change: opacity, transform;
}
.pdd-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.pdd-reveal--left {
  transform: translateX(-28px);
}
.pdd-reveal--left.is-visible {
  transform: translateX(0);
}
.pdd-reveal--right {
  transform: translateX(28px);
}
.pdd-reveal--right.is-visible {
  transform: translateX(0);
}
.pdd-reveal--scale {
  transform: scale(0.96);
}
.pdd-reveal--scale.is-visible {
  transform: scale(1);
}
.pdd-reveal--fade {
  transform: none;
}
.pdd-reveal--fade.is-visible {
  transform: none;
}

.pdd-reveal-stagger > .pdd-reveal {
  transition-duration: 0.55s;
}
.pdd-reveal-stagger > .pdd-reveal:nth-child(1) { transition-delay: 0.02s; }
.pdd-reveal-stagger > .pdd-reveal:nth-child(2) { transition-delay: 0.08s; }
.pdd-reveal-stagger > .pdd-reveal:nth-child(3) { transition-delay: 0.14s; }
.pdd-reveal-stagger > .pdd-reveal:nth-child(4) { transition-delay: 0.2s; }
.pdd-reveal-stagger > .pdd-reveal:nth-child(5) { transition-delay: 0.26s; }
.pdd-reveal-stagger > .pdd-reveal:nth-child(6) { transition-delay: 0.32s; }
.pdd-reveal-stagger > .pdd-reveal:nth-child(7) { transition-delay: 0.38s; }
.pdd-reveal-stagger > .pdd-reveal:nth-child(8) { transition-delay: 0.44s; }
.pdd-reveal-stagger > .pdd-reveal:nth-child(9) { transition-delay: 0.5s; }
.pdd-reveal-stagger > .pdd-reveal:nth-child(10) { transition-delay: 0.56s; }
.pdd-reveal-stagger > .pdd-reveal:nth-child(n + 11) { transition-delay: 0.6s; }

.pdd-career-card.pdd-reveal.is-visible:hover,
.pdd-faculty-card.pdd-reveal.is-visible:hover,
.pdd-why__card.pdd-reveal.is-visible:hover {
  transition: opacity 0.65s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

@keyframes pddFadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 991.98px) {
  h1.pdd-hero__title,
  #pddName.pdd-hero__title {
    display: block !important;
    white-space: normal !important;
    overflow: visible !important;
    text-overflow: clip !important;
    max-width: 100% !important;
    width: 100% !important;
    min-width: 0 !important;
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  .pdd-section p,
  .pdd-block p,
  #pdd-overview p,
  .pdd-intro {
    text-align: left;
    word-spacing: normal;
    overflow-wrap: anywhere;
    max-width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .pdd-hero__inner > *,
  .pdd-nav {
    opacity: 1;
    transform: none;
    animation: none;
  }
  .pdd-reveal,
  .pdd-reveal--left,
  .pdd-reveal--right,
  .pdd-reveal--scale {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
