@charset "UTF-8";
:root {
  --section-space-y: 5rem;
  --section-space-y-lg: 5rem;
  --section-space-y-sm: 3rem;
  --section-space-y-xs: 2rem;
  /* Fluid on small screens — avoid narrow Bootstrap gutters */
  --container-pad-x: 1rem;
  --container-max-width: 100%;
}

@media (min-width: 768px) {
  :root {
    --container-pad-x: 1.5rem;
    --container-max-width: 100%;
  }
}
@media (min-width: 992px) {
  :root {
    --container-pad-x: 1.75rem;
    --container-max-width: 100%;
  }
}
@media (min-width: 1200px) {
  :root {
    --container-pad-x: 15px;
    --container-max-width: 1140px;
  }
}
/* ~MacBook / 1440-class desktops */
@media (max-width: 1599.98px) {
  :root {
    --section-space-y: 3.5rem;
    --section-space-y-lg: 4rem;
    --section-space-y-sm: 2.5rem;
    --section-space-y-xs: 1.5rem;
  }
}
@media (min-width: 1360px) {
  :root {
    --container-max-width: 1280px;
  }
}
@media (max-width: 1199.98px) {
  :root {
    --section-space-y: 2.5rem;
    --section-space-y-lg: 2.75rem;
    --section-space-y-sm: 1.75rem;
    --section-space-y-xs: 1.15rem;
  }
}
@media (min-width: 1441px) {
  :root {
    --container-max-width: 1380px;
  }
}
@media (min-width: 1601px) {
  :root {
    --container-max-width: 1440px;
  }
}
@media (min-width: 1920px) {
  :root {
    --container-max-width: 1640px;
  }
}
@media (max-width: 767.98px) {
  :root {
    --section-space-y: 1.75rem;
    --section-space-y-lg: 2rem;
    --section-space-y-sm: 1.35rem;
    --section-space-y-xs: 0.85rem;
    --container-pad-x: 0.85rem;
  }
}
@media (max-width: 575.98px) {
  :root {
    --section-space-y: 1.35rem;
    --section-space-y-lg: 1.5rem;
    --section-space-y-sm: 1.1rem;
    --section-space-y-xs: 0.65rem;
    --container-pad-x: 0.75rem;
  }
}
/* Program single: .goals_section (qualification goals tabs) */
.goals_section {
  padding-top: var(--section-space-y, 4rem);
  padding-bottom: var(--section-space-y-lg, 6rem);
  position: relative;
}

.single-programs .faculty_expertise_section:before,
.goals_section:before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-color: #EEF7FF;
  z-index: -1;
}

.goals_section_title {
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

/* —— Multi-tab —— */
.goals_section .tab-buttons-content {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.25rem;
}

.goals_section .tab-button {
  background-color: transparent;
  flex: 1 1 0;
  min-width: 0;
  max-width: 357px;
  border-radius: 28px 28px 0 0;
  border: 1px solid #707070;
  border-bottom: 0;
  padding: clamp(0.75rem, 2vw, 1rem) clamp(0.75rem, 2vw, 1.25rem);
  text-align: left;
  font-weight: 400;
  transition: background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #1F1B51;
  cursor: pointer;
}

.goals_section .tab-button.active {
  background-color: #fff;
  border-color: transparent;
  color: #1F1B51;
  font-weight: bold;
}

.goals_list_sub_title {
  font-weight: bold;
  font-size: clamp(1.5rem, 4vw, 2.5625rem);
  line-height: 1.15;
  flex-shrink: 0;
  padding-right: 0.75rem;
  margin-right: 0.75rem;
  position: relative;
}

.goals_list_sub_title:before {
  position: absolute;
  content: "";
  right: 0;
  top: 0.1em;
  height: calc(100% - 0.2em);
  width: 1px;
  background-color: #1F1B51;
}

.goals_list_title {
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  line-height: 1.35;
}

.goals_section .tab-contents {
  width: 100%;
  border: 1px solid #fff;
  border-radius: clamp(24px, 5vw, 51px);
  background-color: #fff;
}

.goals_item_wrapper {
  max-width: 1000px;
  margin: 0 auto;
  padding: clamp(1.5rem, 4vw, 4rem) clamp(1.25rem, 3vw, 2rem);
}

.goals_item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 0.75rem 0;
}

.goals_item + .goals_item {
  border-top: 1px solid rgba(31, 27, 81, 0.08);
}

.goals_item_index,
.goals_item h3 {
  text-transform: uppercase;
  color: #1F1B51;
  font-weight: bold;
  font-size: 1rem;
  line-height: 1.2;
  min-width: 2.75rem;
  flex-shrink: 0;
  margin: 0;
}

.goals_item_description {
  flex: 1;
  min-width: 0;
  font-size: clamp(0.9375rem, 1.5vw, 1rem);
  line-height: 1.5;
}

.goals_item_description p:last-child {
  margin-bottom: 0;
}

/* —— Single tab: card layout (no tab chrome) —— */
.goals_section--single .goals_panel {
  background-color: #fff;
  border-radius: clamp(24px, 5vw, 51px);
  overflow: hidden;
  max-width: 1000px;
  margin: 0 auto;
  box-shadow: 0 4px 24px rgba(31, 27, 81, 0.06);
}

.goals_section--single .goals_panel_header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem 1rem;
  text-align: center;
  padding: clamp(1.25rem, 3vw, 2rem) clamp(1.5rem, 4vw, 2.5rem);
  background: linear-gradient(180deg, #f8fbff 0%, #fff 100%);
  border-bottom: 1px solid rgba(31, 27, 81, 0.08);
}

.goals_section--single .goals_panel_header .goals_list_sub_title {
  padding-right: 0;
  margin-right: 0;
}

.goals_section--single .goals_panel_header .goals_list_sub_title:before {
  display: none;
}

.goals_section--single .goals_panel_header .goals_list_title {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: bold;
  max-width: 28ch;
}

.goals_section--single .goals_item_wrapper {
  padding-top: clamp(1rem, 2.5vw, 2rem);
  padding-bottom: clamp(1.5rem, 3vw, 2.5rem);
}

/* Tablet */
@media (max-width: 1199.98px) {
  .goals_section .tab-button {
    max-width: none;
  }
}
@media (min-width: 768px) and (max-width: 1280px) {
  .goals_section .tab-contents {
    border-radius: clamp(16px, 3vw, 51px);
  }
}
/* Mobile — stacked tab list (all tabs visible, no horizontal scroll) */
@media (max-width: 767.98px) {
  .goals_section {
    padding-top: var(--section-space-y-sm, 2rem);
    padding-bottom: var(--section-space-y, 3rem);
  }
  .goals_section--multi .tab-buttons {
    margin-bottom: 0.75rem;
  }
  .goals_section--multi .tab-buttons-content {
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: stretch;
    overflow: visible;
    scroll-snap-type: none;
    gap: 0.5rem;
    padding: 0;
  }
  .goals_section--multi .tab-button {
    flex: none;
    width: 100%;
    min-width: 0;
    max-width: 100%;
    border-radius: 16px;
    border: 1px solid rgba(31, 27, 81, 0.22);
    padding: 0.85rem 1rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
  }
  .goals_section--multi .tab-button.active {
    background-color: #1F1B51;
    border-color: #1F1B51;
    color: #fff;
    font-weight: bold;
  }
  .goals_section--multi .goals_list_sub_title {
    font-size: 1.125rem;
    line-height: 1.2;
    padding-right: 0;
    margin-right: 0;
  }
  .goals_section--multi .goals_list_sub_title:before {
    display: none;
  }
  .goals_section--multi .tab-button.active .goals_list_sub_title:before {
    display: none;
  }
  .goals_section--multi .goals_list_title {
    font-size: 0.9375rem;
    line-height: 1.35;
    font-weight: 600;
  }
  .goals_section--multi .tab-contents {
    border-radius: 20px;
  }
  .goals_section .goals_item_wrapper {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .goals_item {
    flex-direction: row;
    gap: 0.75rem;
    padding: 1rem 0;
  }
  .goals_item_index,
  .goals_item h3 {
    min-width: 2.25rem;
    font-size: 0.9375rem;
  }
  .goals_section--single .goals_panel {
    border-radius: 32px;
  }
  .goals_section--single .goals_panel_header {
    flex-direction: column;
    gap: 0.35rem;
    padding: 1.25rem 1rem;
  }
  .goals_section--single .goals_panel_header .goals_list_sub_title {
    font-size: 2rem;
  }
  .goals_section--single .goals_panel_header .goals_list_title {
    max-width: none;
  }
}
@media (max-width: 479.98px) {
  .goals_item {
    flex-direction: column;
    gap: 0.35rem;
  }
  .goals_item_index,
  .goals_item h3 {
    min-width: 0;
  }
}
/* Program single: .study_plan_section */
.study_plan_section {
  padding-top: 0;
  padding-bottom: var(--section-space-y, 3rem);
}

.study_plan_header {
  position: relative;
  padding: var(--section-space-y, 5rem) 0 var(--section-space-y-lg, 5rem);
}

.study_plan_header:before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-color: #EEF7FF;
  z-index: -1;
}

.study_plan_header .section_title {
  margin-bottom: clamp(1.5rem, 3vw, 3rem);
}

.study_plan_header .description {
  max-width: 52rem;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  line-height: 1.5;
}

.summary_credits {
  position: relative;
  z-index: 1;
  margin-bottom: var(--section-space-y-sm);
}

.wrapper_ects {
  border-radius: clamp(32px, 6vw, 80px);
  overflow: visible;
  padding: clamp(1.5rem, 4vw, 3rem) clamp(0.75rem, 2vw, 1rem) clamp(1.5rem, 3vw, 2.5rem);
  margin-top: clamp(-3.5rem, -6vw, -8rem);
  background-color: #fff;
  box-shadow: 0 8px 32px rgba(31, 27, 81, 0.06);
}

.wrapper_ects .total_ects h3 {
  font-weight: bold;
  font-size: clamp(1.25rem, 2.5vw, 1.625rem);
  line-height: 1.25;
  margin-bottom: clamp(1.5rem, 3vw, 3rem);
}

.total_ects_list {
  max-width: 1440px;
  margin: 0 auto;
  font-size: clamp(1rem, 1.8vw, 1.375rem);
  line-height: 1.35;
  padding: 0 clamp(0.5rem, 2vw, 1rem);
}

