/* =========================
   Scroll Offset For Anchor Sections
========================= */

#program-overview,
#program-career-outlook,
#program-curriculum-courses,
#program-admissions-transfer,
#program-tuition-financial-aid,
#program-faq,
#rfi {
  scroll-margin-top: var(--program-anchor-offset, 170px);
}

.single-program-page h2 {
  font-size: 40px !important;
  line-height: 1.15 !important;
  margin: 0 0 15px;
}
 
.program-eyebrow {
  display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 35px;
    margin-bottom: 32px;
    padding: 3px 14px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    border: 1px solid var(--theme-palette-color-1);
}

/* Default (white background / maroon text) */
.program-eyebrow--primary {
  background-color: var(--theme-palette-color-5);
  border-color: var(--theme-palette-color-5);
  color: var(--theme-palette-color-1);
}
/* Outline (transparent background) */
.program-eyebrow--outline {
  background-color: transparent;
  border-color: var(--theme-palette-color-1);
  color: var(--theme-palette-color-1);
}

/* Inverted (for dark backgrounds like career section) */
.program-eyebrow--light {
  background-color: var(--theme-palette-color-5);
  border-color: var(--theme-palette-color-5);
  color: var(--theme-palette-color-1);
}

/* =========================
   Description Text
========================= */

.program-text {
  font-size: 16px;
  line-height: 1.5 !important;
}
/* =========================
   Hero Section
========================= */

.program-hero {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--theme-palette-color-5);
  overflow: hidden;
   padding: 100px 0 80px !important;
}

/* Overlay for readability */
/* .program-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.65) 0%,
    rgba(0, 0, 0, 0.45) 40%,
    rgba(0, 0, 0, 0.2) 100%
  );
  z-index: 1;
} */

/* Container */
.program-hero__container {
  position: relative;
  z-index: 2;
}

/* Layout */
.program-hero__grid {
  display: grid;
  grid-template-columns: 1.2fr 420px;
  gap: 48px;
  align-items: center;
  /* min-height: 720px; */
 
}

/* Content */
.program-hero__content {
  max-width: 760px;
	    border-radius: 4px;
    background: rgba(0, 0, 0, 0.7);
    padding: 25px;
}

/* Tags */
.program-hero__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}

/* Title */
.program-hero__title {
  margin: 0 0 20px !important;
color:var(--theme-palette-color-5) !important;
  font-size: 60px !important;
  line-height: 108% !important;
    font-weight: 800 !important;
}

/* Subtitle */
h2.program-hero__subtitle {
  margin: 0 0 10px !important;
color:var(--theme-palette-color-5) !important;
  font-size: 36px !important;
  font-weight: 800 !important;
  line-height: 1.3 !important;
}

/* Description */
.program-hero__description p {
  margin: 0;
color:var(--theme-palette-color-5) !important;
  font-size: 16px !important;
  font-weight: 500 !important;
  line-height: 1.4 !important;
	margin-bottom:14px;

}
.program-hero__description p .f-2x, 
.program-hero__description p.f-2x{
 font-size: 18px !important;
}
/* Form column */
.header-rfi-col {
  position: relative;
  z-index: 2;
}


/* =========================
   Stats Section
========================= */

.program-stats {
  background-color: var(--theme-palette-color-1);
}

.program-stats__inner {
  padding: 0;
}

.program-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
}

.program-stats__item {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 168px;
  padding: 32px 24px;
  text-align: center;
}

.program-stats__item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 1px;
  height: 74px;
  background-color: var(--theme-palette-color-5);
  transform: translateY(-50%);
}

.program-stats__value {
  margin-bottom: 10px;
  color: var(--theme-palette-color-5);
  
  font-size: 30px !important;
  font-weight: 700;
  line-height: 1.1;

}

.program-stats__label {
  color: var(--theme-palette-color-5);
  
  font-size: 14px !important;
  font-weight: 600;
  line-height: 1.4;
}


/* =========================
   Program Overview
========================= */

.program-overview {
  padding: 88px 0;
  background-color: var(--theme-palette-color-5);
}

.program-overview__inner {
  display: flex;
  flex-direction: column;
  gap: 55px;
}

.program-overview .btn{
  padding: 12px 16px !important;
}
.program-overview .btn:hover{
  transform: translateY(-10px);
}

.program-overview__title {
  color: var(--theme-palette-color-2);
  
}

.program-overview__smallheading
{
color: var(--theme-palette-color-1);
font-size: 18px !important;
font-weight: 700;
line-height: 28px;
margin-bottom: 12px;
}

.program-overview__text {
  color: var(--theme-palette-color-3);

}

.program-overview__text > *:first-child {
  margin-top: 0;
}

.program-overview__text > *:last-child {
  margin-bottom: 0;
}

.program-overview__text p {
  margin: 0 0 20px;
}

.program-overview__middle {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  column-gap: 100px;
  align-items: start;
}

.program-overview__subheading {
margin-bottom: 10px;
  color: var(--theme-palette-color-1);
  font-size: 24px !important;
  font-weight: 800;
line-height: 32px;

}

.program-overview__skills{
  margin-top:37px;
}

.program-overview__skills-text {
  color: var(--theme-palette-color-3);

}

.program-overview__skills-text > *:first-child {
  margin-top: 0;
}

.program-overview__skills-text > *:last-child {
  margin-bottom: 0;
}

.program-overview__skills-text p {
  margin: 0 0 18px;
}

.program-overview__skills-text ul,
.program-overview__skills-text ol {
  margin: 16px 0 0 20px;
  padding: 0;
}

.program-overview__skills-text li {
  margin-bottom: 0px;
  font-weight: 600;
  margin-bottom: 8px;
}

.program-overview__cta {
  margin-top: 0px;
  display: flex !important;
}

.program-overview__cta .gform_wrapper {
  margin: 0;
}

.program-overview__highlights-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 32px 28px;
}

.program-overview__highlight-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.program-overview__highlight-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
}

.program-overview__highlight-icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.program-overview__highlight-title {
  margin: 0 0 12px;
  color: var(--theme-palette-color-2);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.35;
}

.program-overview__highlight-text {
  margin: 0;
  color: var(--theme-palette-color-3);

}

/* =========================
   Testimonial Section
========================= */

