/*
  Vocacion Uandes Sitefinity fragments CSS
  Base: reverse-engineered Uandes admission design system + admision.uandes.cl patterns.
  Real-site patterns reused: #E00D34 primary red, #29343C dark neutral, 1140px container,
  image hero with dark overlay, bordered cards, 5px buttons, minimal shadows.
*/

@import url("https://fonts.googleapis.com/icon?family=Material+Icons+Outlined");

.vocacion-uandes-page .vu-section--white{
  background-color: var(--vu-white);
}

.vocacion-uandes-page {
  --vu-red: #E00D34;
  --vu-dark: #29343C;
  --vu-text: #29343C;
  --vu-muted: #626b73;
  --vu-soft: #f0f0f0;
  --vu-border: #d8d8d8;
  --vu-white: #ffffff;
  color: var(--vu-text);
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.45;
}

.vocacion-uandes-page * {
  box-sizing: border-box;
}

.vocacion-uandes-page a {
  color: inherit;
}

.vocacion-uandes-page h1,
.vocacion-uandes-page h2,
.vocacion-uandes-page h3,
.vocacion-uandes-page h4,
.vocacion-uandes-page p {
  margin-top: 0;
}

.vocacion-uandes-page h1 {
  color: var(--vu-white);
  font-size: 50px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 16px;
}

.vocacion-uandes-page h2 {
  color: var(--vu-dark);
  font-size: 28px;
  font-weight: 700;
  line-height: 1.28;
  margin-bottom: 18px;
}

.vocacion-uandes-page h3 {
  color: var(--vu-dark);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 10px;
}

.vocacion-uandes-page p {
  margin-bottom: 16px;
}

.vocacion-uandes-page .vu-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

@media (max-width: 600px) {
  .vocacion-uandes-page .vu-container {
    padding: 0 20px;
  }
}

.vocacion-uandes-page .vu-inset {
  padding: 0 15px;
}

.vocacion-uandes-page .vu-section {
  padding: 64px 0;
}

.vocacion-uandes-page .vu-section--soft {
  background-color: var(--vu-soft);
}

.vocacion-uandes-page .vu-section--dark {
  background-color: var(--vu-dark);
  color: var(--vu-white);
}

.vocacion-uandes-page .vu-section--dark h2,
.vocacion-uandes-page .vu-section--dark h3,
.vocacion-uandes-page .vu-section--dark p,
.vocacion-uandes-page .vu-section--dark li {
  color: var(--vu-white);
}

.vocacion-uandes-page .vu-section-title {
  position: relative;
}

.vocacion-uandes-page .vu-lead {
  max-width: 760px;
  color: var(--vu-muted);
  font-size: 18px;
  line-height: 1.5;
}