.total_ects_list + .study_plan_list {
  margin-top: clamp(2rem, 4vw, 3rem);
  padding-top: clamp(1.5rem, 3vw, 2.5rem);
  border-top: 1px solid rgba(31, 27, 81, 0.08);
}

.total_ects h3 + .study_plan_list {
  margin-top: clamp(1.5rem, 3vw, 2.5rem);
}

.study_plan_list {
  margin-bottom: 0;
}

.total_ects_list .row {
  margin-left: -0.5rem;
  margin-right: -0.5rem;
}

.total_ects_list .row > [class*=col-] {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  margin-bottom: 0.75rem;
}

.total_ects_item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0.35rem;
  padding: 1rem 0.75rem;
}

.total_ects_item strong {
  font-size: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.1;
  color: #1F1B51;
}

.study_plan_list .row {
  margin-left: -0.5rem;
  margin-right: -0.5rem;
}

.study_plan_list .row > [class*=col-] {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  margin-bottom: 1rem;
}

.study_plan_list .item_semester {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.item_semester_content_wrapper {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transition: max-height 0.45s ease, opacity 0.3s ease, visibility 0s linear 0.45s;
}

.item_semester.active .item_semester_content_wrapper {
  max-height: 3000px;
  opacity: 1;
  visibility: visible;
  transition: max-height 0.45s ease, opacity 0.3s ease, visibility 0s linear 0s;
}

.item_semester_content_panel {
  overflow: visible;
}

.study_plan_list .item_semester_header {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
  color: #fff;
  position: relative;
  z-index: 2;
  -webkit-tap-highlight-color: transparent;
}

.item_semester_header_wrapper {
  display: flex;
  width: 100%;
  align-items: stretch;
  min-height: 4.5rem;
  border-radius: 999px;
  overflow: visible;
}

.study_plan_list .item_semester_header .col_item--title {
  flex: 1 1 auto;
  min-width: 0;
  background-color: #1F1B51;
  border-radius: 999px 0 0 999px;
  padding: 0.75rem 0.65rem 0.75rem 1rem;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 0.65rem;
  text-align: left;
  color: #fff;
}

.study_plan_list .item_semester_header .semester_label {
  min-width: 0;
  flex: 1;
  font-size: clamp(0.8125rem, 1.2vw, 0.9375rem);
  line-height: 1.35;
}

.item_semester_content {
  position: relative;
  z-index: 1;
  background-color: #EEF7FF;
  border-radius: 0 0 24px 24px;
  line-height: 1.55;
  padding: clamp(0.75rem, 2vw, 1rem) clamp(1rem, 3vw, 1.25rem) clamp(1.25rem, 3vw, 1.5rem);
  font-size: clamp(0.875rem, 1.4vw, 0.9375rem);
}

.item_semester_content p:last-child,
.item_semester_content ol:last-child,
.item_semester_content ul:last-child {
  margin-bottom: 0;
}

.item_semester_content ol,
.item_semester_content ul {
  padding-left: 1.25rem;
  margin-bottom: 0.75rem;
}

.study_plan_list .item_semester_header .semester_number {
  display: block;
  font-size: clamp(0.875rem, 1.3vw, 1rem);
  line-height: 1.25;
  margin-bottom: 0.15rem;
}

.study_plan_list .item_semester_header .semester_title {
  display: block;
  font-weight: 400;
  font-size: clamp(0.75rem, 1.1vw, 0.875rem);
  line-height: 1.35;
  word-wrap: break-word;
  overflow-wrap: anywhere;
  hyphens: auto;
}

.study_plan_list .long_arrow {
  display: inline-block;
  flex-shrink: 0;
  margin-top: 0.2rem;
  min-width: 11px;
  width: 11px;
  height: 11px;
  border-top: 1px solid #fff;
  border-left: 1px solid #fff;
  transform: rotate(225deg);
  transition: transform 0.3s ease-in-out;
}

.item_semester.active .long_arrow {
  transform: rotate(45deg);
}

.study_plan_list .long_arrow:after {
  content: "";
  display: block;
  width: 1px;
  height: 18px;
  background-color: #fff;
  transform: rotate(-45deg) translate(6px, 3px);
}

.study_plan_list .item_semester_header .col_item--ects {
  flex: 0 0 auto;
  width: clamp(3.75rem, 18%, 5.25rem);
  min-width: 3.75rem;
  background-color: #EEF7FF;
  color: #1F1B51;
  font-weight: bold;
  border-radius: 0 999px 999px 0;
  border: 1px solid #1F1B51;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 0.6875rem;
  line-height: 1.15;
  padding: 0.5rem 0.35rem;
}

.study_plan_list .item_semester_header .col_item--ects strong {
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  line-height: 1.1;
}

.study_plan_list .item_semester_header:after {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0;
  background-color: #EEF7FF;
  z-index: -1;
  transition: height 0.3s ease;
}

.item_semester.active .item_semester_header:after {
  height: 1.5rem;
}

.elective_courses {
  position: relative;
  padding: clamp(2.5rem, 6vw, 5rem) 0;
}

.elective_courses:before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #F5F5F5;
  z-index: -1;
}

.elective_modules_title {
  font-size: clamp(1.125rem, 2.2vw, 1.625rem);
  line-height: 1.3;
  margin-bottom: clamp(1.5rem, 3vw, 3rem);
}

.elective_modules_details {
  padding-top: clamp(2.5rem, 5vw, 4rem);
  padding-bottom: clamp(1.5rem, 3vw, 2.5rem);
}

.elective_modules_details .elective_modules_title {
  margin-bottom: 0;
}

.elective_modules {
  max-width: 890px;
  margin: 0 auto;
}

.elective_modules .col-md-6,
.elective_modules [class*=col-] {
  margin-bottom: 1rem;
  min-width: 0;
}

.elective_modules p {
  margin-bottom: 0.65rem;
}

.elective_modules p:last-child {
  margin-bottom: 0;
}

/* ACF WYSIWYG titles */
.elective_modules h2,
.elective_modules h3,
.elective_modules h4,
.elective_modules strong,
.elective_modules b {
  font-size: 1.05em;
  line-height: 1.3;
  font-weight: 700;
}

.elective_modules p:has(> strong:only-child),
.elective_modules p:has(> b:only-child) {
  margin-bottom: 0.25rem;
}

.elective_modules p + p:has(> strong),
.elective_modules p + p:has(> b),
.elective_modules p + h2,
.elective_modules p + h3,
.elective_modules p + h4 {
  margin-top: 1.15rem;
}

.elective_modules p:empty,
.elective_modules p:has(> br:only-child) {
  display: none;
}

.elective_modules ul {
  list-style: disc;
  margin-left: 1.25rem;
  margin-bottom: 0;
}

.elective_modules li + li {
  margin-top: 0.35rem;
}