.program-testimonial {
  position: relative;
  overflow: hidden;
     padding: 95px 0 72px;
  background-color: var(--theme-palette-color-2);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* .program-testimonial__overlay {
  position: absolute;
  inset: 0;
  background: rgba(38, 58, 87, 0.28);
  z-index: 1;
} */

.program-testimonial .ct-container {
  position: relative;
  z-index: 2;
}

.program-testimonial__inner {
  display: flex;
  justify-content: center;
  align-items: center;
}

.program-testimonial__card {
  width: 100%;
  text-align: left;
  
}

.program-testimonial__quote-icon {
  display: flex;
  justify-content: left;
  margin-bottom: 22px;
}


.program-testimonial__quote {
  margin: 0 0 28px;
  padding: 0;
  border: 0;
}

.program-testimonial__quote p {
  margin: 0;
  color: var(--theme-palette-color-5);
    font-size: 23px;
    line-height: 1.4 !important;
    font-weight: 700;
    font-style: italic;

}

.program-testimonial__meta {
  display: flex;
  flex-direction: column;
  align-items: start;
  display: inline-block;
  background: var(--theme-palette-color-1);
  padding: 2px 7px;
}

.program-testimonial__name {
  margin: 0;
  color: var(--theme-palette-color-5);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.4;
}

.program-testimonial__inner::before{
  content:"";
  position: absolute;
     top: -50px;
    left: -55px;
    width: 65px;
    height: 65px;
  background: url('/wp-content/uploads/image-12.svg');
  background-repeat: no-repeat;
  background-size: contain;
}

.program-testimonial__position {
  margin: 0;
  color: var(--theme-palette-color-5);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
}


/* =========================
   Sticky Program Subnav
========================= */

.program-subnav {
  position: sticky;
  top: var(--program-sticky-offset, 80px);
  z-index: 40;
  background-color: var(--theme-palette-color-2);
  border-top: 1px solid var(--theme-palette-color-7);
  border-bottom: 1px solid var(--theme-palette-color-7);
  box-shadow: 0 12px 16px -4px rgba(16, 24, 40, 0.08), 0 4px 6px -2px rgba(16, 24, 40, 0.03);

}

.program-subnav .ct-container {
  position: relative;
}

.program-subnav__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: center;
  padding: 36px 0;
}

.program-subnav__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 8px 18px;
  border: 1px solid var(--theme-palette-color-1);
  border-radius: 999px;
  background-color: var(--theme-palette-color-5);
  color: var(--theme-palette-color-1);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.program-subnav__link:hover,
.program-subnav__link:focus {
  background-color: var(--theme-palette-color-1);
  color: var(--theme-palette-color-5);
}

.program-subnav__link.is-active {
  background-color: var(--theme-palette-color-1);
  color: var(--theme-palette-color-5);
}


/* =========================
   Career Outlook Section
========================= */

.program-career-outlook {
  padding: 88px 0 56px;
  background-color: var(--theme-palette-color-1);
  color: var(--theme-palette-color-5);
}

.program-career-outlook__inner {
  display: flex;
  flex-direction: column;
  gap: 44px;
}

.program-career-outlook__title {
  
  color: var(--theme-palette-color-5);
}


.program-career-outlook__description p {
  margin: 0;

}

.program-career-outlook__content {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(300px, 0.9fr);
  gap: 68px;
  align-items: start;
}

.program-career-outlook__jobs {
  border-top: 1px solid var(--theme-palette-color-7);
}

.program-career-outlook__job {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid var(--theme-palette-color-7);
}

.program-career-outlook__job-title {
  color: var(--theme-palette-color-5);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.35;
}

.program-career-outlook__job-salary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--theme-palette-color-5);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
  white-space: nowrap;
}

.program-career-outlook__salary-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border: 1px solid var(--theme-palette-color-5);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  flex-shrink: 0;
}

.program-career-outlook__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;

}
.program-career-outlook__actions .btn{
  color:var(--theme-palette-color-2) !important;
}

.program-career-outlook__right {
  display: flex;
  flex-direction: column;
  gap: 34px;
  padding-top: 0px;
}

.program-career-outlook__stat-block {
  max-width: 360px;
}

.program-career-outlook__stat-value {
  margin: 0 0 10px;
  color: var(--theme-palette-color-5);
  font-size: 36px;
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.program-career-outlook__stat-text,
.program-career-outlook__stat-text p,
.program-career-outlook__stat-text li {
  color: var(--theme-palette-color-5);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
}

.program-career-outlook__stat-text p {
  margin: 0 0 12px;
}

.program-career-outlook__stat-text p:last-child {
  margin-bottom: 0;
}

.program-career-outlook__stat-text ul,
.program-career-outlook__stat-text ol {
  margin: 12px 0 0 22px;
  padding: 0;
}


.program-career-outlook__note {
  margin-top: 8px;

}

.program-career-outlook__note p {
  margin: 0;
  color: var(--theme-palette-color-5);
  font-size: 12px;
  line-height: 1.6 !important;
}

/* =========================
   Career Top Employers
========================= */

.program-career-outlook__employers {
  padding:80px 0 ; 
  text-align: center;
  background: var(--theme-palette-color-4); 
}

.program-career-outlook__employers-title {
  margin: 0 0 32px;
  color: var(--theme-palette-color-2) !important;
  font-size: 30px !important;
  font-weight: 800;
  line-height: 1.3;
}

.program-career-outlook__employers-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 32px;
  align-items: center;
  justify-items: center;
}

.program-career-outlook__employer {
  width: 100%;
  max-width: 150px;
}

.program-career-outlook__employer-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 56px;
  text-decoration: none;
}