.vocacion-uandes-page .vu-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.vocacion-uandes-page .vu-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 44px;
  border: 1px solid var(--vu-red, #E00D34);
  border-radius: 5px;
  background-color: var(--vu-red, #E00D34);
  color: var(--vu-white, #ffffff);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
  padding: 10px 18px;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
  transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
}

.vocacion-uandes-page .vu-button:hover,
.vocacion-uandes-page .vu-button:focus {
  background-color: var(--vu-white, #ffffff);
  color: var(--vu-red, #E00D34);
}

.vocacion-uandes-page .vu-button--secondary {
  background-color: var(--vu-white);
  color: var(--vu-red);
}

.vocacion-uandes-page .vu-button--secondary:hover,
.vocacion-uandes-page .vu-button--secondary:focus {
  background-color: var(--vu-red);
  color: var(--vu-white);
}

.vocacion-uandes-page .vu-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.vocacion-uandes-page .vu-grid--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.vocacion-uandes-page .vu-grid--four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.vocacion-uandes-page .vu-grid--five {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.vocacion-uandes-page .vu-card {
  height: 100%;
  border: 1px solid var(--vu-border);
  border-radius: 5px;
  background-color: var(--vu-white);
  padding: 24px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.vocacion-uandes-page .vu-card:hover {
  border-color: var(--vu-red);
  box-shadow: 0 10px 24px rgba(41, 52, 60, 0.08);
  transform: translateY(-2px);
}

.vocacion-uandes-page .vu-card--accent {
  border-left: 5px solid var(--vu-red);
}

.vocacion-uandes-page .vu-card p:last-child {
  margin-bottom: 0;
}

.vocacion-uandes-page .vu-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 14px;
  border: 1.5px solid var(--vu-red);
  border-radius: 50%;
  color: var(--vu-red);
}

.vocacion-uandes-page .vu-card-icon .material-icons-outlined {
  font-size: 22px;
  line-height: 1;
}

.vocacion-uandes-page .vu-card-icon svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.vocacion-uandes-page .vu-card-title-min {
  min-height: 2.6em;
}

.vocacion-uandes-page .vu-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-bottom: 16px;
  border-radius: 50%;
  background-color: var(--vu-red);
  color: var(--vu-white);
  font-weight: 700;
}

.vocacion-uandes-page .vu-note-block {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  border-left: 5px solid var(--vu-red);
  background-color: var(--vu-white);
  margin-top: 28px;
  padding: 28px;
}

.vocacion-uandes-page .vu-note-block strong {
  display: block;
  color: var(--vu-red);
  font-size: 36px;
  line-height: 1;
}

.vocacion-uandes-page .vu-stat {
  border-left: 5px solid var(--vu-red);
  background-color: var(--vu-white);
  color: var(--vu-dark);
  padding: 32px;
}

.vocacion-uandes-page .vu-stat strong {
  display: block;
  color: var(--vu-red);
  font-size: 56px;
  line-height: 1;
  margin-bottom: 10px;
}

.vocacion-uandes-page .vu-stat p {
  color: var(--vu-muted);
}

.vocacion-uandes-page .vu-testimonial {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.vocacion-uandes-page .vu-testimonial-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.vocacion-uandes-page .vu-avatar {
  width: 64px;
  height: 64px;
  border: 3px solid var(--vu-red);
  border-radius: 50%;
  object-fit: cover;
}

.vocacion-uandes-page .vu-quote {
  color: var(--vu-dark);
  font-size: 17px;
  font-weight: 600;
  line-height: 1.45;
}

.vocacion-uandes-page .vu-person {
  border-top: 1px solid var(--vu-border);
  color: var(--vu-muted);
  font-size: 14px;
  margin-top: 18px;
  padding-top: 14px;
}

.vocacion-uandes-page .vu-timeline {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-top: 28px;
}

.vocacion-uandes-page .vu-timeline-item {
  position: relative;
  border-top: 3px solid var(--vu-red);
  min-height: 180px;
  padding: 24px 18px 0 0;
}

.vocacion-uandes-page .vu-timeline-item::before {
  content: "";
  position: absolute;
  top: -9px;
  left: 0;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background-color: var(--vu-red);
}

.vocacion-uandes-page .vu-timeline-item strong {
  display: block;
  color: var(--vu-dark);
  min-height: 2.5em;
  margin-bottom: 6px;
}

.vocacion-uandes-page .vu-date {
  color: var(--vu-red);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 10px;
}

.vocacion-uandes-page .vu-timeline-item > p:not(.vu-date) {
  min-height: 4.4em;
}

.vocacion-uandes-page .vu-urgency {
  display: inline-block;
  border: 1px solid var(--vu-red);
  border-radius: 5px;
  color: var(--vu-red);
  font-size: 14px;
  font-weight: 700;
  margin-top: 8px;
  padding: 4px 8px;
  white-space: nowrap;
}

.vocacion-uandes-page .vu-list {
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
}

.vocacion-uandes-page .vu-list li {
  position: relative;
  margin-bottom: 12px;
  padding-left: 18px;
}

.vocacion-uandes-page .vu-list li::before {
  content: "";
  position: absolute;
  top: 9px;
  left: 0;
  width: 6px;
  height: 6px;
  background-color: var(--vu-red);
}

.vocacion-uandes-page .vu-split {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 42px;
  align-items: center;
}

.vocacion-uandes-page .vu-media {
  min-height: 360px;
  overflow: hidden;
}

.vocacion-uandes-page .vu-media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

/* Hero pattern mirrors .uandes-25nh-cover-main from the real site. */
.vocacion-uandes-page .uandes-25nh-cover-main {
  position: relative;
  min-height: 440px;
  overflow: hidden;
  background-color: var(--vu-dark);
}

.vocacion-uandes-page .uandes-25nh-cover-main__img {
  position: absolute;
  inset: 0;
}

.vocacion-uandes-page .uandes-25nh-cover-main__img::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.38);
}

.vocacion-uandes-page .uandes-25nh-cover-main__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vocacion-uandes-page .uandes-25nh-cover-main__caption {
  position: relative;
  z-index: 2;
  max-width: 590px;
  padding: 64px 0;
  margin:0;
  padding-top: 14ch;
}

.vocacion-uandes-page .uandes-25nh-cover-main__lead {
  margin-bottom: 12px;
}

.vocacion-uandes-page .uandes-25nh-cover-main__lead h6 {
  color: var(--vu-white);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.3;
  margin: 0;
}
.uandes-25nh-cover-main__lead{
  background-color: rgba(255, 255, 255, 0)!important;
}
.uandes-25nh-cover-main__caption .uandes-25nh-cover-main__lead {
    background-color: #ffffff00;
   
}
.vocacion-uandes-page .uandes-25nh-cover-main__caption p {
  color: var(--vu-white);
  font-size: 18px;
  line-height: 1.45;
}

.vocacion-uandes-page .vu-cta {
  background-color: var(--vu-dark);
  color: var(--vu-white);
  padding: 56px 0;
  text-align: center;
}

.vocacion-uandes-page .vu-cta h2,
.vocacion-uandes-page .vu-cta p {
  color: var(--vu-white);
  margin-left: auto;
  margin-right: auto;
}

.vocacion-uandes-page .vu-cta p {
  max-width: 700px;
}

.vocacion-uandes-page .vu-cta .vu-actions {
  justify-content: center;
}

@media (max-width: 900px) {
  .vocacion-uandes-page h1 {
    font-size: 40px;
  }

  .vocacion-uandes-page .vu-grid,
  .vocacion-uandes-page .vu-grid--two,
  .vocacion-uandes-page .vu-grid--four,
  .vocacion-uandes-page .vu-grid--five,
  .vocacion-uandes-page .vu-split {
    grid-template-columns: 1fr;
  }

  .vocacion-uandes-page .vu-timeline {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .vocacion-uandes-page .vu-timeline-item {
    border-top: 0;
    border-left: 3px solid var(--vu-red);
    padding: 0 0 0 24px;
  }

  .vocacion-uandes-page .vu-timeline-item::before {
    top: 0;
    left: -9px;
  }

}

@media (max-width: 600px) {
  .vocacion-uandes-page {
    font-size: 15px;
  }

  .vocacion-uandes-page h1 {
    font-size: 32px;
    line-height: 1.12;
  }

  .vocacion-uandes-page h2 {
    font-size: 24px;
  }

  .vocacion-uandes-page .vu-section {
    padding: 44px 0;
  }

  .vocacion-uandes-page .uandes-25nh-cover-main {
    min-height: 400px;
  }

  .vocacion-uandes-page .uandes-25nh-cover-main__caption {
    padding: 48px 0;
  }

  .vocacion-uandes-page .vu-actions,
  .vocacion-uandes-page .vu-button {
    width: 100%;
  }

  .vocacion-uandes-page .vu-note-block strong,
  .vocacion-uandes-page .vu-stat strong {
    font-size: 38px;
  }
}

/* ============================================================
   EXTENSIONS — built on top of the base Vocación Uandes system
   Adds: process-status banner (2026 vigente / 2027 próximo),
   FAQ accordion, area/career tab selector, video testimonial
   cards, and small polish refinements.
   ============================================================ */

.vocacion-uandes-page .vu-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--vu-red);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

/* ---------- Process status banner ---------- */
.vocacion-uandes-page .vu-status {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  border: 1px solid var(--vu-border);
  border-radius: 5px;
  overflow: hidden;
  background-color: var(--vu-white);
  box-shadow: 0 16px 40px rgba(41, 52, 60, 0.06);
}

.vocacion-uandes-page .vu-status-col {
  position: relative;
  padding: 34px 32px;
}

.vocacion-uandes-page .vu-status-col + .vu-status-col {
  border-left: 1px solid var(--vu-border);
}

.vocacion-uandes-page .vu-status-col--active {
  border-top: 5px solid var(--vu-red);
  background-color: var(--vu-white);
}

.vocacion-uandes-page .vu-status-col--future {
  border-top: 5px solid var(--vu-dark);
  background-color: var(--vu-soft);
}

.vocacion-uandes-page .vu-status-label {
  color: var(--vu-red);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.2;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.vocacion-uandes-page .vu-status-col--active .vu-status-label {
  color: #1c7c3c;
}

.vocacion-uandes-page .vu-status-col--future .vu-status-label {
  color: var(--vu-red);
}

.vocacion-uandes-page .vu-status-kicker {
  color: var(--vu-muted);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 8px;
}

.vocacion-uandes-page .vu-status-col h3 {
  margin-bottom: 14px;
}

.vocacion-uandes-page .vu-status-col--active h3 {
  font-size: 30px;
  line-height: 1.15;
}

.vocacion-uandes-page .vu-status-col--future h3 {
  font-size: 22px;
  line-height: 1.25;
}

.vocacion-uandes-page .vu-status-col p {
  color: var(--vu-muted);
}

.vocacion-uandes-page .vu-status-date {
  border-top: 1px solid var(--vu-border);
  border-bottom: 1px solid var(--vu-border);
  margin: 22px 0;
  padding: 20px 0;
}

.vocacion-uandes-page .vu-status-date-label {
  color: var(--vu-muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.07em;
  line-height: 1.2;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.vocacion-uandes-page .vu-status-date-value {
  display: flex;
  align-items: baseline;
  gap: 10px;
  color: var(--vu-red);
}

.vocacion-uandes-page .vu-status-date-day {
  font-size: 58px;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 0.95;
}

.vocacion-uandes-page .vu-status-date-month {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
}

.vocacion-uandes-page .vu-status-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--vu-red);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.vocacion-uandes-page .vu-status-link .material-icons-outlined {
  font-size: 18px;
}

.vocacion-uandes-page .vu-status-link:hover,
.vocacion-uandes-page .vu-status-link:focus {
  text-decoration: underline;
}

@media (max-width: 900px) {
  .vocacion-uandes-page .vu-status {
    grid-template-columns: 1fr;
  }

  .vocacion-uandes-page .vu-status-col + .vu-status-col {
    border-left: none;
    border-top: 1px solid var(--vu-border);
  }

  .vocacion-uandes-page .vu-status-date-value {
    flex-wrap: wrap;
  }
}

@media (max-width: 600px) {
  .vocacion-uandes-page .vu-status-col {
    padding: 28px 22px;
  }

  .vocacion-uandes-page .vu-status-col--active h3 {
    font-size: 26px;
  }

  .vocacion-uandes-page .vu-status-date-day {
    font-size: 48px;
  }

  .vocacion-uandes-page .vu-status-date-month {
    font-size: 24px;
  }
}

/* ---------- Area / career tabs ---------- */
.vocacion-uandes-page .vu-area-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0 32px;
}

.vocacion-uandes-page .vu-area-tab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--vu-border);
  border-radius: 24px;
  background-color: var(--vu-white);
  color: var(--vu-dark);
  font-size: 14px;
  font-weight: 700;
  padding: 9px 18px;
  cursor: pointer;
  transition: all 0.25s ease;
}

.vocacion-uandes-page .vu-area-tab:hover {
  border-color: var(--vu-red);
  color: var(--vu-red);
}

.vocacion-uandes-page .vu-area-tab.is-active {
  background-color: var(--vu-red);
  border-color: var(--vu-red);
  color: var(--vu-white);
}

.vocacion-uandes-page .vu-area-panel {
  display: none;
}

.vocacion-uandes-page .vu-area-panel.is-active {
  display: grid;
}

/* ---------- FAQ accordion ---------- */
.vocacion-uandes-page .vu-faq {
  max-width: 860px;
  margin: 28px auto 0;
}

.vocacion-uandes-page .vu-faq-item {
  border-bottom: 1px solid var(--vu-border);
}

.vocacion-uandes-page .vu-faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  list-style: none;
  cursor: pointer;
  padding: 20px 4px;
  color: var(--vu-dark);
  font-size: 16px;
  font-weight: 700;
}

.vocacion-uandes-page .vu-faq-item summary::-webkit-details-marker {
  display: none;
}

.vocacion-uandes-page .vu-faq-item summary::after {
  content: "+";
  flex-shrink: 0;
  color: var(--vu-red);
  font-size: 22px;
  font-weight: 400;
  transition: transform 0.2s ease;
}

.vocacion-uandes-page .vu-faq-item[open] summary::after {
  content: "\2013";
}

.vocacion-uandes-page .vu-faq-item p {
  max-width: 720px;
  color: var(--vu-muted);
  padding: 0 4px 20px;
  margin: 0;
}

/* ---------- Video testimonial cards ---------- */
.vocacion-uandes-page .vu-video-card {
  border: 1px solid var(--vu-border);
  border-radius: 6px;
  overflow: hidden;
  background-color: var(--vu-white);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.vocacion-uandes-page .vu-video-card:hover {
  box-shadow: 0 14px 32px rgba(41, 52, 60, 0.1);
  transform: translateY(-2px);
}

.vocacion-uandes-page .vu-video-card iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
}

.vocacion-uandes-page .vu-video-meta {
  padding: 16px 18px;
}

.vocacion-uandes-page .vu-video-meta strong {
  display: block;
  color: var(--vu-dark);
  font-size: 15px;
}

.vocacion-uandes-page .vu-video-meta span {
  color: var(--vu-muted);
  font-size: 13px;
}

/* ---------- Steps ribbon ---------- */
.vocacion-uandes-page .vu-steps {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 24px;
  margin-top: 30px;
}

.vocacion-uandes-page .vu-steps .vu-card {
  position: relative;
}
@media (max-width: 768px) {
    .uandes-25nh-cover-main__caption p {
        color: #fff;
        background-color: #e00d3400 !important;
        padding: 5px 10px;
    }
}
@media (max-width: 900px) {
  .vocacion-uandes-page .vu-steps {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 991px) {
    .uandes-25nh-cover-main {
        max-height: 61ch!important;
        overflow: hidden;
    }
}

/* ---------- Misc polish ---------- */
.vocacion-uandes-page .vu-card--flat {
  border: 1px solid var(--vu-border);
  background-color: var(--vu-white);
  border-radius: 6px;
  padding: 22px;
  text-align: center;
}

.vocacion-uandes-page .vu-card--flat img {
  width: 44px;
  height: 44px;
  margin: 0 auto 14px;
}

.vocacion-uandes-page .vu-card--flat strong {
  display: block;
  color: var(--vu-dark);
  font-size: 15px;
  margin-bottom: 4px;
}

.vocacion-uandes-page .vu-card--flat span {
  color: var(--vu-muted);
  font-size: 13px;
}

.vocacion-uandes-page .vu-section-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 8px;
}

.vocacion-uandes-page .vu-pill-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--vu-red);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