/* Desktop columns — keep pills readable in col-xl-3 */
@media (min-width: 1200px) {
  .item_semester_header_wrapper {
    min-height: 5rem;
  }
  .study_plan_list .item_semester_header .col_item--title {
    padding: 0.85rem 0.75rem 0.85rem 1.1rem;
  }
  .study_plan_list .item_semester_header .col_item--ects {
    width: 4.5rem;
    min-width: 4.5rem;
  }
}
/* Tablet + mobile — single column, readable type */
@media (max-width: 1199.98px) {
  .wrapper_ects {
    margin-top: clamp(-3rem, -5vw, -5rem);
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .study_plan_list .row > [class*=col-] {
    flex: 0 0 100%;
    max-width: 100%;
  }
  /* Electives: avoid 2-col stagger before full mobile stack */
  .elective_modules .row > [class*=col-] {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .study_plan_list .item_semester_header .semester_number {
    font-size: 1rem;
  }
  .study_plan_list .item_semester_header .semester_title {
    font-size: 0.875rem;
    line-height: 1.4;
  }
  .item_semester_content {
    font-size: 0.9375rem;
    padding: 1rem 1.1rem 1.25rem;
  }
  .study_plan_list .item_semester_header .col_item--ects {
    width: 4.25rem;
    min-width: 4.25rem;
  }
}
/* Mobile — standard mobile type scale */
@media (max-width: 767.98px) {
  .study_plan_header {
    padding: 2rem 0 2.75rem;
  }
  .study_plan_header .section_title {
    font-size: 1.25rem !important;
    line-height: 1.25 !important;
    margin-bottom: 0.85rem;
    padding-left: 0.15rem;
    padding-right: 0.15rem;
  }
  .study_plan_header .description {
    font-size: 0.9375rem !important;
    line-height: 1.5 !important;
    text-align: left;
    max-width: 36rem;
    margin-left: auto;
    margin-right: auto;
    padding: 0 0.15rem;
  }
  .study_plan_header .description p {
    font-size: inherit;
    line-height: inherit;
    margin-bottom: 0.75rem;
    text-align: left;
  }
  .study_plan_header .description p:last-child {
    margin-bottom: 0;
  }
  .wrapper_ects {
    margin-top: -2.5rem;
    padding: 1.25rem 0.75rem 1.5rem;
    border-radius: 28px;
  }
  .wrapper_ects .total_ects h3 {
    font-size: 1.125rem !important;
    line-height: 1.25 !important;
    margin-bottom: 1.15rem;
  }
  .total_ects_list {
    padding: 0;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
    line-height: 1.35;
  }
  .total_ects_item {
    padding: 0.75rem 0.5rem;
    border-bottom: 1px solid rgba(31, 27, 81, 0.08);
  }
  .total_ects_item strong {
    font-size: 1.25rem;
  }
  .total_ects_list .row > [class*=col-]:last-child .total_ects_item {
    border-bottom: 0;
  }
  .study_plan_list .row > [class*=col-] {
    margin-bottom: 0.75rem;
  }
  .item_semester_header_wrapper {
    min-height: auto;
    border-radius: 24px;
  }
  .study_plan_list .item_semester_header .col_item--title {
    border-radius: 24px 0 0 24px;
    padding: 0.85rem 0.75rem 0.85rem 1rem;
  }
  .study_plan_list .item_semester_header .semester_number {
    font-size: 0.9375rem;
  }
  .study_plan_list .item_semester_header .semester_title {
    font-size: 0.8125rem;
    line-height: 1.35;
  }
  .study_plan_list .item_semester_header .col_item--ects {
    width: 4.25rem;
    min-width: 4.25rem;
    border-radius: 0 24px 24px 0;
    font-size: 0.6875rem;
  }
  .study_plan_list .item_semester_header .col_item--ects strong {
    font-size: 1.125rem;
  }
  .item_semester_content {
    border-radius: 0 0 20px 20px;
    font-size: 0.875rem;
    line-height: 1.45;
    padding: 0.9rem 1rem 1.1rem;
  }
  .elective_courses {
    padding: 2rem 0;
  }
  .elective_courses .container,
  .study_plan_section > .container {
    padding-left: 1.25rem !important;
    padding-right: 1.25rem !important;
  }
  .elective_modules {
    max-width: 100%;
  }
  .elective_modules_title {
    font-size: 1.125rem !important;
    line-height: 1.25 !important;
    margin-bottom: 1rem;
    padding-left: 0.15rem;
    padding-right: 0.15rem;
    box-sizing: border-box;
  }
  /* One column — keep side inset (do not bleed to viewport edges) */
  .elective_modules .row {
    --bs-gutter-x: 0;
    --bs-gutter-y: 0;
    row-gap: 0;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  .elective_modules .row > [class*=col-] {
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 0;
    padding-left: 0.15rem !important;
    padding-right: 0.15rem !important;
    font-size: 0.875rem !important;
    line-height: 1.45 !important;
    box-sizing: border-box;
  }
  .elective_modules .row > [class*=col-] + [class*=col-] {
    margin-top: 1.15rem;
  }
  .elective_modules h2,
  .elective_modules h3,
  .elective_modules h4,
  .elective_modules strong,
  .elective_modules b {
    font-size: 0.9375rem !important;
    line-height: 1.3 !important;
    overflow-wrap: break-word;
    word-break: normal;
  }
  .elective_modules p {
    margin-bottom: 0.55rem;
  }
  .elective_modules p:has(> strong:only-child),
  .elective_modules p:has(> b:only-child) {
    margin-bottom: 0.2rem;
  }
  .elective_modules p + p:has(> strong),
  .elective_modules p + p:has(> b),
  .elective_modules p + h2,
  .elective_modules p + h3,
  .elective_modules p + h4 {
    margin-top: 1rem;
  }
}
@media (max-width: 479.98px) {
  .study_plan_header .section_title {
    font-size: 1.125rem !important;
    line-height: 1.25 !important;
  }
  .study_plan_header .description {
    font-size: 0.875rem !important;
    line-height: 1.5 !important;
  }
  .wrapper_ects {
    margin-top: -2rem;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    border-radius: 24px;
  }
  .wrapper_ects .total_ects h3 {
    font-size: 1rem !important;
  }
  .study_plan_list .item_semester_header .col_item--ects {
    width: 3.5rem;
    min-width: 3.5rem;
  }
  .study_plan_list .item_semester_header .col_item--ects strong {
    font-size: 1.0625rem;
  }
  .elective_courses .container,
  .study_plan_section > .container {
    padding-left: 1.15rem !important;
    padding-right: 1.15rem !important;
  }
  .elective_modules .row > [class*=col-] {
    font-size: 0.8125rem !important;
    line-height: 1.45 !important;
    padding-left: 0.1rem !important;
    padding-right: 0.1rem !important;
  }
  .elective_modules h2,
  .elective_modules h3,
  .elective_modules h4,
  .elective_modules strong,
  .elective_modules b {
    font-size: 0.875rem !important;
    line-height: 1.3 !important;
  }
}
/* Shared tabs / specialisations */
.section_tabs_slider {
  margin-bottom: var(--section-space-y-sm);
}

.section_tabs_slider > .container > .section_title {
  margin-bottom: 1rem;
}

.section_tabs_slider .tabs {
  border-radius: clamp(32px, 6vw, 80px);
  overflow: hidden;
  height: auto !important;
  align-items: stretch;
}

.section_tabs_slider .tab-buttons {
  position: sticky;
  top: var(--header-offset, 145px);
  justify-content: flex-start !important;
  height: auto;
  overflow: visible;
}

.section_tabs_slider .tab-contents {
  height: auto !important;
  min-width: 0;
  align-self: stretch;
  display: flex;
  flex-direction: column;
}

/* Photo always full width of the content pane */
.section_tabs_slider .tab-content-image {
  display: block;
  width: 100% !important;
  max-width: none !important;
  height: auto !important;
  min-height: 180px;
  aspect-ratio: 805/296;
  margin: 0;
  flex-shrink: 0;
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat;
}

.section_tabs_slider .tab-content-wrapper {
  min-height: 0 !important;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
}

.section_tabs_slider .tab-contents .content {
  flex: 1 1 auto;
}

/* Inactive panels: display:none (max-height:0 left empty gap) */
.section_tabs_slider .tab-contents .tab-content {
  display: none !important;
  opacity: 1;
  max-height: none;
  overflow: hidden;
  background-color: #1F1B51;
}

.section_tabs_slider .tab-contents .tab-content.active {
  display: flex !important;
  flex-direction: column;
  flex: 1 1 auto;
  width: 100%;
  max-height: none;
  height: 100%;
  min-height: 100%;
}

/* Mobile accordion panel under tab button */
.section_tabs_slider .tab-buttons-content > .tab-content {
  display: none;
  width: 100% !important;
  max-width: none !important;
  margin: 0 0 0.5rem;
  background-color: #1F1B51;
  color: #fff;
  border-radius: 0 0 16px 16px;
  overflow: hidden;
  box-sizing: border-box;
}

.section_tabs_slider .tab-buttons-content > .tab-content.active {
  display: block;
}

.section_tabs_slider .tab-buttons-content > .tab-content .content {
  padding: 1.15rem 1rem 1.35rem;
}

.section_tabs_slider .tab-buttons-content > .tab-content .sub_title {
  display: none; /* title already in accordion header */
}

@media (min-width: 992px) {
  .section_tabs_slider .tab-buttons-content > .tab-content {
    display: none !important;
  }
  .section_tabs_slider .tab-contents {
    align-self: stretch;
  }
  .section_tabs_slider .tab-contents .tab-content.active {
    flex: 1 1 auto;
    height: auto;
    min-height: 100%;
    align-self: stretch;
  }
  .section_tabs_slider .tab-content-wrapper {
    flex: 1 1 auto;
  }
}
@media (max-width: 1199.98px) {
  .section_tabs_slider .tab-button {
    font-size: clamp(1rem, 2.2vw, 1.25rem);
    line-height: 1.35;
  }
  .section_tabs_slider .tab-buttons-content h2 {
    margin-bottom: 1.5rem;
  }
  .section_tabs_slider .tab-content-image {
    min-height: 160px;
  }
}
/* —— Mobile / tablet: real accordion (content under each tab) —— */
@media (max-width: 991.98px) {
  .section_tabs_slider .tab-buttons {
    position: static;
    top: auto;
    width: 100%;
    padding: 1.25rem 1rem;
    overflow: visible;
  }
  .section_tabs_slider .tab-contents {
    display: none; /* panels moved under buttons via JS */
    width: 100%;
  }
  .section_tabs_slider .tabs {
    flex-direction: column;
    border-radius: clamp(20px, 7vw, 40px);
    height: auto;
  }
  .section_tabs_slider h2 {
    padding: 0 !important;
  }
  .section_tabs_slider > .container > .section_title,
  .section_tabs_slider .tab-buttons-content h2 {
    padding: 0;
  }
  .section_tabs_slider .tab-buttons-content {
    max-width: none;
    width: 100%;
    margin: 0;
    padding: 0;
  }
  .section_tabs_slider .tab-buttons-content h2 {
    margin-bottom: 1rem;
    font-size: clamp(1.125rem, 4vw, 1.5rem);
    line-height: 1.3;
  }
  .section_tabs_slider .tab-button {
    width: 100%;
    box-sizing: border-box;
    padding: 0.85rem 2.75rem 0.85rem 1rem;
    margin-bottom: 0.5rem;
    border-radius: 16px;
    border: 1px solid rgba(31, 27, 81, 0.18);
    background-color: #fff;
    font-size: clamp(0.9375rem, 3.5vw, 1.125rem);
    line-height: 1.35;
  }
  .section_tabs_slider .tab-button:hover,
  .section_tabs_slider .tab-button.active {
    background-color: #1F1B51;
    border-color: #1F1B51;
    color: #fff;
    font-weight: bold;
  }
  .section_tabs_slider .tab-button.active {
    margin-bottom: 0;
    border-radius: 16px 16px 0 0;
    border-bottom: 0;
  }
  .section_tabs_slider .tab-button.active .tab_button_title {
    padding-left: 0;
  }
  .section_tabs_slider .tab-button .arrow_wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 0.85rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1.25rem;
    height: 1.25rem;
  }
  .section_tabs_slider .tab-button .arrow {
    display: block;
    width: 0.55rem;
    height: 0.55rem;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    border-top: 0;
    border-left: 0;
    transform: rotate(45deg);
    transition: transform 0.2s ease;
    margin-top: -0.2rem;
    background: none;
  }
  .section_tabs_slider .tab-button.active .arrow {
    transform: rotate(225deg);
    margin-top: 0.15rem;
  }
  /* Hide legacy arrow; accordion uses chevron */
  .section_tabs_slider .tab-button .arrow:before,
  .section_tabs_slider .tab-button .arrow:after,
  .section_tabs_slider .tab-button.active .arrow:before,
  .section_tabs_slider .tab-button.active .arrow:after {
    content: none !important;
    display: none !important;
    width: 0 !important;
    height: 0 !important;
    border: 0 !important;
    background: none !important;
    opacity: 0 !important;
  }
  .section_tabs_slider .tab-buttons-content > .tab-content .tab-content-image {
    width: 100% !important;
    aspect-ratio: 16/9;
    min-height: 0;
  }
  .section_tabs_slider .tab-buttons-content > .tab-content .content {
    padding: 1.15rem 1rem 1.35rem;
    font-size: 0.9375rem;
    line-height: 1.5;
  }
}
@media (max-width: 767.98px) {
  .section_tabs_slider {
    margin-bottom: var(--section-space-y-xs);
  }
  .section_tabs_slider .tab-buttons {
    padding: 1rem 0.75rem;
  }
  .section_tabs_slider .tab-button {
    font-size: 0.9375rem;
    padding: 0.75rem 2.5rem 0.75rem 0.85rem;
    border-radius: 14px;
  }
  .section_tabs_slider .tab-button.active {
    border-radius: 14px 14px 0 0;
  }
  .section_tabs_slider .tab-buttons-content > .tab-content {
    border-radius: 0 0 14px 14px;
  }
  .section_tabs_slider .tab-buttons-content > .tab-content .content {
    padding: 1rem 0.9rem 1.2rem;
    font-size: 0.875rem;
  }
}
/* Program single: .specialisations_section */
.specialisations_section {
  position: relative;
  padding-top: var(--section-space-y, 3rem);
  padding-bottom: var(--section-space-y, 3rem);
}

.specialisations_section.bg-gray {
  padding-top: var(--section-space-y-lg, 5rem);
  padding-bottom: var(--section-space-y-lg, 5rem);
}

.specialisations_section.bg-gray::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #F5F5F5;
  z-index: -1;
}

.specialisations_section__title {
  margin-bottom: clamp(1rem, 2.5vw, 2rem);
}

.specialisations_section .description {
  max-width: 52rem;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: clamp(1.5rem, 4vw, 3rem);
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  line-height: 1.5;
}

.specialisations_section.bg-gray .description {
  margin-bottom: 0;
}

.specialisations_section .specialisations_list {
  margin-top: 0;
}

.specialisations_section .section_tabs_slider {
  margin-bottom: 0;
}

.specialisations_section .section_tabs_slider .tabs {
  background-color: #EEF7FF;
  border-radius: clamp(32px, 6vw, 121px);
  display: flex;
  overflow: hidden;
  min-height: 0;
  height: auto;
}

.specialisations_section .section_tabs_slider .tab-buttons {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(1.25rem, 3vw, 2rem) clamp(1rem, 2.5vw, 1.5rem);
  overflow: visible;
  position: relative;
  top: auto;
}

.specialisations_section .section_tabs_slider .tab-buttons-content {
  width: 100%;
  max-width: 536px;
  margin-left: auto;
  margin-right: auto;
}

.specialisations_section .section_tabs_slider .specialisations_tabs_title {
  margin-bottom: clamp(1.25rem, 3vw, 2.5rem);
  font-size: clamp(1.5rem, 2.5vw, 2.25rem);
  line-height: 1.2;
  padding: 0;
}

.specialisations_section .section_tabs_slider .tab-button {
  width: 100%;
  font-size: clamp(1rem, 1.6vw, 1.5rem);
  line-height: 1.35;
  font-weight: 400;
  display: flex;
  align-items: center;
  color: #000;
  background-color: transparent;
  border: none;
  text-align: left;
  margin-bottom: 0.5rem;
  padding: 0.65rem 2.5rem 0.65rem 0;
  position: relative;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.specialisations_section .section_tabs_slider .tab-button:hover,
.specialisations_section .section_tabs_slider .tab-button.active {
  font-weight: bold;
  font-size: clamp(1rem, 1.6vw, 1.5rem);
}

.specialisations_section .section_tabs_slider .tab-button .arrow_wrapper {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.specialisations_section .section_tabs_slider .tab-button.active .tab_button_title {
  padding-left: 1rem;
}

.specialisations_section .section_tabs_slider .tab-contents {
  width: 50%;
  color: #fff;
  min-width: 0;
  height: auto;
  display: flex;
  flex-direction: column;
  align-self: stretch;
}

.specialisations_section .section_tabs_slider .tab-contents .tab-content {
  background-color: #1F1B51;
  display: none;
}

.specialisations_section .section_tabs_slider .tab-contents .tab-content.active {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  min-height: 100%;
}

.specialisations_section .section_tabs_slider .tab-content-image {
  /* full-width cover — shared rules in _tabs-slider.scss */
  width: 100%;
  flex-shrink: 0;
}

.specialisations_section .section_tabs_slider .tab-content-wrapper {
  min-height: 0;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
}

.specialisations_section .section_tabs_slider .tab-contents .content {
  padding: clamp(1.25rem, 3vw, 2rem);
}

.specialisations_section .section_tabs_slider .tab-contents .sub_title {
  font-size: clamp(1.125rem, 2vw, 1.625rem);
  line-height: 1.3;
  margin-bottom: 0.75rem;
}

.specialisations_section .section_tabs_slider .tab-content-wrapper a {
  color: #fff;
  text-decoration: underline;
}

/* Legacy list items */
.specialisation_item {
  padding: clamp(1rem, 2.5vw, 1.625rem) clamp(1.25rem, 3vw, 2.5rem);
}

.specialisation_item h3 {
  font-weight: bold;
  font-size: clamp(1.25rem, 2.5vw, 2.25rem);
  line-height: 1.25;
}

.specialisation_item:nth-child(odd) {
  background-color: #E9F3FF;
}

/* —— Desktop: title lives in the tabs panel —— */
@media (min-width: 992px) {
  .specialisations_section--has-tabs > .container > .specialisations_section__title {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }
  .specialisations_section--has-tabs .description {
    margin-bottom: clamp(2rem, 5vw, 4rem);
  }
  /* Keep panels in .tab-contents on desktop */
  .specialisations_section .section_tabs_slider .tab-buttons-content > .tab-content {
    display: none !important;
  }
}
@media (max-width: 1199.98px) {
  .specialisations_section .section_tabs_slider .tabs {
    border-radius: clamp(28px, 5vw, 80px);
  }
}
/* Accordion UI shared via _tabs-slider.scss — only section chrome here */
@media (max-width: 991.98px) {
  .specialisations_section .section_tabs_slider .tab-buttons,
  .specialisations_section .section_tabs_slider .tab-contents {
    width: 100%;
  }
  .specialisations_section .section_tabs_slider .specialisations_tabs_title {
    display: none;
  }
}
@media (max-width: 767.98px) {
  .specialisations_section {
    padding-top: var(--section-space-y-sm, 2rem);
    padding-bottom: var(--section-space-y, 2.5rem);
  }
  .specialisations_section.bg-gray {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
  .specialisations_section__title,
  .specialisations_section .section_title {
    font-size: 1.375rem !important;
    line-height: 1.2 !important;
    margin-bottom: 0.75rem;
    padding-left: 0.25rem;
    padding-right: 0.25rem;
  }
  .specialisations_section .description {
    font-size: 0.9375rem !important;
    line-height: 1.45 !important;
    margin-bottom: 1rem;
    padding-left: 0.15rem;
    padding-right: 0.15rem;
    max-width: 36rem;
  }
  .specialisations_section .description p {
    font-size: inherit;
    line-height: inherit;
    margin-bottom: 0.85rem;
  }
  .specialisations_section .description p:last-child {
    margin-bottom: 0;
  }
}
@media (max-width: 479.98px) {
  .specialisations_section__title,
  .specialisations_section .section_title {
    font-size: 1.25rem !important;
  }
  .specialisations_section .description {
    font-size: 0.875rem !important;
    line-height: 1.45 !important;
  }
}
/*munich_team*/
.munich_team_header {
  position: relative;
  padding: var(--section-space-y-lg, 5rem) 0;
}

.munich_team_header .bg {
  max-width: 400px;
  height: 400px;
  border-radius: 50%;
}

@media (max-width: 990px) {
  .munich_team_header .bg {
    margin-bottom: 2rem;
  }
}
.munich_team_header h1 {
  font-size: clamp(1.65rem, 1.1rem + 1vw, 2.15rem);
  line-height: 1.2;
  font-weight: bold;
}

.single_program .description,
.munich_team_header .short_description {
  font-size: clamp(0.875rem, 0.7rem + 0.7vw, 1.5rem);
  line-height: 1.45;
}

.munich_team_header:before {
  position: absolute;
  content: "";
  left: 0;
  top: -120px;
  width: 100%;
  height: calc(100% + 120px);
  z-index: -1;
  background-color: #F5F5F5;
  background-color: #EEF7FF;
}

.information_about_person {
  margin-bottom: 241px;
}

/*single_program*/
.single_program h1 {
  font-weight: bold;
  font-size: clamp(1.75rem, 1.15rem + 1.2vw, 2.5rem);
  line-height: 1.2;
}

.single_program h2 {
  font-weight: bold;
}

.section_program_main {
  position: relative;
  padding-bottom: 5rem;
  overflow: visible;
  margin-top: 1.5rem;
}

/* Program hero — mobile / tablet refinements */
@media (max-width: 1199.98px) {
  .section_program_main {
    padding-bottom: 2.5rem;
    margin-top: 1rem;
    overflow: visible;
  }
  .section_program_main .information_side {
    max-width: 100%;
    margin: 0;
    padding: 0;
  }
  .section_program_main .main_title h1,
  .section_program_main .single_program h1 {
    font-size: clamp(1.375rem, 4.5vw, 1.75rem);
    line-height: 1.15;
    margin: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
  .section_program_main .general_info {
    padding: 0 !important;
    margin-bottom: 1.25rem;
  }
  .section_program_main .general_info > .row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.85rem 1rem;
    margin-left: 0;
    margin-right: 0;
    width: 100%;
  }
  .section_program_main .general_info .info_item {
    flex: none;
    width: auto;
    max-width: none;
    padding: 0;
    margin-bottom: 0;
    min-width: 0;
  }
  .section_program_main .general_info .item_offer_card_body_sub__title {
    font-size: 0.6875rem;
    line-height: 1.2;
    margin-bottom: 0.2rem;
    letter-spacing: 0.02em;
  }
  .section_program_main .general_info .item_offer_card_body__title {
    font-size: 0.875rem !important;
    line-height: 1.3 !important;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
  }
  .section_program_main .price_date_info {
    padding: 0 !important;
    margin-bottom: 1rem !important;
  }
  .section_program_main .price_date_info > .row {
    margin-left: 0;
    margin-right: 0;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
  }
  .section_program_main .price_date_info .info_item {
    flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
    padding: 0;
    margin: 0;
  }
  .section_program_main .price_date_card {
    width: 100%;
    max-width: 100%;
    min-height: 4.75rem;
    height: auto;
    padding: 0.95rem 2.75rem 0.95rem 1.15rem;
    border-radius: 28px;
    box-sizing: border-box;
    justify-content: center;
  }
  .section_program_main .price_date_card .item_offer_card_body_sub__title {
    font-size: 0.6875rem;
    line-height: 1.2;
    margin-bottom: 0.2rem;
  }
  .section_program_main .price_date_card .item_offer_card_body__title {
    font-size: 1.0625rem !important;
    line-height: 1.25 !important;
    font-weight: bold;
    padding-right: 0.25rem;
    word-wrap: break-word;
  }
  .section_program_main .item_offer_card_body_position .price_date_card:before,
  .single .section_program_main .item_offer_card_body_position:nth-child(1) .price_date_card:before,
  .single .section_program_main .item_offer_card_body_position:nth-child(2) .price_date_card:before {
    right: 1rem;
    top: 0.85rem;
  }
  .section_program_main .scholarships,
  .single .section_program_main .scholarships {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 0.45rem 0.85rem;
    padding: 0.85rem 0;
    margin-bottom: 1.5rem !important;
  }
  .section_program_main .scholarships .info_title {
    flex: 0 0 auto;
    font-size: 0.8125rem;
    line-height: 1.3;
    white-space: nowrap;
  }
  .section_program_main .scholarships .info_title img {
    width: 1.25rem;
    height: auto;
    margin-right: 0.5rem;
  }
  .section_program_main .scholarships .text,
  .single .section_program_main .scholarships .text {
    flex: 1 1 10rem;
    margin-left: 0 !important;
    font-size: 0.9375rem !important;
    line-height: 1.35 !important;
    min-width: 0;
  }
  .section_program_main .image_side {
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    width: 100%;
    max-width: 100%;
    padding: 0;
  }
  /* Card-like photo: balanced radius + landscape crop (not tall 65vh strip) */
  .section_program_main .image_side .bg {
    width: 100%;
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    aspect-ratio: 4/3;
    border-radius: 28px !important;
    border-top-right-radius: 28px !important;
    border-bottom-right-radius: 28px !important;
    border-bottom-left-radius: 28px !important;
    background-size: cover;
    background-position: center 25%;
    background-repeat: no-repeat;
    overflow: hidden;
  }
}
@media (max-width: 479.98px) {
  .section_program_main .general_info > .row {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
  .section_program_main .price_date_card {
    min-height: 4.25rem;
    padding: 0.85rem 2.5rem 0.85rem 1rem;
    border-radius: 24px;
  }
  .section_program_main .scholarships .text,
  .single .section_program_main .scholarships .text {
    flex: 1 1 100%;
    font-size: 0.875rem !important;
  }
  .section_program_main .image_side .bg {
    aspect-ratio: 5/4;
    border-radius: 22px !important;
  }
}
/*specialisations — see _specialisations.scss */
/*goals — see _qualification-goals.scss */
/* .section_contact_program */
.section_contact_program {
  position: relative;
  padding: var(--section-space-y, 5rem) 0;
  margin: var(--section-space-y-lg, 5rem) 0;
  overflow: hidden;
}

.section_contact_program > .container {
  position: relative;
  z-index: 2;
}

.section_contact_program .wrapper_content {
  max-width: 396px;
  padding-right: 10%;
  width: 100%;
}

.contact_program_wrapper {
  color: #fff;
  width: 100%;
  position: relative;
  z-index: 2;
  box-sizing: border-box;
}

.person_information select,
.section_contact_program textarea,
.section_contact_program input:not(.wpcf7-submit, [type=checkbox]) {
  width: 100%;
  max-width: 100%;
  border-radius: 17px;
  background-color: #fff;
  padding: 10px 22px;
  font-size: 16px;
  line-height: 19px;
  color: #A8A8A8;
  border: 1px solid #fff;
  box-sizing: border-box;
}

.person_information ::placeholder,
.person_information select,
.person_information select option:first-child[value=""] {
  color: #A8A8A8;
}

.person_information select option {
  color: #000;
}

.section_contact_program .wpcf7-acceptance .wpcf7-list-item-label {
  color: #fff;
  margin-bottom: 18px;
  display: inline-block;
  margin-left: 40px;
  margin-top: -22px;
  padding-right: 5%;
  font-size: 14px;
}

.person_information select:focus-visible,
.section_contact_program textarea:focus-visible,
.section_contact_program input:not(.wpcf7-submit, [type=checkbox]):focus-visible {
  outline: #2994FF auto 1px;
}

.section_contact_program .wpcf7-submit {
  font-size: 16px;
  line-height: 19px;
  font-weight: bold;
  display: inline-flex;
  height: 37px;
  align-items: center;
  justify-content: center;
  border-radius: 34px;
  border: 1px solid #1F1B51;
  background-color: #1F1B51;
  color: #fff;
  width: 216px;
  max-width: 100%;
  cursor: pointer;
  position: relative;
  z-index: 5;
  margin: 0.5rem 0 0;
  float: none;
  clear: both;
}

.section_contact_program:before {
  position: absolute;
  content: "";
  right: 0;
  top: 0;
  height: 100%;
  width: 68%;
  border-radius: 80px 0 0 80px; /* keep form clear of left curve */
  background-color: #2994FF;
  z-index: 1;
}

.section_contact_program .contact_program_intro,
.section_contact_program .contact_program_form {
  display: flex;
  align-items: center;
}

.section_contact_program .contact_program_row {
  position: relative;
  z-index: 2;
  align-items: stretch !important;
}

.section_contact_program .contact_program_wrapper > .description {
  margin-bottom: 1.5rem !important;
}

/* Desktop: pad form off blue panel curve */
@media (min-width: 992px) {
  .section_contact_program .contact_program_form {
    padding-left: clamp(2.5rem, 5vw, 4.5rem);
    padding-right: 0.5rem;
    box-sizing: border-box;
  }
  .section_contact_program .contact_program_wrapper {
    padding: 1.25rem 1rem 1.25rem clamp(1.25rem, 3vw, 2.5rem);
    max-width: 100%;
  }
  .section_contact_program .wpcf7-form > p {
    margin-left: 0;
    margin-right: 0;
  }
  .section_contact_program .wpcf7-submit {
    margin-left: 0 !important;
    position: relative;
    left: auto;
    transform: none;
  }
  .section_contact_program .wpcf7-acceptance .wpcf7-list-item-label {
    margin-left: 2rem;
    padding-right: 0;
  }
}
/* Below lg: stacked full-bleed blue card */
@media (max-width: 991.98px) {
  .section_contact_program {
    padding: 2.75rem 1.5rem;
    margin: var(--section-space-y, 3rem) 0;
  }
  .section_contact_program:before {
    width: 100%;
    left: 0;
    right: 0;
    border-radius: 56px;
  }
  .section_contact_program .contact_program_row {
    margin-left: 0;
    margin-right: 0;
  }
  .section_contact_program .contact_program_intro,
  .section_contact_program .contact_program_form,
  .section_contact_program > .container > .row > [class*=col-] {
    flex: 0 0 100%;
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
  .section_contact_program .wrapper_content {
    max-width: none;
    padding-right: 0;
    margin-bottom: 2rem;
  }
  .section_contact_program .contact_program_intro {
    align-items: flex-start;
  }
  .section_contact_program .contact_program_wrapper {
    padding: 0;
  }
  .section_contact_program .section_title {
    font-size: clamp(1.5rem, 5vw, 2rem);
    line-height: 1.25;
    margin-bottom: 1rem;
  }
  .section_contact_program a,
  .section_contact_program h2,
  .section_contact_program h3,
  .section_contact_program .description,
  .section_contact_program .wrapper_content,
  .section_contact_program .wrapper_content p,
  .section_contact_program .wrapper_content .description {
    color: #fff !important;
    font-size: inherit;
    line-height: 1.45;
  }
  .section_contact_program .footer_contact a {
    color: #fff !important;
  }
  .section_contact_program .contact_program_wrapper > .description {
    margin-bottom: 1.25rem !important;
    font-size: 1.05rem;
    line-height: 1.4;
  }
  .section_contact_program .wpcf7-form p {
    margin-bottom: 0.85rem;
  }
  .section_contact_program .wpcf7-acceptance {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-top: 0.5rem;
    margin-bottom: 1rem;
  }
  .section_contact_program .wpcf7-acceptance .wpcf7-list-item {
    margin: 0;
  }
  .section_contact_program .wpcf7-acceptance .wpcf7-list-item-label {
    margin: 0;
    padding: 0;
    display: block;
    line-height: 1.4;
    font-size: 13px;
  }
  .section_contact_program .wpcf7-submit {
    width: 100%;
    height: 44px;
    margin-top: 0.25rem;
  }
  .section_contact_program textarea,
  .section_contact_program input:not(.wpcf7-submit, [type=checkbox]) {
    padding: 12px 16px;
    font-size: 16px;
  }
}
@media (max-width: 575.98px) {
  .section_contact_program {
    padding: 2rem 1rem;
    margin: var(--section-space-y-sm, 2.5rem) 0;
  }
  .section_contact_program:before {
    border-radius: 32px;
  }
  .section_contact_program .wrapper_content {
    margin-bottom: 1.5rem;
  }
}
@media (min-width: 1200px) {
  .section_contact_program:before {
    width: 68%;
    border-radius: 96px 0 0 96px;
  }
  .section_contact_program .contact_program_form {
    padding-left: clamp(3rem, 5vw, 5rem);
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .section_contact_program {
    padding: 4rem 0;
    margin: 5rem 0;
  }
  .section_contact_program:before {
    width: 64%;
    border-radius: 72px 0 0 72px;
  }
  .section_contact_program .wrapper_content {
    max-width: none;
    padding-right: 1.5rem;
  }
  .section_contact_program .wpcf7-acceptance .wpcf7-list-item-label {
    margin-left: 2rem;
    padding-right: 0;
    font-size: 13px;
  }
}
/*how to apply*/
.how_apply_section {
  position: relative;
  background-color: #EEF7FF;
  padding: var(--section-space-y, 5rem) 0;
}

.single-programs .how_apply_section {
  background-color: transparent;
}

.how_apply_section:before {
  position: absolute;
  content: "";
  z-index: -2;
  background-color: #EEF7FF;
}

.apply_item {
  max-width: 400px;
  margin: 2rem auto;
}

.apply_item_content {
  position: relative;
  z-index: 2;
}

.apply_item_image {
  position: relative;
  border-radius: 50%;
  height: 241px;
  width: 241px;
  margin-top: 5rem;
  margin-bottom: 10rem;
  margin-right: auto;
  margin-left: auto;
  /* Photo sits above blobs so they tuck under the circle */
  z-index: 2;
}

.apply_item_image_wrapper {
  position: relative;
  margin-right: auto;
  margin-left: auto;
  max-width: 350px;
  overflow: visible;
}

.apply_item_image_wrapper .icon_item {
  position: absolute;
  content: "";
  width: auto;
  z-index: 1;
  pointer-events: none;
}

.apply_item_image_wrapper .icon_one {
  left: 0;
  top: -3rem;
}

.apply_item_image_wrapper .icon_two {
  right: 2rem;
  bottom: -3rem;
}

.apply_item_col:nth-child(2) .apply_item_image_wrapper .icon_two {
  left: 3rem;
  top: -3rem;
  right: auto;
  bottom: auto;
  transform: rotate(180deg);
}

.apply_item_col:nth-child(2) .apply_item_image_wrapper .icon_one {
  left: auto;
  top: auto;
  right: 0;
  bottom: -2rem;
  transform: rotate(180deg);
}

.apply_item_col:nth-child(3) .apply_item_image_wrapper .icon_one {
  transform: rotate(160deg);
  left: 2rem;
}

.apply_item_col:nth-child(3) .apply_item_image_wrapper .icon_two {
  transform: rotate(240deg);
  bottom: -2rem;
  right: 3rem;
}

.apply_item_title {
  font-weight: bold;
}

.apply_item_content .number {
  position: absolute;
  content: "";
  font-size: 10rem;
  font-weight: bold;
  color: #fff;
  left: -4rem;
  top: 2rem;
  z-index: 1;
}

.single-programs .apply_item_content .number {
  color: #EEF7FF;
}

@media (min-width: 1681px) {
  .apply_item_content .number {
    font-size: 15rem;
  }
}
.apply_item_text,
.apply_item_title {
  color: #1F1B51;
  font-size: 24px;
  line-height: 29px;
  position: relative;
  z-index: 2;
}

.how_apply_section .bottom_description {
  color: #1F1B51;
  font-size: clamp(1.5rem, 1.05rem + 1.1vw, 2.35rem);
  line-height: 1.22;
  font-weight: bold;
  text-align: center;
  margin-top: 5rem;
}

.how_apply_section .bottom_description strong {
  color: #2994FF;
}

@media (max-width: 991.98px) {
  .how_apply_section {
    margin-bottom: var(--section-space-y) !important;
  }
  .how_apply_section .section_title.mb-5 {
    margin-bottom: var(--section-space-y-sm) !important;
  }
  .apply_item {
    margin: 1.25rem auto;
  }
  .apply_item_image {
    width: 200px;
    height: 200px;
    margin-top: 3rem;
    margin-bottom: 3.5rem;
  }
  .apply_item_image_wrapper {
    max-width: 280px;
  }
  .apply_item_image_wrapper .icon_item {
    z-index: 1;
  }
  .apply_item_image_wrapper .icon_one {
    top: -2rem;
    left: -0.25rem;
  }
  .apply_item_image_wrapper .icon_two {
    right: 0.5rem;
    bottom: -2rem;
  }
  .apply_item_col:nth-child(2) .apply_item_image_wrapper .icon_two {
    left: 0.75rem;
    top: -2rem;
  }
  .apply_item_col:nth-child(2) .apply_item_image_wrapper .icon_one {
    bottom: -1.75rem;
    right: -0.15rem;
  }
  .apply_item_col:nth-child(3) .apply_item_image_wrapper .icon_two {
    bottom: -1.75rem;
    right: 1rem;
  }
  .apply_item_content .number {
    font-size: 5rem;
    left: auto;
    right: 0.25rem;
    top: 0;
    line-height: 1;
    opacity: 0.45;
    pointer-events: none;
  }
  .how_apply_section .bottom_description {
    margin-top: var(--section-space-y);
    font-size: 1.5rem;
    line-height: 1.3;
  }
}
@media (max-width: 767.98px) {
  .how_apply_section {
    margin-bottom: var(--section-space-y-sm) !important;
    padding-top: 2.25rem;
    padding-bottom: 2.25rem;
    overflow: visible;
  }
  .how_apply_section .how_apply_wrapper,
  .how_apply_section .row,
  .how_apply_section .apply_item_col,
  .how_apply_section .apply_item,
  .how_apply_section .apply_item_image_wrapper {
    overflow: visible;
  }
  .how_apply_section .section_title {
    font-size: 1.25rem !important;
    line-height: 1.3 !important;
  }
  .how_apply_section .section_title.mb-5 {
    margin-bottom: 0.75rem !important;
  }
  .apply_item {
    margin: 0.5rem auto 1.75rem;
    max-width: 20rem;
  }
  .apply_item_image_wrapper {
    max-width: 220px;
    /* No extra padding — blobs are absolute overlays, not flow spacers */
    padding: 0;
  }
  .apply_item_image {
    width: 180px;
    height: 180px;
    /* Only enough margin for blob overhang (like desktop, scaled down) */
    margin-top: 2.25rem;
    margin-bottom: 2.5rem;
    z-index: 2;
  }
  .apply_item_image_wrapper .icon_item {
    z-index: 1; /* under photo — desktop composition */
  }
  .apply_item_image_wrapper .icon_item img {
    max-width: 88px;
    height: auto;
    display: block;
  }
  .apply_item_image_wrapper .icon_one {
    top: -1.75rem;
    left: -0.35rem;
  }
  .apply_item_image_wrapper .icon_two {
    right: -0.15rem;
    bottom: -1.75rem;
  }
  .apply_item_col:nth-child(2) .apply_item_image_wrapper .icon_two {
    left: -0.15rem;
    top: -1.75rem;
    right: auto;
    bottom: auto;
  }
  .apply_item_col:nth-child(2) .apply_item_image_wrapper .icon_one {
    left: auto;
    top: auto;
    right: -0.15rem;
    bottom: -1.5rem;
  }
  .apply_item_col:nth-child(3) .apply_item_image_wrapper .icon_one {
    left: 0.35rem;
    top: -1.75rem;
  }
  .apply_item_col:nth-child(3) .apply_item_image_wrapper .icon_two {
    bottom: -1.5rem;
    right: 0.35rem;
  }
  .apply_item_content {
    position: relative;
    overflow: visible;
    padding-top: 0;
    text-align: center;
    max-width: 18rem;
    margin-left: auto;
    margin-right: auto;
  }
  .apply_item_content .number {
    font-size: 4.5rem;
    left: 50%;
    right: auto;
    top: -0.55rem;
    transform: translateX(-50%);
    line-height: 1;
    opacity: 0.35;
    pointer-events: none;
    z-index: 0;
  }
  .apply_item_text,
  .apply_item_title {
    font-size: 0.9375rem;
    line-height: 1.4;
    position: relative;
    z-index: 2;
    text-align: center;
  }
  .apply_item_title {
    margin-bottom: 0.35rem;
  }
  .how_apply_section .bottom_description {
    margin-top: 0.5rem;
    font-size: 1.125rem;
    line-height: 1.35;
  }
}
@media (max-width: 479.98px) {
  .apply_item {
    max-width: 18rem;
  }
  .apply_item_image {
    width: 160px;
    height: 160px;
    margin-top: 2rem;
    margin-bottom: 2.25rem;
  }
  .apply_item_image_wrapper {
    max-width: 200px;
  }
  .apply_item_image_wrapper .icon_item img {
    max-width: 72px;
  }
  .apply_item_image_wrapper .icon_one {
    top: -1.5rem;
  }
  .apply_item_image_wrapper .icon_two {
    bottom: -1.5rem;
  }
  .apply_item_col:nth-child(2) .apply_item_image_wrapper .icon_two {
    top: -1.5rem;
  }
  .apply_item_col:nth-child(2) .apply_item_image_wrapper .icon_one,
  .apply_item_col:nth-child(3) .apply_item_image_wrapper .icon_two {
    bottom: -1.35rem;
  }
}
/*modulus_section*/
.modulus_section {
  margin-bottom: 90px;
}

.modul_item {
  background-color: #EEF7FF;
  padding-bottom: 100px;
  padding-top: 60px;
  padding-left: 10%;
  padding-right: 5%;
  height: 100%;
}

.modulus_section .section_title {
  margin-bottom: 2rem;
}

.download_btn_wrapper {
  margin-bottom: 30px;
}

.download_btn {
  background-color: #1F1B51;
  color: #FFFFFF;
  padding: 8px 10px;
  border-radius: 35px;
  text-decoration: none;
  transition: 0.3s ease;
  width: 100%;
  max-width: 233px;
  margin-left: auto;
  margin-right: auto;
  font-weight: bold;
  display: block;
  text-align: center;
}

.download_btn:hover {
  color: #FFFFFF;
  background-color: rgba(31, 27, 81, 0.9);
}

@media (min-width: 991px) {
  .modul_card:first-child .modul_item {
    border-top-left-radius: 80px;
    border-bottom-left-radius: 80px;
  }
  .modul_card:last-child .modul_item {
    border-top-right-radius: 80px;
    border-bottom-right-radius: 80px;
  }
  .modul_card:nth-child(2) {
    padding: 0;
  }
}
.modulus_section ul {
  columns: 1;
  -webkit-columns: 1;
  -moz-columns: 1;
}

.modulus_section ul li {
  line-height: 24px;
}

/*why_program_section*/
.why_program_section {
  padding-top: clamp(2.5rem, 6vw, 6.5rem);
  padding-bottom: clamp(2.5rem, 6vw, 6rem);
}

.why_program_section > .container > .section_title {
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: clamp(1.5rem, 4vw, 3rem) !important;
}

.why_program_list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1.75rem 1.25rem;
  align-items: start;
  justify-content: stretch;
}

.why_program_item {
  width: 100% !important;
  max-width: none !important;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.why_program_list .image_wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 140px;
  min-height: 0;
  margin: 0 auto 1rem;
  aspect-ratio: 1;
  flex-shrink: 0;
}

.why_program_list .image_wrapper img {
  width: 100%;
  max-width: 140px;
  height: auto;
  object-fit: contain;
}

.why_program_item_title {
  font-size: clamp(0.9375rem, 1.1vw, 1.125rem);
  line-height: 1.45;
  font-weight: 400;
  margin: 0;
  text-align: center;
  max-width: 18rem;
  min-width: 0;
  width: 100%;
  overflow-wrap: break-word;
  word-break: normal;
  hyphens: manual;
}

.why_program_item_title p {
  margin: 0 0 0.5rem;
}

.why_program_item_title p:last-child {
  margin-bottom: 0;
}

/* Keep bold inline — do not force each <strong> onto its own line */
.why_program_item_title strong,
.why_program_item_title b {
  font-weight: 700;
  display: inline;
  margin: 0;
  font-size: inherit;
  line-height: inherit;
}

/* Tablet: 3 columns */
@media (max-width: 1199.98px) {
  .why_program_list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.75rem 1.5rem;
  }
  .why_program_list .image_wrapper {
    max-width: 120px;
  }
  .why_program_list .image_wrapper img {
    max-width: 120px;
  }
  .why_program_item_title {
    font-size: 1rem;
    line-height: 1.4;
    max-width: 18rem;
  }
}
/* Small tablet: 2 columns */
@media (max-width: 991.98px) {
  .why_program_list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem 1.25rem;
  }
  .why_program_item {
    align-items: flex-start;
    text-align: left;
  }
  .why_program_list .image_wrapper {
    margin-left: 0;
    margin-right: auto;
    max-width: 96px;
    margin-bottom: 0.75rem;
  }
  .why_program_list .image_wrapper img {
    max-width: 96px;
  }
  .why_program_item_title {
    text-align: left;
    max-width: none;
    font-size: 0.9375rem;
    line-height: 1.45;
  }
}
/* Mobile: 2 columns, larger icons */
@media (max-width: 767.98px) {
  .why_program_section {
    padding-top: 1.75rem;
    padding-bottom: 2.25rem;
  }
  .why_program_section > .container > .section_title,
  .why_program_section .section_title {
    font-size: 1.25rem !important;
    line-height: 1.25 !important;
    margin-bottom: 1.25rem !important;
    padding-left: 0.15rem;
    padding-right: 0.15rem;
  }
  .why_program_list {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    flex-direction: unset;
    gap: 1.35rem 1rem;
    max-width: none;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
  .why_program_item {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100% !important;
    max-width: none !important;
    gap: 0.55rem;
  }
  .why_program_list .image_wrapper {
    width: 72px !important;
    max-width: 72px !important;
    margin: 0 auto !important;
    aspect-ratio: 1;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .why_program_list .image_wrapper img {
    width: 100%;
    max-width: 72px;
    height: auto;
    display: block;
    object-fit: contain;
  }
  .why_program_item_title,
  .why_program_item > :not(.image_wrapper) {
    display: block !important;
    width: 100% !important;
    max-width: none !important;
    flex: none !important;
    text-align: center;
    font-size: 0.8125rem !important;
    line-height: 1.4 !important;
    margin: 0;
  }
  .why_program_item_title strong,
  .why_program_item_title b {
    display: inline;
    margin: 0;
    font-size: inherit;
    line-height: inherit;
    font-weight: 700;
  }
  .why_program_item_title p {
    margin: 0 0 0.25rem;
  }
  .why_program_item_title p:last-child {
    margin-bottom: 0;
  }
}
@media (max-width: 479.98px) {
  .why_program_section > .container > .section_title,
  .why_program_section .section_title {
    font-size: 1.125rem !important;
  }
  .why_program_list {
    gap: 1.15rem 0.75rem;
    padding-left: 0;
    padding-right: 0;
  }
  .why_program_list .image_wrapper {
    width: 64px !important;
    max-width: 64px !important;
  }
  .why_program_list .image_wrapper img {
    max-width: 64px;
  }
  .why_program_item_title,
  .why_program_item > :not(.image_wrapper) {
    font-size: 0.75rem !important;
    line-height: 1.4 !important;
  }
}
/*career_paths_section*/
.career_paths_section {
  position: relative;
}

.career_paths_section .cooperation__list_logos img {
  filter: grayscale(1);
}

.career_paths_section .cooperation__list_logos img:hover {
  filter: grayscale(0);
}

.career_paths_section .description {
  margin-bottom: 64px;
  max-width: 948px;
  font-size: clamp(1rem, 1.5vw, 1.5rem);
  line-height: 1.45;
  margin-left: auto;
  margin-right: auto;
}

/* Cards grid */
.career_paths_cards {
  margin-top: 32px;
  margin-bottom: 4rem;
  display: grid;
  gap: 6px;
}

/* 3+ items */
.career_paths_cards.is-three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

/* Exactly 2 items -> centered 2 columns */
.career_paths_cards.is-two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 100%;
  padding: 0 2rem;
  margin-left: auto;
  margin-right: auto;
}

/* Exactly 1 item -> centered single card */
.career_paths_cards.is-one {
  grid-template-columns: 1fr;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

/* Card */
.career_paths_card {
  background: #fff;
  border-radius: 32px;
  padding: 1rem;
  text-align: left;
}

.career_paths_card__title {
  margin: 0 0 10px;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.3;
  color: #111;
}

.career_paths_card__text {
  font-size: 22px;
  line-height: 1.4;
  color: #000;
}

.career_paths_card__text p {
  margin: 0 0 10px;
}

.career_paths_card__text p:last-child {
  margin-bottom: 0;
}

/* Responsive */
@media (max-width: 991px) {
  .career_paths_cards.is-three {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .career_paths_cards.is-two {
    max-width: 100%;
  }
}
@media (max-width: 767.98px) {
  .career_paths_section {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .career_paths_section .section_title,
  .single_program .career_paths_section .section_title {
    font-size: 1.25rem !important;
    line-height: 1.25 !important;
    margin-bottom: 0.75rem !important;
    padding-left: 0.15rem;
    padding-right: 0.15rem;
  }
  .career_paths_section .description,
  .single_program .career_paths_section .description {
    font-size: 0.875rem !important;
    line-height: 1.5 !important;
    margin-bottom: 1.25rem;
    text-align: left;
    max-width: none;
    padding: 0 0.15rem;
  }
  .career_paths_section .description p,
  .single_program .career_paths_section .description p {
    font-size: inherit !important;
    line-height: inherit !important;
    margin-bottom: 0.65rem;
  }
  .career_paths_section .description p:last-child {
    margin-bottom: 0;
  }
  .career_paths_cards,
  .career_paths_cards.is-three,
  .career_paths_cards.is-two,
  .career_paths_cards.is-one {
    grid-template-columns: 1fr;
    max-width: 100%;
    gap: 16px;
    margin-bottom: 1.5rem;
  }
  .career_paths_card {
    padding: 18px 16px;
  }
  .career_paths_card__title {
    font-size: 1rem;
  }
  .career_paths_card__text {
    font-size: 0.875rem;
  }
  /* Full-bleed salary band */
  .career_paths_section > .container {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .career_paths_section > .container > .section_title,
  .career_paths_section > .container > .description,
  .career_paths_section > .container > .career_paths_cards {
    padding-left: 1.15rem;
    padding-right: 1.15rem;
  }
  .career_paths_section .parallax-section {
    min-height: 180px;
    padding: 1.25rem 1rem;
    border-radius: 28px 28px 0 0;
    width: 100%;
    max-width: none;
  }
  .career_paths_text {
    font-size: 0.8125rem !important;
    line-height: 1.4 !important;
  }
  .career_paths_text span {
    display: block;
    padding: 0.15rem 0;
  }
}
@media (max-width: 479.98px) {
  .career_paths_section .section_title,
  .single_program .career_paths_section .section_title {
    font-size: 1.125rem !important;
  }
  .career_paths_section .description,
  .single_program .career_paths_section .description {
    font-size: 0.8125rem !important;
    line-height: 1.5 !important;
  }
  .career_paths_section .parallax-section {
    border-radius: 24px 24px 0 0;
    padding: 1.1rem 0.85rem;
    min-height: 160px;
  }
  .career_paths_text {
    font-size: 0.75rem !important;
    line-height: 1.4 !important;
  }
}
.career_paths_wrapper {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  overflow: hidden;
  position: relative;
}

.career_paths_section .parallax-section {
  height: auto;
  min-height: clamp(220px, 28vw, 274px);
  border-radius: clamp(32px, 5vw, 64px);
  padding: clamp(1.75rem, 4vw, 3rem) clamp(1.25rem, 4vw, 3rem);
  box-sizing: border-box;
}

.career_paths_wrapper .parallax-image:before {
  width: 100%;
  height: 100%;
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  background-color: rgba(31, 27, 81, 0.52);
  z-index: 0;
}

.career_paths_text {
  font-size: clamp(1.125rem, 2vw, 1.625rem);
  line-height: 1.35;
  color: #fff;
  font-weight: bold;
  width: 100%;
  max-width: 56rem;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.career_paths_text span {
  padding: 0.25rem 0.5em;
  display: inline-block;
}

.career_paths_item:last-child .career_paths_text,
.career_paths_item:first-child .career_paths_text {
  background-color: #1F1B51;
  color: #FFFFFF;
}

/*faculty_expertise_section*/
.faculty_expertise_section {
  padding-top: 0;
  padding-bottom: 0;
}

.faculty_expertise_section > .faculty_expertise {
  padding-top: var(--section-space-y, 3rem);
  padding-bottom: var(--section-space-y, 3rem);
}

.single-programs .faculty_expertise_section {
  padding: 4rem 0 6rem 0;
}

.faculty_expertise_list {
  width: 100%;
  overflow: visible;
}

.faculty_expertise_item {
  width: 100%;
  max-width: 100%;
  margin-bottom: 30px;
  overflow: visible;
}

.faculty_expertise_section .section_title,
.faculty_expertise_section .description {
  max-width: 100%;
  padding-right: 15px;
  padding-left: 15px;
}

/* Sizing — see _faculty-expertise.scss */
.faculty_expertise_section .description {
  max-width: 100%;
}

@media (min-width: 768px) {
  .faculty_expertise_section .description {
    max-width: 948px;
  }
}
.faculty_expertise_section .management .faculty_expertise_list .faculty_expertise_col:first-child,
.faculty_expertise_section .advisory-board .faculty_expertise_list .faculty_expertise_col:first-child {
  width: 100%;
  flex: 0 0 100%;
  max-width: 100%;
}

@media (max-width: 481px) {
  .faculty_expertise_section .advisory-board .faculty_expertise_col:first-child .faculty_expertise_item,
  .faculty_expertise_section .management .faculty_expertise_col:first-child .faculty_expertise_item {
    max-width: 50%;
    margin: 0 auto;
  }
  .munich_team_header .bg {
    max-width: 220px;
    height: 220px;
  }
  .munich_team_header {
    padding: 3rem 1rem;
  }
  .news_last_item img {
    margin-bottom: 2rem;
  }
}
.faculty_expertise_section .management .faculty_expertise_item,
.faculty_expertise_section .advisory-board .faculty_expertise_item {
  margin-left: auto;
  margin-right: auto;
  max-width: 260px;
}

body.team .faculty_expertise:nth-child(odd) {
  background-color: #EEF7FF;
}

/* Avoid fixed header clipping the first row when jumping to #anchors */
body.team .faculty_expertise {
  scroll-margin-top: calc(var(--header-offset, 110px) + var(--header-bar, 30px) + 1rem);
}

/*study_plan — see _study-plan.scss */
/*curriculum_section*/
.curriculum_section {
  padding-top: 60px;
  padding-bottom: 140px;
  background-color: #F5F5F5;
}

.curriculum {
  display: flex;
  justify-content: center;
}

.curriculum_item {
  width: 100%;
  max-width: 398px;
  border-radius: 16px;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  font-size: 1.15rem;
  line-height: 1.813rem;
  padding: 30px;
  margin: 16px 8px;
}

.curriculum_item p {
  margin-bottom: 0;
}

/*admissions_section*/
.admissions_section .custom_btn a,
.admissions_section h2 {
  color: #FFFFFF;
}

.admissions_section .parallax-section {
  height: 100%;
  min-height: 630px;
  border-radius: 148px;
}

.admissions_section .parallax-image {
  /* height sized by mudt parallax JS */
}

.admissions_section .parallax-image:before {
  width: 100%;
  height: 100%;
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  background-color: rgba(31, 27, 81, 0.47);
  z-index: 0;
}

.admissions_section .bg {
  min-height: 432px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 128px;
  overflow: hidden;
  position: relative;
}

.admissions_section .bg:before {
  width: 100%;
  height: 100%;
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  background-color: rgba(31, 27, 81, 0.52);
  z-index: 0;
}

.admissions_section .custom_btn a {
  background-color: #2994FF;
  border: 3px solid #2994FF;
}

.admissions_container {
  width: 100%;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  padding: 60px 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.admissions_wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.admissions_container .custom_btn a {
  font-size: 28px;
  line-height: 34px;
  font-weight: 700;
  padding: 0 1.5rem;
  width: 100%;
  height: 65px;
  margin-top: 5rem;
}

.primary-button {
  position: relative;
  border: 3px solid #2994FF;
  border-radius: 34px;
  padding: 0 1.5rem;
  height: 65px;
  overflow: hidden;
  background: #2994FF;
  color: #ffffff;
  font-size: 28px;
  line-height: 34px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.primary-button:hover {
  cursor: pointer;
  background: transparent;
  border: 3px solid #0197f6;
  color: #2994FF;
}

.primary-button .round {
  border-radius: 50%;
  background: #fff;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  animation: scale-down 0.85s forwards;
}

.primary-button.animate .round {
  animation: scale-up 0.85s forwards;
}

@keyframes scale-up {
  to {
    transform: scale(600);
  }
}
@keyframes scale-down {
  from {
    transform: scale(600);
  }
  to {
    ransform: scale(0);
  }
}
/*who_should_apply_section*/
.who_should_apply_section {
  padding: 48px 0;
}

.who_apply {
  display: flex;
  gap: 48px;
  align-items: flex-start;
}

.who_apply__left {
  flex: 0 0 42%;
  max-width: 42%;
}

.who_apply__right {
  flex: 1;
  min-width: 0;
}

.who_apply__title {
  margin: 0 0 6px;
  font-size: 44px;
  line-height: 1.05;
  font-weight: 800;
  color: #111;
  letter-spacing: -0.02em;
}

.who_apply__subtitle {
  margin: 0;
  font-size: 18px;
  line-height: 1.5;
  color: #444;
}

.who_apply__content p,
.who_apply__content li {
  margin: 0 0 14px;
  font-size: 18px;
  line-height: 1.55;
  color: #5b5b5b;
}

.who_apply__content p:last-child {
  margin-bottom: 0;
}

.who_apply__content strong {
  font-weight: 800;
  color: #5b5b5b;
}

/* Responsive */
@media (max-width: 992px) {
  .who_apply {
    gap: 28px;
  }
  .who_apply__title {
    font-size: 38px;
  }
}
@media (max-width: 768px) {
  .who_apply {
    flex-direction: column;
  }
  .who_apply__left,
  .who_apply__right {
    max-width: 100%;
  }
  .who_apply__title {
    font-size: 34px;
  }
  .who_apply__content p {
    font-size: 16.5px;
  }
}
/*admission_requirements_section*/
.admission_requirements_section {
  padding: 80px 0;
}

.admission_requirements_section:before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #F5F5F5;
  z-index: -1;
}

.admission_requirements_wrapper {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

.admission_requirements__title {
  font-weight: 700;
  font-size: 44px;
  line-height: 1.1;
  margin: 0 0 10px;
}

.admission_requirements__subtitle {
  margin: 0 auto 34px;
  max-width: 760px;
  font-size: 22px;
  line-height: 1.5;
  color: #000;
}

.admission_requirements__content {
  max-width: 760px;
  margin: 0 auto;
  text-align: left;
  color: #666;
  font-size: 18px;
  line-height: 1.3;
}

.admission_requirements__content ol {
  margin: 0;
  padding-left: 22px;
}

.admission_requirements__content li {
  margin: 14px 0;
}

.admission_requirements__content p {
  margin: 10px 0;
}

/* Responsive */
@media (max-width: 991px) {
  .admission_requirements_section {
    padding: 60px 0;
  }
  .admission_requirements__title {
    font-size: 2rem;
  }
}
@media (max-width: 767px) {
  .admission_requirements_section {
    padding: 44px 0;
  }
  .admission_requirements__title {
    font-size: 30px;
  }
  .admission_requirements__subtitle {
    margin-bottom: 24px;
    font-size: 15px;
  }
  .admission_requirements__content {
    font-size: 14px;
  }
}
.section_program_structure {
  padding: 80px 0;
}

.program_structure {
  max-width: 1040px;
  margin: 0 auto;
}

.program_structure__title {
  margin: 0 0 12px;
  text-align: center;
  font-weight: 700;
  font-size: 44px;
  line-height: 1.1;
}

.program_structure__subtitle {
  margin: 0 auto 46px;
  max-width: 820px;
  text-align: center;
}

.program_structure__subtitle p {
  font-size: 22px;
  line-height: 1.4;
  color: #000;
}

.program_structure__cols {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 56px;
  align-items: start;
}

.program_structure__col_title {
  margin: 0 0 14px;
  font-weight: 700;
  font-size: 28px;
  line-height: 1.3;
  color: #000;
}

.program_structure__col_text p {
  font-size: 18px;
  line-height: 1.75;
  color: #000;
}

.program_structure__col_text p {
  margin: 0 0 12px;
}

.program_structure__col_text p:last-child {
  margin-bottom: 0;
}

.program_structure__col_text ul,
.program_structure__col_text ol {
  margin: 12px 0 0;
  padding-left: 18px;
}

.program_structure__col_text li {
  margin: 6px 0;
}

/* Responsive */
@media (max-width: 991px) {
  .section_program_structure {
    padding: 60px 0;
  }
  .program_structure__title {
    font-size: 2rem;
  }
  .program_structure__cols {
    gap: 34px;
  }
}
@media (max-width: 767px) {
  .section_program_structure {
    padding: 44px 0;
  }
  .program_structure__title {
    font-size: 30px;
  }
  .program_structure__subtitle p {
    margin-bottom: 28px;
    font-size: 15px;
  }
  .program_structure__cols {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .program_structure__col_title p {
    font-size: 17px;
  }
  .program_structure__col_text p {
    font-size: 14px;
  }
}
/* =========================
   FAQ
   ========================= */
.faq-question:hover .faq-question-text {
  opacity: 0.9;
}

.faq-question:focus {
  outline: none;
}

.faq-question:focus-visible {
  outline: 2px solid #111;
  outline-offset: 2px;
}

.faq-section {
  padding: 40px 0;
}

.faq-title {
  font-size: 72px;
  line-height: 1;
  font-weight: 400;
  margin: 0 0 22px;
  letter-spacing: -0.02em;
  color: #111;
}

/* Accordion wrapper */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* Item */
.faq-item {
  background: #f5f5f5;
  border: 1px solid #e6e6e6;
  border-radius: 2px;
  overflow: hidden;
}

/* Question row */
.faq-question {
  width: 100%;
  background: transparent;
  border: 0;
  padding: 22px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  text-align: left;
}

.faq-question-text {
  font-size: 24px;
  font-weight: 500;
  line-height: 1.3;
  color: #151515;
}

/* + / - */
.faq-icon {
  font-size: 1.5rem;
  line-height: 1;
  font-weight: 400;
  color: #151515;
  min-width: 22px;
  text-align: right;
  user-select: none;
}

/* Answer */
.faq-answer {
  border-top: 1px solid #e6e6e6;
}

.faq-answer-inner {
  padding: 18px 26px 26px;
  font-size: 18px;
  line-height: 1.75;
  color: #7a7a7a;
  max-width: 980px;
}

.faq-answer-inner p {
  margin: 0 0 12px;
}

.faq-answer-inner p:last-child {
  margin-bottom: 0;
}

.faq-answer-inner ul {
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.faq-answer-inner li {
  position: relative;
  padding-left: 22px;
  margin: 10px 0;
  color: #7a7a7a;
}

.faq-answer-inner li::before {
  content: "›";
  position: absolute;
  left: 0;
  top: 0;
  color: #9a9a9a;
  font-size: 18px;
  line-height: 1.2;
}

.faq-answer[hidden] {
  display: none;
}

.faq-question:hover .faq-question-text {
  opacity: 0.92;
}

.faq-question:focus {
  outline: none;
}

.faq-question:focus-visible {
  outline: 2px solid #111;
  outline-offset: 3px;
}

/* Responsive */
@media (max-width: 992px) {
  .faq-title {
    font-size: 56px;
  }
  .faq-question {
    padding: 20px 20px;
  }
  .faq-answer-inner {
    padding: 16px 20px 20px;
  }
}
@media (max-width: 768px) {
  .faq-title {
    font-size: 44px;
    margin-bottom: 18px;
  }
  .faq-question-text {
    font-size: 16px;
  }
  .faq-icon {
    font-size: 24px;
  }
}
@media (max-width: 420px) {
  .faq-title {
    font-size: 2rem;
  }
  .faq-question {
    padding: 16px 16px;
  }
  .faq-answer-inner {
    padding: 14px 16px 16px;
  }
}
/* Global type scale — laptops / MacBooks denser than 1920 desktops.
   Rem / em / clamp(...rem) type follows html font-size site-wide. */
html {
  font-size: 100%;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

/* MacBook Pro 16 / large laptop (~1512–1799 CSS px) */
@media (max-width: 1799.98px) and (min-width: 1512px) {
  html {
    font-size: 95%; /* ~15.2px */
  }
}
/* Common MacBook 13–15 / 1440-class */
@media (max-width: 1511.98px) and (min-width: 1280px) {
  html {
    font-size: 90.625%; /* ~14.5px */
  }
}
/* Smaller laptop / landscape tablet */
@media (max-width: 1279.98px) and (min-width: 992px) {
  html {
    font-size: 93.75%; /* ~15px */
  }
}