.program-career-outlook__employer img {
  display: block;
  max-width: 100%;
  max-height: 48px;
  width: auto;
  height: auto;
  object-fit: contain;
  opacity: 0.9;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

a.program-career-outlook__employer-link:hover img,
a.program-career-outlook__employer-link:focus img {
  opacity: 1;
  transform: translateY(-2px);
}


/* =========================
   Curriculum Section
========================= */

.program-curriculum {
  padding: 88px 0;
  background-color: var(--theme-palette-color-5);
}

.program-curriculum__inner {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.program-curriculum__intro {
  max-width: 1040px;
  margin-bottom: 8px;
}

.program-curriculum__title {
  margin: 0 0 20px;
  color: var(--theme-palette-color-2);
  line-height: 1.15;
}

.program-curriculum__description {
  max-width: 1020px;
  color: var(--theme-palette-color-3);
}

.program-curriculum__card {
 
  background-color: var(--theme-palette-color-5);
  overflow: hidden;
}

.program-curriculum__card-header {
  padding: 18px 0px;
  border-bottom: 1px solid var(--theme-palette-color-7);
}

.program-curriculum__card-title-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}

.program-curriculum__card-icon {
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
}

.program-curriculum__card-icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.program-curriculum__card-title {
  margin: 0;
  color: var(--theme-palette-color-2);
  font-size: 26px !important;
  font-weight: 800 !important;
  line-height: 1.3 !important;
}

.program-curriculum__card-body {
  padding: 18px 0px 10px;
}

.program-curriculum__card-body--split {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 32px;
}

.program-curriculum__overview-text {
  color: var(--theme-palette-color-3);
}

.program-curriculum__overview-text > *:first-child,
.program-curriculum__courses-intro > *:first-child,
.program-curriculum__course-panel > *:first-child {
  margin-top: 0;
}

.program-curriculum__overview-text > *:last-child,
.program-curriculum__courses-intro > *:last-child,
.program-curriculum__course-panel > *:last-child {
  margin-bottom: 0;
}

.program-curriculum__breakdown-title {
  margin: 0 0 14px;
  color: var(--theme-palette-color-2);
  font-size: 16px;
  font-weight: 800;
  line-height: 1.3;
}

.program-curriculum__breakdown-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.program-curriculum__breakdown-row {
 display: flex;
  align-items: end;
  gap: 12px;
}

.program-curriculum__breakdown-name {
  position: relative;
   white-space: nowrap;
  display: inline-flex;
  align-items: center;
  color: var(--theme-palette-color-3);
  font-size: 14px;
  line-height: 1.4;
}

.program-curriculum__breakdown-line {
  flex: 1;
  height: 1px;
  border-bottom: 1px dotted var(--theme-palette-color-7);
}

.program-curriculum__breakdown-credit {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 10px;
  border: 1px solid var(--theme-palette-color-7);
  border-radius: 999px;
  color: var(--theme-palette-color-3);
  font-size: 12px;
  line-height: 1;
  white-space: nowrap;
}

.program-curriculum__courses-intro {
  margin-bottom: 18px;
  color: var(--theme-palette-color-3);
}

.program-curriculum__courses-list {
  display: flex;
  flex-direction: column;
  gap: 0px;
	border-top:1px solid var(--theme-palette-color-1);
}

.program-curriculum__course {
  border-bottom: 1px solid var(--theme-palette-color-1);
 
  background-color: var(--theme-palette-color-5);
  overflow: hidden;
}

.program-curriculum__course-toggle {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  width: 100%;
  padding: 20px 16px;
  border: 0;
  background: transparent;
  color: var(--theme-palette-color-2);
  text-align: left;
  cursor: pointer;
}

.program-curriculum__course-main {
  min-width: 0;
      display: flex;
    flex-direction: row;
    align-items: center;
    gap: 15px;
}

.program-curriculum__course-name {
  display: block;
  color: var(--theme-palette-color-2);
  font-size: 16px;
  font-weight: 800;
  line-height: 1.35;
}

.program-curriculum__course-side {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.program-curriculum__course-credit {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 4px 8px;
  border: 1px solid var(--theme-palette-color-7);
  border-radius: 999px;
  color: var(--theme-palette-color-3);
  font-size: 11px;
  line-height: 1;
  white-space: nowrap;
}

.program-curriculum__course-link-text {
  color: var(--theme-palette-color-1);
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

.program-curriculum__course-icon {
  display: inline-flex;
  width: 18px;
  height: 18px;
  color: var(--theme-palette-color-1);
  transition: transform 0.25s ease;
}

.program-curriculum__course-icon svg {
  display: block;
  width: 100%;
  height: 100%;
}


.program-curriculum__course-panel {
   padding: 8px 16px 16px;
  color: var(--theme-palette-color-3);
}

.program-curriculum__course-icon {
  position: relative;
  width: 14px;
  height: 14px;
  flex: 0 0 14px;
}

/* horizontal line */
.program-curriculum__course-icon::before,
.program-curriculum__course-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background-color: var(--theme-palette-color-2);
  transform: translate(-50%, -50%);
  transition: opacity 0.2s ease;
}

/* minus line */
.program-curriculum__course-icon::before {
  width: 12px;
  height: 2px;
}

/* vertical line (for +) */
.program-curriculum__course-icon::after {
  width: 2px;
  height: 12px;
}

/* when open → show minus only */
.program-curriculum__course.is-open .program-curriculum__course-icon::after {
  opacity: 0;
}

/* =========================
   Accreditation Section
========================= */

.program-accreditation {
  background-color: var(--theme-palette-color-8);
}

/* This creates vertical spacing */
.program-accreditation__inner {
  padding: 36px 0;
}

/* Content stays boxed */
.program-accreditation__box {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 200px;
  gap: 28px;
  align-items: center;
}
.program-accreditation__media {
  display: flex;
  align-items: center;
  justify-content: center;
}

.program-accreditation__media img {
  display: block;
  width: 150px;
  height: auto;
  object-fit: contain;
}

.program-accreditation__content {
  min-width: 0;
}

h2.program-accreditation__title {
font-size: 24px !important;
  color: var(--theme-palette-color-1);
  margin-bottom: 10px !important;

}

.program-accreditation__text {
  color: var(--theme-palette-color-2);
  font-size: 14px !important  ;
  font-weight: 600 !important;

}

.program-accreditation__text  small{
  line-height: 17px !important;
  font-weight: 400 !important;
}

.program-accreditation__text p {
  margin: 0 0 12px;
	line-height:22px !important;

}
.program-accreditation__text p:last-child {
  margin-bottom: 0;
}
/* =========================
   Admissions & Transfer
========================= */

.program-admissions {
  padding: 88px 0;
  background-color: var(--theme-palette-color-5);
}

.program-admissions__inner {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.program-admissions__title {
  margin: 0 0 20px;
  color: var(--theme-palette-color-2);
  line-height: 1.15;
}

.program-admissions__description {
  color: var(--theme-palette-color-3);
 
}

.program-admissions__criteria-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 35px;
    column-gap: 60px;
}

.program-admissions__criteria-card {
  /* min-height: 150px; */
  background-color: var(--theme-palette-color-5);
}

.program-admissions__criteria-head {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  flex-direction: column;
}

.program-admissions__criteria-icon {
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  
}

.program-admissions__criteria-icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.program-admissions__criteria-title {
  margin: 0;
  color: var(--theme-palette-color-2);
  font-size: 20px !important;
  font-weight: 800 !important;
  line-height: 1.3 !important;
  text-transform: uppercase !important;
}

.program-admissions__criteria-text {
  color: var(--theme-palette-color-3);
}

.program-admissions__criteria-text p {
  margin: 0;
}

/* .program-admissions__accordion {
  background-color: var(--theme-palette-color-5);
  overflow: hidden;
  margin-top:25px;
}

.program-admissions__accordion-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 16px 0px;
  border: 0;
  background: transparent;
  color: var(--theme-palette-color-2);
  text-align: left;
  cursor: pointer;
}

.program-admissions__accordion-title-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
} */

/* .program-admissions__accordion-icon {
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
}

.program-admissions__accordion-icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
} */

/* .program-admissions__accordion-title {
  color: var(--theme-palette-color-2);
  font-size: 26px;
  font-weight: 800;
  line-height: 1.3;
}

.program-admissions__accordion-symbol {
  position: relative;
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
} */

/* .program-admissions__accordion-symbol::before,
.program-admissions__accordion-symbol::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background-color: var(--theme-palette-color-2);
  transform: translate(-50%, -50%);
  transition: opacity 0.2s ease;
}

.program-admissions__accordion-symbol::before {
  width: 14px;
  height: 2px;
}

.program-admissions__accordion-symbol::after {
  width: 2px;
  height: 14px;
}

.program-admissions__accordion.is-open .program-admissions__accordion-symbol::after {
  opacity: 0;
} */

/* .program-admissions__accordion-panel {
  padding: 16px 5px  3px 5px;
  border-top: 1px solid var(--theme-palette-color-7);
  color: var(--theme-palette-color-3);
}

.program-admissions__accordion-panel > *:first-child {
  margin-top: 0;
}

.program-admissions__accordion-panel > *:last-child {
  margin-bottom: 0;
} */

.program-admissions__program_specific_wrap{
  margin-top:25px;
  
}
.program-admissions__program_specific-title-wrap{
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;  
  flex-direction: row;
  padding: 18px 0px;
    border-bottom: 1px solid var(--theme-palette-color-7);
}

.program-admissions__program_specific-icon {
    width: 30px;
    height: 30px;
    flex: 0 0 30px;
}

.program-admissions__program_specific-icon img {
  display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.program-admissions__program_specific-title{
    color: var(--theme-palette-color-2);
    font-size: 26px !important;
    font-weight: 800 !important;
    line-height: 1.3 !important;
}

.program-admissions_credit_note{
  margin-top:50px;
}

.program-admissions_credit_note-title{
  font-size:24px !important;
  color: var(--theme-palette-color-1);
  font-weight: 800;
line-height: 32px; /* 133.333% */
text-transform: uppercase;
padding-bottom: 10px;
border-bottom: 1px solid var(--theme-palette-color-7);
margin-bottom: 15px;

}
.program-admissions_credit_note-text{
  font-style: italic;
  
}

.program-admissions_credit_note-text ul li{
	margin-bottom:8px;
}

.program-admissions_nc_residents_note{
  border-radius: 4px;
  background: var(--theme-palette-color-8);
  padding: 14px !important;
 margin-top:15px;
}

.program-admissions_nc_residents_note-title
{
 color: var(--theme-palette-color-2);
 font-size: 16px !important;
 font-weight: 700 !important;
 line-height: 24px; 
 margin-bottom: 8px !important;
}

.program-admissions_nc_residents_note-text{
    font-style: italic;
     font-size: 16px !important;
     color: var(--theme-palette-color-2);
     font-weight: 400 !important;
}
/* =========================
   Faculty Section
========================= */

.program-faculty {
  padding: 88px 0;
  position: relative;
  background-color: var(--theme-palette-color-1);
overflow: hidden;
  isolation: isolate;

}

.program-faculty .ct-container,
.program-faculty__inner {
  position: relative;
  z-index: 1;
}

.program-faculty__inner {
  display: flex;
  flex-direction: column;
  gap: 36px;
	max-width: 1600px !important;
	margin:0 auto;
}

.program-faculty__title {
  margin: 0;
  color: var(--theme-palette-color-5);
  text-align: center;
  line-height: 1.15;
}

.program-faculty__slider {
width: 100%;
  overflow: visible;
  padding-bottom: 42px;
}

.program-faculty__slider.swiper {
  overflow: visible;
}

.program-faculty__slider .swiper-wrapper {
  align-items: stretch;
}

.program-faculty__slider .swiper-slide {
  height: auto;
  min-width: 0;
  box-sizing: border-box;
  transition: opacity 0.25s ease, transform 0.25s ease;
}


.program-faculty__card {
  width: 100%;
  height: 100%;
  border: 1px solid var(--theme-palette-color-7);
  border-radius: 3px;
  background-color: var(--theme-palette-color-5);
  overflow: hidden;
  box-sizing: border-box;
}

.program-faculty__card-inner {
  display: flex;
  gap: 18px;
  height: 100%;
  padding: 20px;
  min-width: 0;
  box-sizing: border-box;
}

.program-faculty__image {
  display: block;
  width: 170px;
  height: 170px;
  border-radius: 999px;
  object-fit: cover;
}

.program-faculty__content {
  display: flex;
  flex-direction: column;
  min-width: 0;
  width: 100%;
}

.program-faculty__name {
  font-family: var(--font-heading) !important;
  margin: 0 0 8px;
  color: var(--theme-palette-color-1);
  font-size: 20px;
  font-weight: 800;
  line-height: 1.25;
}

.program-faculty__credentials,
.program-faculty__position {
  color: var(--theme-palette-color-3);
}

.program-faculty__credentials {
  margin-bottom: 6px;
  font-size: 14px !important;
  font-weight: 600 !important;
}

.program-faculty__position {
  margin-bottom: 10px;
  font-size: 14px !important;
}

.program-faculty__links {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 0px;
}

.program-faculty__icon-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  text-decoration: none;
}

.program-faculty__icon-link img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.program-faculty__excerpt {
  color: var(--theme-palette-color-3);
}

.program-faculty__excerpt p {
  margin: 0;
  font-size: 12px !important;
}

.program-faculty__footer {
  margin-top: auto;
  padding-top: 18px;
}

.program-faculty__bio-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--theme-palette-color-1);
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
	text-transform:uppercase;
}