/* ---------- Timeline 4-column variant (used when there are only 4 dates) ---------- */
.vocacion-uandes-page .vu-timeline--four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

@media (max-width: 760px) {
  .vocacion-uandes-page .vu-timeline--four {
    grid-template-columns: 1fr 1fr;
    gap: 24px 0;
  }
}

@media (max-width: 480px) {
  .vocacion-uandes-page .vu-timeline--four {
    grid-template-columns: 1fr;
  }
}

/* ---------- Bordered panel with a small accent title (used in Requisitos) ---------- */
.vocacion-uandes-page .vu-panel {
  border: 1px solid var(--vu-border);
  border-radius: 5px;
  background-color: var(--vu-white);
  padding: 32px;
  margin-top: 28px;
}

.vocacion-uandes-page .vu-panel-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--vu-dark);
  padding-left: 14px;
  border-left: 4px solid var(--vu-red);
  margin-bottom: 24px;
}

/* ---------- Reassurance note (hero) ---------- */
.vocacion-uandes-page .vu-reassure {
  display: flex;
  align-items: flex-start;
  gap: 7px;
  margin-top: 20px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  color: rgba(255, 255, 255, 0.65);
  font-size: 12.5px;
  line-height: 1.5;
  max-width: 42ch;
}

.vocacion-uandes-page .vu-reassure .material-icons-outlined {
  flex-shrink: 0;
  font-size: 15px;
  margin-top: 1px;
  color: rgba(255, 255, 255, 0.55);
}

