/**
 * Program Details Block Styles
 * Intro text + two-column cards for curriculum/outcomes
 */

.program-details-block {
  margin-bottom: 6rem;
  padding: 0 1.5rem;
  background-color: transparent;
}

/* ── Intro Section ── */

.program-details-block .pd-intro {
  max-width: 1200px;
  margin: 0 auto 3rem auto;
}

.program-details-block .pd-section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.program-details-block .pd-section-description {
  color: #3a3a3a;
  font-size: 1.125rem;
  line-height: 1.7;
  max-width: 900px;
}

.program-details-block .pd-section-description p {
  margin-bottom: 1.25rem;
}

.program-details-block .pd-section-description p:last-child {
  margin-bottom: 0;
}

/* ── Two-Column Cards ── */

.program-details-block .pd-columns {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .program-details-block .pd-columns {
    grid-template-columns: 1fr 1fr;
  }
}

.program-details-block .pd-card {
  background: #ffffff;
  border-radius: 1rem;
  padding: 2rem;
  border-left: 4px solid #ff6a13;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05),
    0 2px 4px -1px rgba(0, 0, 0, 0.02);
  transition: box-shadow 0.3s ease;
}

.program-details-block .pd-card:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.08),
    0 4px 6px -2px rgba(0, 0, 0, 0.03);
}

.program-details-block .pd-card-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1.25rem;
  line-height: 1.3;
}

/* ── Card Content (WYSIWYG) ── */

.program-details-block .pd-card-content {
  color: #3a3a3a;
  font-size: 1.05rem;
  line-height: 1.7;
}

.program-details-block .pd-card-content p {
  margin-bottom: 1.25rem;
}

.program-details-block .pd-card-content p:last-child {
  margin-bottom: 0;
}

/* Lists with orange bullets */
.program-details-block .pd-card-content ul,
.program-details-block .pd-card-content ol {
  list-style-type: none;
  padding-left: 0;
  margin: 0 0 1.25rem 0;
}

.program-details-block .pd-card-content ul li,
.program-details-block .pd-card-content ol li {
  margin-bottom: 0.75rem;
  position: relative;
  padding-left: 1.75rem;
}

.program-details-block .pd-card-content ul li::before {
  content: "";
  position: absolute;
  left: 0.25rem;
  top: 0.55em;
  width: 0.45rem;
  height: 0.45rem;
  background: #ff6a13;
  border-radius: 50%;
}

.program-details-block .pd-card-content ol {
  counter-reset: pd-counter;
}

.program-details-block .pd-card-content ol li {
  counter-increment: pd-counter;
}

.program-details-block .pd-card-content ol li::before {
  content: counter(pd-counter) ".";
  color: #ff6a13;
  font-weight: 700;
  position: absolute;
  left: 0;
  top: 0;
}

.program-details-block .pd-card-content strong {
  font-weight: 700;
  color: #0f172a;
}

/* ── Optional Accent Image ── */

.program-details-block .pd-accent-image {
  max-width: 1200px;
  margin: 3rem auto 0 auto;
  text-align: center;
}

.program-details-block .pd-accent-image img {
  max-width: 200px;
  height: auto;
  opacity: 0.6;
}

/* ── Section Description Lists (for intro area) ── */

.program-details-block .pd-section-description ul,
.program-details-block .pd-section-description ol {
  list-style-type: none;
  padding-left: 0;
  margin: 0 0 1.25rem 0;
}

.program-details-block .pd-section-description ul li {
  margin-bottom: 0.75rem;
  position: relative;
  padding-left: 1.75rem;
}

.program-details-block .pd-section-description ul li::before {
  content: "";
  position: absolute;
  left: 0.25rem;
  top: 0.55em;
  width: 0.45rem;
  height: 0.45rem;
  background: #ff6a13;
  border-radius: 50%;
}

.program-details-block .pd-section-description strong {
  font-weight: 700;
  color: #0f172a;
}