.program-faculty__bio-link:hover,
.program-faculty__bio-link:focus {
  color: var(--theme-palette-color-6);
}

.program-faculty__bio-link-icon {
  font-size: 14px;
  line-height: 1;
}

.program-faculty__pagination {
  position: static;
  margin-top: 28px;
  text-align: center;
}

.program-faculty__pagination .swiper-pagination-bullet {
  width: 30px;
  height: 3px;
  border-radius: 999px;
  background-color: var(--theme-palette-color-5);
  opacity:0.9;
  margin: 0 5px !important;
}

.program-faculty__slider .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--theme-palette-color-2);
    width: 40px;
}

/* =========================
   Faculty Static / Slider Layout
========================= */

.program-faculty__cards {
  width: 100%;
}

.program-faculty__cards.program-faculty__static{
  display: grid;
  gap: 22px;
}

.program-faculty__cards.program-faculty__static[data-faculty-count="1"] {

  grid-template-columns: minmax(0, 520px);
  justify-content: center;
	    max-width: 1320px;
    margin: 0 auto;
}

.program-faculty__cards.program-faculty__static[data-faculty-count="2"] {

  grid-template-columns: repeat(2, minmax(0, 1fr));
	    max-width: 1320px;
    margin: 0 auto;
}

.program-faculty__static-item {
  min-width: 0;
}