.vocacion-uandes-page .vu-reassure b {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
}

/* ---------- Banner image (visual breather between text-heavy sections) ---------- */
.vocacion-uandes-page .vu-banner {
  position: relative;
  min-height: 280px;
  overflow: hidden;
  background-color: var(--vu-dark);
}

.vocacion-uandes-page .vu-banner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vocacion-uandes-page .vu-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(15, 20, 24, 0.5);
}

.vocacion-uandes-page .vu-banner-caption {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 280px;
  text-align: center;
  padding: 40px 24px;
}

.vocacion-uandes-page .vu-banner-caption p {
  margin: 0;
  max-width: 720px;
  color: var(--vu-white);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.35;
}

@media (max-width: 600px) {
  .vocacion-uandes-page .vu-banner,
  .vocacion-uandes-page .vu-banner-caption {
    min-height: 220px;
  }
  .vocacion-uandes-page .vu-banner-caption p {
    font-size: 19px;
  }
}

.vocacion-uandes-page .vu-avatar-initials {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background-color: var(--vu-red);
  color: var(--vu-white);
  font-size: 24px;
  font-weight: 700;
  margin: 0 auto;
}

/* ---------- Video placeholder (used when there is no real video link yet) ---------- */
.vocacion-uandes-page .vu-video-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 16 / 9;
  background: linear-gradient(155deg, var(--vu-dark) 0%, #4a5a66 100%);
}