.program-faculty__slick {
  width: 100%;
}

.program-faculty__slick .slick-track {
  display: flex;
  align-items: stretch;
}

.program-faculty__slick .slick-slide {
  height: auto;
  padding: 0 12px;
}

.program-faculty__slick .slick-slide > div,
.program-faculty__slide,
.program-faculty__card {
  height: 100%;
}

.program-faculty__slick .slick-dots {
  display: flex !important;
  justify-content: center;
  gap: 10px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.program-faculty__slick .slick-dots button {
  width: 20px;
  height: 3px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: var(--theme-palette-color-5);
  opacity: 1;
  font-size: 0;
  cursor: pointer;
}

.program-faculty__slick .slick-dots .slick-active button {
  background: var(--theme-palette-color-2);
  width: 40px;
}

/* =========================
   Tuition & Financial Aid
========================= */

.program-tuition {
  padding: 88px 0;
  background-color: var(--theme-palette-color-8);
}

.program-tuition__inner {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.program-tuition__title {
  margin: 0;
  color: var(--theme-palette-color-2);
  line-height: 1.15;
}

.program-tuition__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
}

.program-tuition__card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  height: 100%;
  padding: 28px 28px 24px;
  border: 1px solid var(--theme-palette-color-7);
  border-radius: 2px;
  background-color: var(--theme-palette-color-5);
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
}

.program-tuition__card-head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}

.program-tuition__card-icon {
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
}

.program-tuition__card ul{
  margin-bottom: 15px !important;
    padding-left: 25px;
}
.program-tuition__card-icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.program-tuition__card-title {
  margin: 0;
  color: var(--theme-palette-color-2);
  font-size: 24px !important;
  font-weight: 800 !important;
  line-height: 1.3 !important;
  text-transform: uppercase !important;
}

.program-tuition__card-text {
  color: var(--theme-palette-color-3);
  margin-bottom: 24px !important;
}

.program-tuition__card-text > *:first-child {
  margin-top: 0;
}

.program-tuition__card-text > *:last-child {
  margin-bottom: 0;
}

.program-tuition__card-footer {
    margin-top: auto;
    display: flex;
    justify-content: center;
    text-align: center;
}
.program-tuition__button {
  width: 100% !important;
}

.program-tuition__footnote {
  margin-top: 20px;
  color: var(--theme-palette-color-3);
  font-size: 14px !important;
  line-height: 1.5 !important;
}

.program-tuition__footnote a {
  color: var(--theme-palette-color-1);
  text-decoration: underline;
}

.program-tuition__footnote a:hover {
  color: var(--theme-palette-color-1);
}

/* =========================
   College Section
========================= */

.program-college {
  padding: 72px 0;
  background-color: var(--theme-palette-color-5);
}

.program-college__inner {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.program-college__main {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 48px;
  align-items: center;
}

.program-college h2.program-college__title {
  margin: 0 0 15px !important;
  font-size: 30px !important;
  color: var(--theme-palette-color-1);
  text-transform: uppercase;
  line-height: 1.15;
}

.program-college__overview {
  max-width: 820px;
  color: var(--theme-palette-color-2);
}

.program-college__overview > *:first-child,
.program-college__principle > *:first-child {
  margin-top: 0;
}

.program-college__overview > *:last-child,
.program-college__principle > *:last-child {
  margin-bottom: 0;
}

.program-college__logo-wrap {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-top: 0px;
	margin-top: -30px;
}

.program-college__logo {
  display: block;
  max-width: 240px;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.program-college__principles-title {
  margin: 0 0 16px !important;
  color: var(--theme-palette-color-1);
  font-size: 18px !important;
  font-weight: 800 !important;
  line-height: 1.35 !important;
}

.program-college__principles-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px 56px;
  margin: 0;
  padding-left: 18px;
}

.program-college__principle {
  color: var(--theme-palette-color-2);
  padding-left: 4px;
}

.program-college__principle::marker {
  color: var(--theme-palette-color-2);
  font-weight: 800;
}

/* =========================
   Why Choose Section
========================= */

.program-why-choose {
  padding: 88px 0;
  background-color: var(--theme-palette-color-1);
  color: var(--theme-palette-color-5);
}

.program-why-choose__inner {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.program-why-choose__intro {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.program-why-choose__title {
  margin: 0 0 16px;
  color: var(--theme-palette-color-5);
  line-height: 1.15;
}

.program-why-choose__description {
  color: var(--theme-palette-color-5);
  max-width: 760px;
  margin: 0 auto;
}

.program-why-choose__description p {
  margin: 0;
}

.program-why-choose__pattern {
  width: 100%;
}

.program-why-choose__pattern .stk-block-columns{
  padding-bottom: 20px !important;
}

.program-why-choose__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 8px;
}

/* =========================
   Coach Quote Section
========================= */

.program-coach-quote {
  padding: 88px 0;
  position: relative;
  background-color: var(--theme-palette-color-5);
  overflow: hidden;
  border-top: 1px solid var(--theme-palette-color-7);
  border-bottom: 1px solid var(--theme-palette-color-7);
  isolation: isolate;
}

.program-coach-quote::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: url(/wp-content/uploads/NCCU-Pattern-scaled.webp);
  opacity: 0.2;
  background-color: #e8e8e8;
  z-index: 0;
  pointer-events: none;
}

.program-coach-quote .ct-container {
  position: relative;
  z-index: 1;
}

.program-coach-quote__inner {
  display: grid;
  grid-template-columns: 360px minmax(0, 1fr);
  gap: 48px;
  align-items: center;
  background: var(--theme-palette-color-5);
  padding: 20px;
  border-radius: 6px;

}

.program-coach-quote__media {
  display: flex;
  align-items: center;
  justify-content: center;
}

.program-coach-quote__image {
  display: block;
  width: 100%;
  max-width: 360px;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
}

.program-coach-quote__content {
  min-width: 0;
}

.program-coach-quote__icon {
  margin-bottom: 18px;
}

.program-coach-quote__icon img {
  display: block;
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.program-coach-quote__quote {
  margin: 0 0 22px;
  padding: 0;
  border: 0;
}

.program-coach-quote__quote p {
  margin: 0;
  color: var(--theme-palette-color-1) !important;
  font-family: var(--font-heading) !important;
  font-size: 29px;
  line-height: 1.3 !important;
  font-weight: 700;
}

.program-coach-quote__meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.program-coach-quote__name {
  color: var(--theme-palette-color-2);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.3;
}

.program-coach-quote__position {
  color: var(--theme-palette-color-3);
  font-size: 12px !important;
}

/* =========================
   Program FAQ
========================= */

.program-faq {
  padding: 88px 0;
  background-color: var(--theme-palette-color-5);
}

.program-faq__inner {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.program-faq__intro {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.program-faq__title {
  margin: 0 0 16px;
  color: var(--theme-palette-color-2);
  line-height: 1.15;
}

.program-faq__description {
  color: var(--theme-palette-color-3);
}

.program-faq__description p {
  margin: 0;
}

.program-faq__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 980px;
  width: 100%;
  margin: 0 auto;
}

.program-faq__item {
  border: 1px solid var(--theme-palette-color-7);
  border-radius: 8px;
  background-color: var(--theme-palette-color-8) ;
  overflow: hidden;
}

.program-faq__toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 18px 22px;
  border: 0;
  background: transparent;
  color: var(--theme-palette-color-2);
  text-align: left;
  cursor: pointer;
}

.program-faq__question {
  color: var(--theme-palette-color-2);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.35;
}

.program-faq__icon {
  position: relative;
  width: 14px;
  height: 14px;
  flex: 0 0 14px;
}

.program-faq__icon::before,
.program-faq__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background-color: var(--theme-palette-color-2);
  transform: translate(-50%, -50%);
  transition: opacity 0.2s ease;
}

.program-faq__icon::before {
  width: 12px;
  height: 2px;
}

.program-faq__icon::after {
  width: 2px;
  height: 12px;
}

.program-faq__item.is-open .program-faq__icon::after {
  opacity: 0;
}

.program-faq__panel {
  padding: 10px 22px 20px;
  
  color: var(--theme-palette-color-3);
}

.program-faq__panel > *:first-child {
  margin-top: 0;
}

.program-faq__panel > *:last-child {
  margin-bottom: 0;
}

.program-faq__actions {
  display: flex;
  justify-content: center;
  margin-top: 8px;
}


/* =========================
   Tablet
========================= */

@media (max-width: 1024px) {
	.program-hero__title{
		font-size: 44px !important;
	    line-height: 55px !important;
		margin: 0 0 20px !important;
	}
	.single-program-page h2 {
    font-size: 30px !important;
		margin: 0 0 20px;
	}
	
	.program-overview__highlights-grid {
	    grid-template-columns: repeat(2, minmax(0, 1fr));
	}
	
 .program-related-posts__grid {
    grid-template-columns: 1fr;
    max-width: 720px;
    width: 100%;
    margin: 0 auto;
  }

  .program-college {
    padding: 64px 0;
  }

  .program-college__main {

	  margin-bottom:20px;
  }

  .program-college__logo-wrap {
    justify-content: flex-start;
    padding-top: 0;
  }

  .program-college__principles-list {
    gap: 18px 32px;
  }

  .program-faq {
    padding: 72px 0;
  }

  .program-hero__grid {
/*     grid-template-columns: 1fr; */
    gap: 40px;
    padding: 60px 0;
    min-height: auto;
  }

  .program-hero__content {
    max-width: 100%;
  }

  .header-rfi-col {
    max-width: 500px;
  }
    .program-overview {
    padding: 72px 0;
  }

  .program-overview__inner {
    gap: 52px;
  }

/*   .program-overview__middle {
    grid-template-columns: 1fr;
    gap: 48px;
  } */

  .program-overview__intro {
    max-width: 100%;
  }
  .program-testimonial {
    padding: 55px 0;
  }
	
	.program-testimonial__inner::before
	{
		top: -15px;
   		 left: -20px;
	}

  .program-testimonial__card {
    max-width: 100%;
    padding: 40px 36px;
  }

  .program-career-outlook {
    padding: 72px 0 52px;
  }

  .program-career-outlook__content {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .program-career-outlook__right {
    gap: 28px;
  }

  .program-career-outlook__stat-block {
    max-width: 100%;
  }

  .program-career-outlook__employers-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
  }

   .program-curriculum {
    padding: 72px 0;
  }

  .program-curriculum__card-body--split {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .program-admissions {
    padding: 72px 0;
  }

  .program-admissions__criteria-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .program-faculty {
    padding: 72px 0;
  }
.program-tuition {
    padding: 72px 0;
  }

  .program-tuition__grid {
    gap: 24px;
  }

    .program-coach-quote {
    padding: 72px 0;
  }

  .program-coach-quote__inner {
    grid-template-columns: 300px minmax(0, 1fr);
    gap: 36px;
  }

  .program-coach-quote__quote p {
    font-size: 28px;
  }
	
	.program-subnav__inner
	{
		gap: 12px;
	}

	.program-subnav__link
	{
		    font-size: 12px;
	}
}

@media (max-width: 991px) {
	
	  .program-hero__grid {
    grid-template-columns: 1fr;
	}
	.program-hero
	{
		padding: 35px 0 35px !important;
	}
	
  .program-stats__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .program-stats__item {
    min-height: 150px;
    padding: 28px 20px;
  }

  .program-stats__item:nth-child(2)::after {
    display: none;
  }

  .program-stats__item:nth-child(-n+2) {
    border-bottom: 1px solid var(--theme-palette-color-7);
  }
	.program-tuition__grid
	{
		grid-template-columns: 1fr;
	}
	
	.program-overview__middle
	{
		grid-template-columns: 1fr;
	}
	.program-college__logo
	{
		    max-width: 210px;
	}
	
	.program-college__main {
		display: grid;
		grid-template-columns: minmax(0, 1fr) 210px;
		gap: 35px;
		align-items: center;
	}
	
	.program-tuition__card ul
	{
		margin-top:15px;
	}
}


@media (max-width: 767px) {
	
	.program-college h2.program-college__title,
	.program-faculty__inner h2.program-faculty__title ,
	.program-tuition__intro h2.program-tuition__title,
	.program-admissions__intro h2.program-admissions__title,
	.program-curriculum__intro h2.program-curriculum__title,
	.program-career-outlook__intro h2.program-career-outlook__title
	
	{
		font-size:28px !important;
	}
	.program-hero__content	h2.program-hero__subtitle
	{
		font-size:26px !important;
	}
	.program-accreditation__box h2.program-accreditation__title
	{
		font-size:22px !important;
	}
	
	.program-college__logo-wrap{
		    margin-top: 0 !important; 
		    justify-content: center !important;
	}
	
	.program-college__inner .single-program-page h2 {
        font-size: 26px !important;
	}
	
	.program-admissions__program_specific-title
	{
		 font-size: 24px !important;
	}
	
	.full-width-btns .btn{
		width:90% !important;
	}

	.program-college__main
	{
		grid-template-columns: 1fr;
	}
	
    .program-related-posts {
    padding: 52px 0;
  }

  .program-related-posts__card {
    grid-template-columns: 84px minmax(0, 1fr);
    gap: 12px;
  }

  .program-related-posts__image-link {
    width: 84px;
    height: 60px;
  }

  .program-related-posts__title {
    font-size: 20px !important;
  }

  .program-overview {
    padding: 56px 0;
  }

  .program-overview__inner {
    gap: 40px;
  }

  .program-overview__eyebrow {
    min-height: 36px;
    margin-bottom: 18px;
    padding: 7px 16px;
    font-size: 13px;
  }
	
	.program-curriculum__course-name
	{
		font-weight:600;
	}

  .program-overview__title {
    margin-bottom: 22px;
    font-size: 32px;
    line-height: 1.15;
  }


  .program-overview__subheading {
    margin-bottom: 18px;
    font-size: 30px;
  }

  .program-overview__highlights-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .program-overview__highlight-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 14px;
  }

  .program-overview__highlight-title {
    margin-bottom: 10px;
    font-size: 17px;
  }

  .program-overview__highlight-text {
    font-size: 16px;
    line-height: 1.6;
  }

  .program-overview__cta {
    margin-top: 24px;
 
  }

  .program-testimonial {
    padding: 48px 0;
  }

  .program-testimonial__card {
    padding: 32px 20px;
    border-radius: 12px;
  }

  .program-testimonial__quote-icon {
    margin-bottom: 18px;
  }

  .program-testimonial__quote-icon img {
    width: 46px;
    height: 46px;
  }

  .program-testimonial__quote {
    margin-bottom: 22px;
  }

  .program-testimonial__quote p {
    font-size: 22px !important;
    line-height: 1.35;
  }

  .program-testimonial__name {
    font-size: 15px;
  }

  .program-testimonial__position {
    font-size: 13px;
  }

  .program-subnav__inner {
    justify-content: flex-start;
    flex-wrap: nowrap;
    gap: 12px;
    padding: 18px 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .program-subnav__inner::-webkit-scrollbar {
    display: none;
  }

  .program-subnav__link {
    flex: 0 0 auto;
    min-height: 38px;
    padding: 8px 16px;
    font-size: 13px;
    white-space: nowrap;
  }

   .program-career-outlook {
    padding: 56px 0 44px;
  }

  .program-career-outlook__inner {
    gap: 32px;
  }

  .program-career-outlook__eyebrow {
    min-height: 36px;
    margin-bottom: 18px;
    padding: 7px 16px;
    font-size: 13px;
  }

  .program-career-outlook__title {
    margin-bottom: 18px;
    line-height: 1.12;
  }

  .program-career-outlook__description p {
    font-size: 16px;
    line-height: 1.6;
  }

  .program-career-outlook__job {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 21px 0;
  }

  .program-career-outlook__job-title {
    font-size: 16px;
  }

  .program-career-outlook__job-salary {
    white-space: normal;
    font-size: 15px;
  }

  .program-career-outlook__actions {
    margin-top: 28px;
  }

  .program-career-outlook__button {
    flex: 1 1 100%;
  }

  .program-career-outlook__stat-value {
    font-size: 22px !important;
  }

  .program-career-outlook__stat-text,
  .program-career-outlook__stat-text p,
  .program-career-outlook__stat-text li {
    font-size: 16px;
    line-height: 1.6;
  }

  .program-career-outlook__employers {
    margin-top: 44px;
    padding-top: 28px;
  }

  .program-career-outlook__employers-title {
    margin-bottom: 20px;
    font-size: 18px;
  }

  .program-career-outlook__employers-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }

  .program-career-outlook__employer {
    max-width: 120px;
  }

  .program-career-outlook__employer img {
    max-height: 40px;
  }

  .program-curriculum {
    padding: 56px 0;
  }

  .program-curriculum__title {
    margin-bottom: 16px;
    line-height: 1.2;
  }

  .program-curriculum__card-header {
    padding: 16px;
  }

  .program-curriculum__card-body {
    padding: 16px;
  }

.program-curriculum   h3.program-curriculum__card-title {
    font-size: 18px !important;
	line-height:20px !important;
  }

  .program-curriculum__breakdown-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .program-curriculum__course-toggle {
/*     grid-template-columns: 1fr; */
    gap: 12px;
    padding: 14px 0px;
  }

  .program-curriculum__course-side {
    justify-content: space-between;
    width: 100%;
    gap: 10px;
    flex-wrap: wrap;
  }

  .program-curriculum__course-link-text {
    font-size: 12px;
  }

  .program-curriculum__course-panel {
       padding: 6px 0px 20px;
  }

   .program-accreditation {
    padding-bottom: 32px;
  }

  .program-accreditation__box {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 24px 20px;
	  padding-left:0px;
	 padding-right:0px;
    text-align: center;
	  padding-bottom:0px;
  }

  .program-accreditation__media img {
    width: 96px;
  }

  .program-accreditation__title {
    margin-bottom: 12px;
  }

  .program-accreditation__text {
    max-width: 100%;
  }

  .program-admissions {
    padding: 56px 0;
  }

  .program-admissions__title {
    margin-bottom: 16px;
    line-height: 1.2;
  }

  .program-admissions__criteria-grid {
    grid-template-columns: 1fr;
    gap: 0px;
  }

  .program-admissions__criteria-card {
    min-height: auto;
    padding: 16px;
  }

 .program-admissions__criteria-title {
    font-size: 18px !important;
  }

  .program-admissions__accordion-toggle {
    padding: 16px;
  }

  .program-admissions__accordion-title {
    font-size: 18px;
  }

  .program-faculty {
    padding: 56px 0;
  }

  .program-faculty__card-inner {
    padding: 16px;
    gap: 14px;
  }

  .program-faculty__image-wrap {
    flex: 0 0 84px;
  }

	.program-faculty__inner
	{
	  gap: 18px;
	}
	
	
	.faculty-left-col
	{
		flex: 1;
	    max-width: 100%;
		display: flex;
        justify-content: space-between;

	}
	
  .program-faculty__image {
    width: 84px;
    height: 84px;
	  margin:0 auto !important;
  }

  .program-faculty__name {
    font-size: 18px;
  }

   .program-tuition {
    padding: 56px 0;
  }

  .program-tuition__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .program-tuition__card {
    padding: 22px 20px 20px;
  }

  .program-tuition__card-title {
    font-size: 18px !important;
  }

  .program-coach-quote {
    padding: 56px 0;
  }

  .program-coach-quote__inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .program-coach-quote__media {
    justify-content: flex-start;
  }

  .program-coach-quote__image {
    max-width: 100%;
  }

  .program-coach-quote__icon {
    margin-bottom: 14px;
  }

  .program-coach-quote__icon img {
    width: 44px;
    height: 44px;
  }

  .program-coach-quote__quote {
    margin-bottom: 18px;
  }

  .program-coach-quote__quote p {
    font-size: 24px;
    line-height: 1.3;
  }

  .program-coach-quote__name {
    font-size: 17px;
  }

    .program-faq {
    padding: 56px 0;
  }

  .program-faq__toggle {
    padding: 16px 18px;
  }

  .program-faq__question {
    font-size: 17px;
  }

  .program-faq__panel {
    padding: 0 18px 18px;
  }

  .program-faq__button {
    width: 100%;
    max-width: 320px;
    text-align: center;
  }

  .program-college {
    padding: 52px 0;
    border-top-width: 6px;
    border-bottom-width: 6px;
  }

  .program-college__principles-list {
    grid-template-columns: 1fr;
  }

  .program-college__logo {
    max-width: 220px;
  }
	
	.program-faculty__cards.program-faculty__static[data-faculty-count="2"]
	{
		grid-template-columns: 1fr;
		padding-left: 20px;
    	padding-right: 20px;
	}
	
	.program-faculty__excerpt p {
		margin: 0;
		font-size: 15px !important;
		line-height: 21px !important;
	}

	.program-faculty__links
	{
		margin-right:20px;
	}
}

/* =========================
   Mobile
========================= */

@media (max-width: 640px) {
	
	.program-curriculum__course-toggle {
        grid-template-columns: 1fr;
	}
	
	.program-curriculum__course-side
	{
		justify-content: right !important;
	}
	
	.program-admissions_credit_note {
    margin-top: 0;
}
	
  .program-hero__grid {
    padding: 48px 0;
    gap: 32px;
  }

  .program-hero__title {
    font-size: 32px !important;
        line-height: 1.3 !important;
  }

  .program-hero__subtitle {
    font-size: 20px !important;
  }

  .program-hero__description p {
    font-size: 16px !important;
  }

  .program-hero__tags {
    gap: 8px;
  }

  .program-hero__tag {
    font-size: 12px !important;
    padding: 5px 12px;
  }

   .program-stats__grid {
    grid-template-columns: 1fr;
  }

  .program-stats__item {
    min-height: auto;
    padding: 24px 16px;
  }

  .program-stats__item:not(:last-child)::after {
    display: none;
  }

  .program-stats__item:not(:last-child) {
    border-bottom: 1px solid var(--theme-palette-color-7);
  }

  .program-stats__value {
    font-size: 24px !important;
  }

  .program-stats__label {
    font-size: 15px;
  }
	

}

@media (max-width: 460px) {
	.program-hero__title {
    font-size: 30px !important;
        line-height: 1.3 !important;
  }
	.program-hero__content h2.program-hero__subtitle {
        font-size: 20px !important;
    }
	
	.single-program-page h2 {
        font-size: 24px !important;
		
	}
	
	.single-program-page h3 {
        font-size: 20px !important;
		line-height: 28px !important;
		
	}
	.program-testimonial__quote p {
        font-size: 20px !important;
      
    }
	
		.program-college h2.program-college__title,
	.program-faculty__inner h2.program-faculty__title ,
	.program-tuition__intro h2.program-tuition__title,
	.program-admissions__intro h2.program-admissions__title,
	.program-curriculum__intro h2.program-curriculum__title,
	.program-career-outlook__intro h2.program-career-outlook__title
	
	{
		font-size:24px !important;
	}
	

	
}


@media (max-width: 380px) {
	.program-hero__title {
    font-size: 28px !important;
        line-height: 1.3 !important;
  }
	
}