.vocacion-uandes-page .vu-video-placeholder .vu-play {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.92);
  color: var(--vu-dark);
}

.vocacion-uandes-page .vu-video-placeholder .vu-play svg {
  width: 20px;
  height: 20px;
  margin-left: 2px;
}

/*CUSTOM SITEFINITY*/

.vocacion-uandes-page.tabs-2025.nivel-3 .box-tabs {
        padding-right: 0px;
        padding-left: 0px;
    }

    .vocacion-uandes-page.tabs-2025.nivel-3 .menu-tabs a {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .tabs-2025 .box-tabs .row.panel-tab-g  {
        gap: 1rem;
    }

    .vocacion-uandes-page.tabs-2025.row.nivel-3 .vu-section-head.cabecera {
        margin-bottom: 1rem;
    }

    .tabs-2025 .menu-tabs .activo {
        font-weight: bold;
    }

    .vocacion-uandes-page .row.panel-tab-g .vu-card {
        position: relative;
    }

    .vocacion-uandes-page.nivel-2 .vu-card .vu-badge-soft {
        display: block;
        margin-bottom: 1rem;
        background: #F0F0F0;
        padding: .5rem 1rem;
        border-radius: 2px;
        width: fit-content;
    }

    .tabs-2025 .menu-tabs a.activo {
        color: #ffffff;
        background-color: #E00D34;
    }

    .vocacion-uandes-page .nivel-1 .vu-card-icon {
        border: 0px;
    }

    .vocacion-uandes-page .nivel-1 .vu-card-icon .img-vu-card-icon {
        width: 42px;
        height: 42px;
    }

    .vocacion-uandes-page button.vu-pill-link {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: fit-content;
        min-height: 44px;
        border: 1px solid var(--vu-red, #E00D34);
        border-radius: 5px;
        font-size: 16px;
        font-weight: 700;
        line-height: 1.2;
        padding: 10px 18px;
        text-decoration: none;
        cursor: pointer;
        white-space: nowrap;
        transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
        background-color: var(--vu-white);
        color: var(--vu-red);
    }

    .vocacion-uandes-page button.vu-pill-link:hover {
        background-color: var(--vu-red);
        color: var(--vu-white);
    }

    .vocacion-uandes-page .vu-card-icon .material-icons-outlined.fix-material-icon {
       /* border: 1.5px solid var(--vu-red);
        padding: .5rem;
        border-radius: 100%;*/
        font-size: 42px;
    }

    @media screen and (max-width: 991px) {
        .vocacion-uandes-page.nivel-3 .menu-tabs {
            flex-direction: column;
        }
    }

    @media screen and (min-width: 991px) {
      .vocacion-uandes-page .row.panel-tab-g .vu-card {
          height: unset;
          width: 23.7%;
          padding-bottom: 3.2rem;
      }

      .vocacion-uandes-page .vu-pill-link.detalle-ingreso  {
          position: absolute;
          bottom: .6rem;
      }

      .vocacion-uandes-page .nivel-1 .vu-card h3 {
          min-height: 54px;
      }

      .vocacion-uandes-page.nivel-2 .vu-card h3 {
          min-height: 54px;
      }
    }