:root {
  --primary-color: #003976;
  --secondary-color: #fcc000;
  --accent-color: #fdc97b;
  --dark-font-color: #001f47;
  --primary-color-2: #001f47;
  --gray-color: #a2a2a2;
  --white-hover: #ccc;
  --white-our-team-card: #faf9f5;
  --font-body: "DM Sans", sans-serif;
  --font-heading: "Sora", sans-serif;
  --font-size-xs: 11px;
  --font-size-sm: 12px;
  --font-size-sm-plus: 12.5px;
  --font-size-md: 13px;
  --font-size-base: 14px;
  --font-size-body: 15px;
  --font-size-lg: 16px;
  --font-size-xl: 17px;
  --font-size-title-xs: 18px;
  --font-size-title-sm: 20px;
  --font-size-title-md: 22px;
  --font-size-title-lg: 24px;
  --font-size-title-xl: 26px;
  --font-size-title-2xl: 28px;
  --font-size-title-3xl: 32px;
  --font-size-title-4xl: 34px;
  --font-size-hero-sm: 36px;
  --font-size-hero-md: 38px;
  --font-size-rem-xs: 0.8rem;
  --font-size-rem-sm: 0.9rem;
  --font-size-rem-md: 0.95rem;
  --font-size-rem-base: 1rem;
  --font-size-rem-lg: 1.1rem;
  --font-size-rem-xl: 1.2rem;
  --font-size-rem-2xl: 1.3rem;
  --font-size-rem-3xl: 1.4rem;
  --font-size-rem-4xl: 1.5rem;
  --font-size-rem-5xl: 1.6rem;
  --font-size-rem-6xl: 1.7rem;
  --font-size-rem-7xl: 1.8rem;
  --font-size-rem-8xl: 2rem;
  --font-size-rem-9xl: 2.5rem;
  --font-size-rem-10xl: 3rem;
  --font-size-display-sm: 5rem;
  --font-size-display-md: 6.5rem;
  --font-size-display-lg: 7rem;
  --font-size-display-xl: 10rem;
  --font-size-relative-sm: 2em;
  --font-size-relative-md: 2.1em;
  --font-size-relative-lg: 2.4em;
  --font-size-relative-xl: 2.5em;
  --font-size-relative-2xl: 3em;
  --font-size-relative-3xl: 4em;
  --font-size-icon-lg: 72px;
  --font-size-icon-xl: 96px;
  --max-lines: 2;
  --ups-blue: var(--primary-color);
  --ups-dark: var(--primary-color-2);
  --ups-red: #e63946;
  --ups-light: #f4f7fb;
  --ups-text: #1a1a2e;
  --ups-muted: #5a6a82;
  --ups-border: #e4eaf4;
}

@media (min-width: 1200px) {
  :root {
    --font-size-xs: 12px;
    --font-size-sm: 13px;
    --font-size-sm-plus: 13.5px;
    --font-size-md: 14px;
    --font-size-base: 15px;
    --font-size-body: 16px;
    --font-size-lg: 17px;
    --font-size-xl: 18px;
    --font-size-title-xs: 19px;
    --font-size-title-sm: 21px;
    --font-size-title-md: 23px;
    --font-size-title-lg: 25px;
    --font-size-title-xl: 28px;
    --font-size-title-2xl: 30px;
    --font-size-title-3xl: 34px;
    --font-size-title-4xl: 36px;
    --font-size-hero-sm: 38px;
    --font-size-hero-md: 40px;
  }
}

@media (max-width: 767px) {
  :root {
    --font-size-xs: 10px;
    --font-size-sm: 11px;
    --font-size-sm-plus: 11.5px;
    --font-size-md: 12px;
    --font-size-base: 13px;
    --font-size-body: 14px;
    --font-size-lg: 15px;
    --font-size-xl: 16px;
    --font-size-title-xs: 17px;
    --font-size-title-sm: 18px;
    --font-size-title-md: 20px;
    --font-size-title-lg: 22px;
    --font-size-title-xl: 24px;
    --font-size-title-2xl: 26px;
    --font-size-title-3xl: 28px;
    --font-size-title-4xl: 30px;
    --font-size-hero-sm: 32px;
    --font-size-hero-md: 34px;
  }
}

/* ---------------------------------------------------- */
/* Main */
/* ---------------------------------------------------- */
html,
body {
  height: 100%;
  margin: 0;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  overflow-x: hidden;
  color: var(--ups-text);
  font-family: var(--font-body);
  font-size: var(--font-size-body);
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
}

i {
  color: var(--primary-color);
}

a {
  color: var(--primary-color);
}

.primary-color {
  color: var(--primary-color);
}

.secondary-color {
  color: var(--secondary-color);
}

.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-secondary {
  background-color: var(--accent-color);
}

.bg-primary {
  background-color: var(--primary-color) !important;
}

.cursor-pointer {
  cursor: pointer;
}

.dark-font {
  color: var(--dark-font-color);
}

list-group-item.event {
  font-size: 16pt;
}

.list-group-item a {
  text-decoration: none;
}

.list-group-item.active {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.list-group-item.active:hover {
  opacity: 0.7;
}

.list-group-item:hover {
  background-color: var(--primary-color);
  color: #fff;
}

.list-group-item:hover a,
.list-group-item:hover i {
  color: #fff;
}

.list-group-item:hover span {
  background-color: #fff !important;
  color: var(--primary-color);
}

.rounded {
  border-radius: 1.25rem !important;
}

body div.main-page {
  margin-top: 67px;
  flex: 1;
}

body.home-alterno-header div.main-page {
  margin-top: 0;
}

.home-showcase-page {
  padding-left: 0;
  padding-right: 0;
}

.home-showcase-hero {
  min-height: 100vh;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.home-showcase-media {
  inset: 0;
  position: absolute;
}

.home-showcase-media video {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.home-showcase-video-fallback {
  background:
    linear-gradient(90deg, rgba(0, 31, 71, 0.88), rgba(0, 57, 118, 0.55)),
    url("../../media/images/home/international_networks.webp") center / cover
      no-repeat;
  height: 100%;
  width: 100%;
}

.home-showcase-overlay {
  background:
    linear-gradient(
      90deg,
      rgba(0, 9, 25, 0.92) 0%,
      rgba(0, 20, 45, 0.7) 42%,
      rgba(0, 20, 45, 0.22) 100%
    ),
    linear-gradient(0deg, rgba(0, 8, 20, 0.86) 0%, rgba(0, 8, 20, 0.04) 42%);
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100vh;
  overflow-y: visible;
  padding: 7rem 4rem 2rem;
  position: relative;
  z-index: 1;
}

.home-showcase-content {
  color: #fff;
  max-width: 760px;
  padding-top: 2rem;
}

.home-showcase-tag {
  color: rgba(255, 255, 255, 0.78);
  font-family: var(--font-heading);
  font-size: var(--font-size-lg);
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.home-showcase-content h1 {
  color: #fff;
  font-family: var(--font-heading);
  font-size: clamp(42px, 6vw, 82px);
  font-weight: 600;
  line-height: 1.04;
  margin-bottom: 1.5rem;
  max-width: 980px;
}

.home-showcase-description {
  color: rgba(255, 255, 255, 0.88);
  font-size: var(--font-size-title-sm);
  line-height: 1.55;
  margin-bottom: 2rem;
  max-width: 620px;
}

.home-showcase-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.home-showcase-btn {
  align-items: center;
  border: 2px solid #00b6ff;
  border-radius: 999px;
  color: #fff;
  display: inline-flex;
  font-size: var(--font-size-base);
  font-weight: 700;
  justify-content: center;
  min-width: 230px;
  padding: 14px 24px;
  text-decoration: none;
  text-transform: uppercase;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}

.home-showcase-btn:hover {
  background: #00b6ff;
  color: #001f47;
  text-decoration: none;
}

.home-showcase-btn:hover {
  transform: translateY(-2px);
}

.home-showcase-cards {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.home-showcase-card {
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #fff;
  display: block;
  height: 190px;
  overflow: hidden;
  position: relative;
  text-decoration: none;
}

.home-showcase-card img {
  display: block;
  height: 100%;
  object-fit: cover;
  opacity: 0.78;
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
  width: 100%;
}

.home-showcase-card::after {
  background: linear-gradient(
    180deg,
    transparent 25%,
    rgba(0, 10, 25, 0.88) 100%
  );
  content: "";
  inset: 0;
  position: absolute;
}

.home-showcase-card span {
  bottom: 1rem;
  color: #fff;
  font-family: var(--font-heading);
  font-size: var(--font-size-xl);
  font-weight: 700;
  left: 1rem;
  position: absolute;
  right: 1rem;
  text-transform: uppercase;
  z-index: 1;
}

.home-showcase-card:hover {
  color: #fff;
  text-decoration: none;
}

.home-showcase-card:hover img {
  opacity: 1;
  transform: scale(1.05);
}

@media (max-width: 1199px) {
  .home-showcase-overlay {
    gap: 2.75rem;
    padding: 6rem 2rem 2rem;
  }

  .home-showcase-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 2rem;
  }

  .home-showcase-card {
    height: 160px;
  }
}

@media (max-height: 720px) and (min-width: 769px) {
  .home-showcase-hero {
    min-height: auto;
    overflow: visible;
  }

  .home-showcase-overlay {
    gap: 3.25rem;
    inset: auto;
    justify-content: flex-start;
    min-height: 100vh;
    overflow-y: visible;
    padding-bottom: 3rem;
    position: relative;
  }

  .home-showcase-content h1 {
    font-size: clamp(34px, 4.5vw, 58px);
  }

  .home-showcase-description {
    font-size: var(--font-size-xl);
    margin-bottom: 1.25rem;
  }

  .home-showcase-card {
    height: 125px;
  }
}

@media (max-width: 768px) {
  .home-showcase-hero {
    min-height: auto;
  }

  .home-showcase-overlay {
    min-height: 100vh;
    padding: 5.5rem 1.25rem 1.25rem;
    position: relative;
  }

  .home-showcase-content {
    padding-top: 0;
  }

  .home-showcase-tag {
    font-size: var(--font-size-sm);
    margin-bottom: 1rem;
  }

  .home-showcase-content h1 {
    font-size: var(--font-size-title-4xl);
  }

  .home-showcase-description {
    font-size: var(--font-size-body);
  }

  .home-showcase-btn {
    min-width: 100%;
  }

  .home-showcase-cards {
    gap: 0.75rem;
    grid-template-columns: 1fr;
    margin-top: 2rem;
  }

  .home-showcase-card {
    height: 110px;
  }

  .home-showcase-card span {
    font-size: var(--font-size-base);
  }

  .innovation-modern-hero {
    height: 360px;
  }

  .innovation-modern-hero-overlay,
  .innovation-modern-intro,
  .innovation-modern-programs,
  .innovation-modern-gallery,
  .innovation-modern-capabilities,
  .innovation-modern-cta {
    padding: 2rem 1.5rem;
  }

  .innovation-modern-band,
  .innovation-modern-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .innovation-modern-gallery,
  .innovation-program-grid,
  .innovation-modern-capabilities,
  .innovation-modern-split {
    grid-template-columns: 1fr;
  }

  .innovation-gallery-card.large,
  .innovation-gallery-card.tall {
    grid-column: auto;
    grid-row: auto;
  }

  .innovation-modern-split-content {
    padding: 2rem 1.5rem;
  }

  .innovation-modern-capabilities article {
    justify-content: flex-start;
  }

  .innovation-modern-page .innovation-modern-gallery,
  .innovation-hub-page .innovation-modern-gallery {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    padding: 1.5rem 1rem 2rem;
    scroll-padding-left: 1rem;
    scroll-snap-type: x mandatory;
  }

  .innovation-modern-page .innovation-gallery-card,
  .innovation-modern-page .innovation-gallery-card.large,
  .innovation-modern-page .innovation-gallery-card.tall,
  .innovation-hub-page .innovation-gallery-card,
  .innovation-hub-page .innovation-gallery-card.large,
  .innovation-hub-page .innovation-gallery-card.tall {
    flex: 0 0 82vw;
    grid-column: auto;
    grid-row: auto;
    min-height: 0;
    scroll-snap-align: center;
  }

  .innovation-modern-page .innovation-gallery-card img,
  .innovation-hub-page .innovation-gallery-card img {
    aspect-ratio: 4 / 5;
    height: auto;
    object-fit: cover;
    width: 100%;
  }

  .innovation-modern-page .innovation-gallery-card span,
  .innovation-hub-page .innovation-gallery-card span {
    font-size: var(--font-size-lg);
    line-height: 1.25;
  }

  .innovation-modern-page .innovation-program-grid,
  .innovation-hub-page .innovation-program-grid {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    padding-bottom: 0.35rem;
    scroll-padding-left: 0.25rem;
    scroll-snap-type: x mandatory;
  }

  .innovation-modern-page .innovation-program-card,
  .innovation-hub-page .innovation-program-card {
    display: flex;
    flex: 0 0 84vw;
    flex-direction: column;
    scroll-snap-align: center;
  }

  .innovation-modern-page .innovation-program-card img,
  .innovation-hub-page .innovation-program-card img {
    aspect-ratio: 16 / 10;
    height: auto;
    object-fit: cover;
    width: 100%;
  }

  .innovation-hub-page .innovation-modern-image img,
  .innovation-hub-page .innovation-modern-split-media img {
    max-height: 260px;
  }

  .innovation-modern-page .innovation-program-card h3,
  .innovation-hub-page .innovation-program-card h3 {
    font-size: var(--font-size-xl);
    line-height: 1.25;
  }

  .innovation-modern-page .innovation-modern-capabilities,
  .innovation-hub-page .innovation-modern-capabilities {
    gap: 0.85rem;
    grid-template-columns: 1fr;
  }

  .innovation-modern-page .innovation-modern-capabilities article,
  .innovation-hub-page .innovation-modern-capabilities article {
    align-items: center;
    justify-content: flex-start;
    min-height: 86px;
    padding: 1rem;
  }

  .innovation-modern-page .innovation-capability-icon,
  .innovation-hub-page .innovation-capability-icon {
    height: 46px !important;
    max-height: 46px;
    max-width: 46px;
    width: 46px !important;
  }

  .innovation-modern-page .innovation-modern-capabilities h3,
  .innovation-hub-page .innovation-modern-capabilities h3 {
    font-size: var(--font-size-lg);
    line-height: 1.25;
  }

  .citups-modern-hero {
    height: 360px;
  }

  .citups-modern-hero-overlay,
  .citups-modern-intro,
  .citups-modern-band,
  .citups-service-grid,
  .citups-modern-clients {
    padding: 2rem 1.5rem;
  }

  .citups-modern-split,
  .citups-service-grid {
    grid-template-columns: 1fr;
  }

  .citups-modern-split-content {
    padding: 2rem 1.5rem;
  }

  .citups-client-logos {
    gap: 1rem;
  }

  .awards-modern-hero {
    height: 520px;
    min-height: 420px;
  }

  .awards-editions-hero {
    height: 420px;
    min-height: 360px;
  }

  .single-award-event-hero {
    height: 480px;
    min-height: 420px;
  }

  .awards-modern-hero-overlay,
  .single-award-event-overlay,
  .awards-event-section,
  .awards-modern-intro,
  .single-award-event-intro,
  .single-award-event-awards,
  .single-award-event-gallery,
  .awards-feature-band,
  .awards-modern-cta,
  .awards-editions-section {
    padding: 2rem 1.5rem;
  }

  .awards-feature-band,
  .awards-editions-grid {
    grid-template-columns: 1fr;
  }

  .awards-modern-cta {
    align-items: flex-start;
    flex-direction: column;
  }
}

.video-fullscreen {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* ---------------------------------------------------- */
/* Pagination*/
/* ---------------------------------------------------- */

.page-numbers {
  display: inline-block;
  padding: 5px 10px;
  margin: 0px 5px 0 0;
  border: 1px solid var(--primary-color);
  line-height: 1;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
}

.page-numbers.current {
  background: var(--primary-color);
  color: #fff;
}

a.page-numbers:hover {
  background: var(--primary-color);
  color: #fff;
}

/* ---------------------------------------------------- */
/* Nav bar*/
/* ---------------------------------------------------- */

.navbar-toggler {
  background-color: var(--primary-color);
  border-color: white;
  margin-right: 3.125rem;
}

.navbar-toggler:hover {
  opacity: 0.7;
}

.navbar-toggler.home {
  margin-right: 0.1rem;
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 0.05rem var(--primary-color-2);
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255,255,255, 1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E");
}

.navbar-nav {
  justify-content: center;
}

.navbar-collapse.bg-white {
  z-index: 2;
}

.nav-link {
  color: var(--dark-font-color);
  text-transform: capitalize;
}

/* Nav bar */
.bg-gradient {
  background: #0d2b44 !important;
}

.navbar-collapse.bg-gradient {
  z-index: 2;
}

li[itemscope] a.nav-link {
  position: relative; /* Ensure the ::after element is positioned relative to the link */
  text-decoration: none; /* Remove default underline */
  color: white;
}

li[itemscope] a.nav-link:hover {
  font-weight: bolder;
}

li[itemscope] a.nav-link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px; /* Thickness of the underline */
  background-color: white; /* Color of the underline */
  left: 0;
  bottom: 0; /* Position below the text */
  transition: width 0.3s ease; /* Smooth animation */
}

li[itemscope] a.nav-link:hover::after {
  width: 100%; /* Expand underline on hover */
}

li[itemscope] a.nav-link:hover {
  font-weight: bolder;
}

li.current-menu-item {
  font-weight: bolder;
}

li.current-menu-item:after {
  content: "";
  display: block;
  margin: auto;
  position: relative;
  bottom: 2px;
  width: 100%;
  height: 2px;
  background: white;
}

.btn-search {
  background: white;
}

.btn-search i {
  color: var(--primary-color);
}

.btn-search:hover {
  background-color: var(--primary-color);
}

.btn-search:hover i {
  color: white;
}

/* ---------------------------------------------------- */
/* Footer */
/* ---------------------------------------------------- */

#searchComponent {
  display: none;
}

#searchComponent.full {
  display: block;
  z-index: 2000;
}

#suscripcionModal a {
  text-decoration: none;
}

#suscripcionModal a:hover {
  text-decoration: underline;
}

#suscripcionModal .row .col-auto {
  padding-left: 0rem;
  margin-top: 0.3rem;
}

.icon-small-white {
  font-size: var(--font-size-rem-8xl);
  color: white; /* Ensures the icon remains white */
}

/* ---------------------------------------------------- */
/* Side bar */
/* ---------------------------------------------------- */

.verticaltext {
  position: relative;
  margin: 1em 0;
  min-height: 7.5rem;
}

.verticaltext_content {
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transform: rotate(90deg);
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
  left: -2.5rem;
  top: 2.188rem;
  color: var(--dark-font-color);
  font-size: calc(var(--font-size-rem-5xl) + 0.025rem);
  font-weight: bold;
}

.tle-gutter__bg {
  margin-top: 0;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  border-right: 1px solid RGBA(0, 0, 0, 0.1);
  border-right: 1px solid RGBA(var(--primary-text), 0.1);
}

span.sub_icon i {
  font-size: var(--font-size-rem-8xl);
  color: var(--primary-color);
}

/* ---------------------------------------------------- */
/* Search form */
/* ---------------------------------------------------- */

.search-input-group .input-group-text {
  background: white !important;
  border: 0px;
  border-top: 0px solid var(--white-hover);
  border-left: 0px solid var(--white-hover);
  border-bottom: 0px solid var(--white-hover);
  box-shadow: 3px 3px 30px 0px rgba(0, 0, 0, 0.08);
}

.search-input-group .form-control {
  border: 0px;
  border-left: 0;
  box-shadow: 12px 3px 30px 0px rgba(0, 0, 0, 0.08);
  border-color: transparent;
  height: 110px;
  /*owner change*/
  border-top-right-radius: 4px !important;
  border-bottom-right-radius: 4px !important;
  font-size: var(--font-size-rem-lg);
}

/* ---------------------------------------------------- */
/* Sections */
/* ---------------------------------------------------- */

.main-titles {
  border-top: 1px solid #e3e3e3;
  padding-top: 10px;
  margin-top: 30px;
  margin-bottom: 30px;
  text-transform: none;
}

.tle-section-title {
  border-top: 2px solid var(--primary-color);
  display: inline-block;
  margin-top: -10px;
  padding-top: 25px;
  font-weight: lighter;
  color: var(--dark-font-color);
}

.sec-title {
  border-bottom: 1px solid #e3e3e3;
  margin-top: 30px;
  margin-bottom: 30px;
  text-transform: none;
  padding-bottom: 2px;
}

.tle-sec-title {
  border-bottom: 2px solid var(--primary-color);
  display: inline;
  margin-top: -10px;
  font-weight: lighter;
  color: var(--dark-font-color);
}

/* ---------------------------------------------------- */
/* Modals */
/* ---------------------------------------------------- */

#modalImage .btn-shut {
  position: absolute;
  right: 3%;
  top: 4%;
}

#modalImage .btn-shut:hover i {
  color: var(--white-hover) !important;
}

/* ---------------------------------------------------- */
/* Floating button */
/* ---------------------------------------------------- */

.float {
  position: fixed;
  width: 5rem;
  height: 5rem;
  bottom: 12rem;
  right: 2rem;
  background-color: var(--primary-color);
  color: #fff;
  border-radius: 50px;
  text-align: center;
  box-shadow: 2px 2px 3px var(--white-hover);
  z-index: 10;
}

.float i {
  color: #fff;
  font-size: var(--font-size-rem-10xl);
  margin-top: 1rem;
}

a.float + div.label-container {
  visibility: hidden;
  opacity: 0;
  transition:
    visibility 0s,
    opacity 0.5s ease;
}

a.float:hover + div.label-container {
  visibility: visible;
  opacity: 1;
}

.label-container {
  position: fixed;
  bottom: 9rem;
  right: 2rem;
  display: table;
  visibility: hidden;
}

.label-text {
  opacity: 0.8;
  color: #fff;
  background: var(--primary-color);
  display: flex;
  vertical-align: middle;
  padding: 0.6rem;
  border-radius: 0.3rem;
}

/* ---------------------------------------------------- */
/* Scrollbar */
/* ---------------------------------------------------- */

/* Width */
::-webkit-scrollbar {
  width: 0.7rem;
}

/* Track */
::-webkit-scrollbar-track {
  background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 0.6rem;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: var(--dark-font-color);
}

#top-scroll-btn {
  display: none; /* Hidden by default */
  position: fixed; /* Fixed/sticky position */
  bottom: 50%; /* Place the button at the bottom of the page */
  right: 3%; /* Place the button 30px from the right */
  z-index: 99; /* Make sure it does not overlap */
  border: none; /* Remove borders */
  outline: none; /* Remove outline */
  background-color: var(--primary-color); /* Set a background color */
  color: white; /* Text color */
  cursor: pointer; /* Add a mouse pointer on hover */
  border-radius: 10%; /* Rounded corners */
  font-size: var(--font-size-rem-lg); /* Increase font size */
  font-weight: bolder;
  padding: 0.8rem;
}

#top-scroll-btn:hover {
  opacity: 0.8;
  background-color: var(--primary-color-2);
}

/* ---------------------------------------------------- */
/* Home page */
/* ---------------------------------------------------- */

.search-title {
  color: var(--dark-font-color);
}

.most-view-list a {
  text-decoration: none;
  line-height: 1.8em;
  font-size: var(--font-size-rem-xs);
  color: var(--dark-font-color);
  max-height: calc(var(--lh) * var(--max-lines));
  overflow: hidden;
}

.most-view-list a:hover {
  color: var(--primary-color-2);
  text-decoration: underline;
}

.most-view-list {
  list-style: none;
  padding-left: 0;
}

.most-view-list li:before {
  content: "_\00a0";
  font-size: var(--font-size-rem-4xl);
  color: var(--primary-color-2);
}

.h1-home {
  color: var(--dark-font-color);
  font-size: var(--font-size-rem-5xl);
}

.list-news {
  margin: 20px;
  color: #fff;
}

.list-news li {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #fff;
  padding-top: 20px;
}

.list-news li:hover {
  background-color: white;
  color: var(--dark-font-color);
}

.list-news a {
  color: #fff;
  text-decoration: none;
}

.list-news a:hover {
  color: var(--dark-font-color);
  text-decoration: underline;
}

.list-news ul {
  list-style: none;
  padding-left: 0;
}

.box1-1 {
  float: left;
  width: 60px;
  height: 60px;
}

.box1-1 .m {
  display: block;
  text-align: center;
}

.box1-1 .d {
  display: block;
  text-align: center;
  font-size: var(--font-size-title-sm);
}

.news-section {
  background-color: var(--primary-color);
  padding: 0;
}

.circle-new {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background-color: var(--primary-color);
  border-radius: 50%;
  text-align: center;
  width: 4.75rem;
  height: 4.75rem;
  padding-top: 0.2rem;
  color: #fff;
  font-weight: bold;
  text-transform: uppercase;
}

.circle-new .month {
  font-size: var(--font-size-rem-base);
}

.circle-new .day {
  margin-bottom: 0.1rem;
  padding-bottom: 0.1rem;
  font-weight: bold;
}

.carousel-item a {
  text-decoration: none;
}

.carousel-item a:hover {
  text-decoration: underline;
}

/** Search function */
.input-group .close {
  display: none;
}

.full {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  transition: all 1s ease;
  z-index: 1050;
  background: var(--primary-color);
}

.full .search-title {
  display: none;
}

.full .input-group {
  position: absolute;
  border-collapse: separate;
  vertical-align: middle;
  margin: auto;
  left: 30%;
  top: 35%;
}

.full .input-group .close {
  display: block;
  position: fixed;
  left: 2rem;
  top: 1rem;
  color: white;
}

.full .input-group .close:hover {
  color: rgb(214, 214, 214);
  cursor: pointer;
}

/** Indicators */
.indicator-row {
  width: 100%;
}

.card.indicator {
  height: 19rem;
}

.indicator-number {
  font-weight: bold;
  font-size: var(--font-size-display-xl);
  background: linear-gradient(
    45deg,
    rgba(251, 191, 0, 1) 0%,
    rgba(255, 255, 255, 1) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; /* Make text color transparent to show the gradient */
  background-clip: text; /* Standard property */
  color: transparent; /* For older browsers */
}

/* ---------------------------------------------------- */
/* Ecosystem page */
/* ---------------------------------------------------- */

div[id^="video-desc"] a:hover {
  text-decoration: none;
}

div[id^="video-desc"] a::after {
  color: white;
}

div[id^="video-desc"] a[aria-expanded="false"]::after {
  content: "\25BC";
}

div[id^="video-desc"] a[aria-expanded="true"]::after {
  content: "\25B2";
}

/* ---------------------------------------------------- */
/* Research page */
/* ---------------------------------------------------- */

.pure:hover .overlay {
  opacity: 0.9;
  cursor: pointer;
}

.pure {
  position: relative;
  width: 100%;
}

.pure .overlay {
  position: absolute;
  bottom: 20%;
  right: 0;
  left: 10%;
  height: 20%;
  width: 80%;
  opacity: 0;
  transition: 0.5s ease;
  background-color: var(--white-hover);
  border-radius: 0.5rem;
}

.pure .overlay .text {
  color: var(--primary-color);
  font-weight: bolder;
  font-size: var(--font-size-rem-9xl);
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
}

#chartContainer {
  height: 400px;
  width: 100%;
}

/* ---------------------------------------------------- */
/* Groups page */
/* ---------------------------------------------------- */

/* ---------------------------------------------------- */
/* Projects page */
/* ---------------------------------------------------- */

/* ---------------------------------------------------- */
/* Journals page */
/* ---------------------------------------------------- */

#journalList .list-group-item:hover {
  background-color: #fff !important;
  color: #000;
}

#journalList .list-group-item:hover span {
  background-color: var(--primary-color) !important;
  color: #fff;
}

/* ---------------------------------------------------- */
/* Coworking page */
/* ---------------------------------------------------- */

.card.cw img {
  height: 20vh;
  width: auto;
}

.swiper-container {
  width: 100%;
  height: 18.75rem;
}

.swiper-slide {
  text-align: center;
  font-size: var(--font-size-rem-lg);
  background: #fff;
  /* Center slide text vertically */
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  /*width:90%;*/
}

.swiper-slide:hover {
  opacity: 0.7;
}

#venture-slider .owl-stage {
  display: flex;
  align-items: flex-end;
}

#salesian-slider .owl-stage {
  display: flex;
  align-items: center;
}

#salesian-slider .owl-item {
  display: flex;
  justify-content: center;
}
/* ---------------------------------------------------- */
/* Event page */
/* ---------------------------------------------------- */

.event-img {
  position: relative;
  transition: all 2s ease;
  overflow: hidden;
  max-height: 230px;
}

.event-img img {
  height: auto;
  width: 100%;
}

.date-event {
  position: absolute;
  display: inline-block;
  bottom: 0rem;
  left: 0rem;
  background-color: var(--accent-color);
  text-align: center;
  width: 100%;
  color: #fff;
  text-transform: uppercase;
  font-weight: bolder;
  font-size: var(--font-size-rem-base);
}

.event-desc {
  line-height: 1.8em;
  font-size: var(--font-size-rem-base);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3; /* ← propiedad estándar recomendada */
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.research-events-page {
  padding-top: 60px;
  width: 100%;
}

.events-list-section {
  padding: 3rem 2.5rem 3.5rem;
  width: 100%;
}

.events-intro {
  margin: 0 auto 1.5rem;
  max-width: 760px;
  text-align: center;
}

.events-list {
  margin: 0 auto;
  max-width: 1180px;
}

.research-events-page .event-card {
  background: #fff;
  border: 1px solid #e4eaf4;
  border-radius: 12px;
  display: grid;
  gap: 1.5rem;
  grid-template-columns: minmax(300px, 38%) minmax(0, 1fr);
  margin-bottom: 1.5rem;
  overflow: hidden;
  padding: 1rem;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.research-events-page .event-card:hover {
  border-color: #c5d3e8;
  box-shadow: 0 8px 24px rgba(0, 57, 118, 0.06);
}

.research-events-page .event-card-media,
.research-events-page .event-card-content {
  min-width: 0;
}

.research-events-page .event-img {
  background: var(--ups-light);
  border-radius: 10px;
  height: 260px;
  max-height: none;
}

.research-events-page .event-img img {
  display: block;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
  width: 100%;
}

.research-events-page .event-card:hover .event-img img {
  transform: scale(1.04);
}

.research-events-page .date-event {
  background: #0d2b44;
  border-radius: 8px;
  bottom: auto;
  left: 12px;
  padding: 7px 11px;
  top: 12px;
  width: auto;
}

.research-events-page .date-event span {
  display: block;
  line-height: 1;
}

.research-events-page .date-event .day {
  font-size: var(--font-size-title-sm);
}

.research-events-page .date-event .month,
.research-events-page .date-event .year {
  font-size: var(--font-size-xs);
}

.research-events-page .event-card-content {
  display: flex;
  flex-direction: column;
  padding: 0.25rem 0.25rem 0.25rem 0;
}

.research-events-page .event-card-title {
  color: #1a1a2e;
  font-family: var(--font-heading);
  font-size: var(--font-size-title-sm);
  font-weight: 600;
  line-height: 1.35;
  margin-bottom: 0.75rem;
  margin-top: 0.5rem;
}

.research-events-page .event-desc {
  color: #5a6a82;
  display: block;
  flex: 1;
  font-size: var(--font-size-base);
  line-height: 1.7em;
  margin-bottom: 1.25rem;
  overflow: visible;
  text-align: left;
}

.research-events-page .event-card-action {
  align-items: center;
  align-self: flex-start;
  background-color: var(--ups-dark);
  border-color: var(--ups-dark);
  border-radius: 999px;
  display: inline-flex;
  font-size: var(--font-size-md);
  font-weight: 500;
  gap: 6px;
  padding: 8px 22px;
}

.research-events-page .event-card-action:hover {
  background-color: var(--ups-blue);
  border-color: var(--ups-blue);
}

.research-events-page .pagination {
  gap: 6px;
  width: 100%;
}

.research-events-page .page-numbers {
  align-items: center;
  border: 1px solid #e4eaf4;
  border-radius: 8px;
  color: var(--ups-blue);
  display: inline-flex;
  font-size: var(--font-size-md);
  justify-content: center;
  min-height: 34px;
  min-width: 34px;
  padding: 6px 10px;
  text-decoration: none;
}

.research-events-page .page-numbers.current,
.research-events-page .page-numbers:hover {
  background: var(--ups-blue);
  border-color: var(--ups-blue);
  color: #fff;
}

/* ---------------------------------------------------- */
/* News page */
/* ---------------------------------------------------- */

.new-img {
  position: relative;
  transition: all 2s ease;
  overflow: hidden;
  max-height: 250px;
}

.new-img img {
  height: auto;
  width: 100%;
}

.new-date {
  position: absolute;
  display: inline-block;
  bottom: 0rem;
  left: 0rem;
  background-color: var(--primary-color);
  text-align: center;
  width: 100%;
  color: #fff;
  text-transform: uppercase;
  font-weight: bolder;
  font-size: var(--font-size-rem-base);
  z-index: 2;
}

.new-desc {
  line-height: 1.8em;
  font-size: var(--font-size-rem-base);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-clamp: 3; /* ← propiedad estándar recomendada */
  overflow: hidden;
}

.research-news-page {
  padding-top: 60px;
  width: 100%;
}

.news-list-section {
  padding: 3rem 2.5rem 3.5rem;
  width: 100%;
}

.news-intro {
  margin: 0 auto 1.5rem;
  max-width: 760px;
  text-align: center;
}

.research-news-page .new-img {
  background: var(--ups-light);
  border-radius: 12px 12px 0 0;
  max-height: none;
}

.research-news-page .new-img img {
  display: block;
  height: 220px;
  object-fit: cover;
  transition: transform 0.3s ease;
  width: 100%;
}

.research-news-page [class*="col-"]:hover .new-img img {
  transform: scale(1.04);
}

.research-news-page .new-date {
  background: #0d2b44;
  border-radius: 8px;
  bottom: auto;
  left: 12px;
  padding: 6px 10px;
  top: 12px;
  width: auto;
}

.research-news-page .new-date span {
  display: block;
  line-height: 1;
}

.research-news-page .new-date .day {
  font-size: var(--font-size-title-xs);
}

.research-news-page .new-date .month,
.research-news-page .new-date .year {
  font-size: var(--font-size-xs);
}

.research-news-page .new-info {
  background: #fff;
  border: 1px solid #e4eaf4;
  border-radius: 0 0 12px 12px;
  border-top: 0;
  display: flex;
  flex-direction: column;
  min-height: 260px;
  padding: 1.25rem;
}

.research-news-page .new-info h5 {
  color: #1a1a2e;
  font-family: var(--font-heading);
  font-size: var(--font-size-lg);
  line-height: 1.35;
  text-align: left !important;
}

.research-news-page .new-info hr {
  border-color: #e4eaf4;
  opacity: 1;
}

.research-news-page .new-desc {
  color: #6b7a96;
  flex: 1;
  font-size: var(--font-size-md);
  line-height: 1.65em;
}

.research-news-page .new-info .btn {
  align-self: flex-end;
  background-color: var(--ups-dark);
  border-color: var(--ups-dark);
  border-radius: 999px;
  font-size: var(--font-size-md);
  font-weight: 500;
  padding: 8px 20px;
}

.research-news-page .new-info .btn:hover {
  background-color: var(--ups-blue);
  border-color: var(--ups-blue);
}

.research-news-page .pagination {
  gap: 6px;
  width: 100%;
}

.research-news-page .page-numbers {
  align-items: center;
  border: 1px solid #e4eaf4;
  border-radius: 8px;
  color: var(--ups-blue);
  display: inline-flex;
  font-size: var(--font-size-md);
  justify-content: center;
  min-height: 34px;
  min-width: 34px;
  padding: 6px 10px;
  text-decoration: none;
}

.research-news-page .page-numbers.current,
.research-news-page .page-numbers:hover {
  background: var(--ups-blue);
  border-color: var(--ups-blue);
  color: #fff;
}

/* ---------------------------------------------------- */
/* UPS on the world page */
/* ---------------------------------------------------- */

#btn-carousel-prev.carousel-control-prev {
  left: 75%;
  align-items: end;
}

#btn-carousel-next.carousel-control-next {
  align-items: end;
}

.pic-testimonial {
  position: relative;
  transition: all 2s ease;
}

.pic-testimonial:after {
  content: "";
  display: block;
  width: 90%;
  height: 90%;
  position: absolute;
  top: 5%;
  left: 5%;
  border: 1px solid #fff;
}

/* ---------------------------------------------------- */
/* Covid page */
/* ---------------------------------------------------- */

.card-covid a {
  text-decoration: none;
}

.card-covid:hover {
  opacity: 0.8;
}

.card-covid h4 {
  color: #fff;
  background-color: var(--primary-color);
}

.card-covid:hover h4 {
  background-color: var(--primary-color-2);
}

.prec-covid .img-fluid {
  width: 12rem;
}

/* Shared with ecosystem page */
.post-slide .pic {
  position: relative;
  overflow: hidden;
}

.post-slide .pic img {
  width: 100%;
  height: auto;
  transform: rotate(0deg) scale(1, 1);
  transition: all 0.6s ease-in-out 0s;
}

.post-slide .attachment-thumbnail.size-thumbnail,
.post-slide .pic-aut {
  width: 3rem !important;
  height: auto;
  transition: all 0.6s ease;
  border-radius: 50%;
}

.post-slide .pic:hover img {
  transform: rotate(10deg) scale(1.5, 1.5);
}

.post-slide ul li {
  cursor: pointer;
  display: flex;
  background-color: var(--primary-color);
}

.post-slide ul li:hover {
  opacity: 0.8;
}

.post-slide ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: bolder;
  width: 100%;
}

.post-slide .desc {
  font-size: var(--font-size-rem-base);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-clamp: 3; /* ← estándar futuro */
  overflow: hidden;
}

.owl-nav {
  display: flex;
  justify-content: center;
}

.owl-nav button.owl-prev,
.owl-nav button.owl-next {
  font-size: var(--font-size-rem-4xl) !important;
  font-weight: bolder !important;
  margin-top: 1rem;
  margin-right: 0.5rem;
  width: 2rem;
  height: 2.2rem;
  border-radius: 10%;
  align-items: center;
  color: var(--primary-color) !important;
  border: 1px solid var(--primary-color) !important;
}

.owl-nav button:hover {
  background-color: var(--primary-color) !important;
  color: #fff !important;
}

/* ---------------------------------------------------- */
/* Contacts page */
/* ---------------------------------------------------- */

.our-team {
  padding: 30px 0 40px;
  margin-bottom: 30px;
  background-color: var(--white-our-team-card);
  text-align: center;
  overflow: hidden;
  position: relative;
  border-radius: 1rem;
}

.our-team .picture {
  display: inline-block;
  height: 130px;
  width: 130px;
  margin-bottom: 50px;
  z-index: 1;
  position: relative;
}

.our-team .picture::before {
  content: "";
  width: 100%;
  height: 0;
  border-radius: 50%;
  background-color: var(--primary-color);
  position: absolute;
  bottom: 135%;
  right: 0;
  left: 0;
  opacity: 0.9;
  transform: scale(3);
  transition: all 0.3s linear 0s;
}

.our-team:hover .picture::before {
  height: 100%;
}

.our-team .picture::after {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: var(--primary-color);
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.our-team .picture img {
  width: 100%;
  height: auto;
  border-radius: 50%;
  transform: scale(1);
  transition: all 0.9s ease 0s;
}

.our-team:hover .picture img {
  box-shadow: 0 0 0 14px var(--white-our-team-card);
  transform: scale(0.7);
}

.our-team .title {
  display: block;
  font-size: var(--font-size-body);
  color: var(--dark-font-color);
}

.our-team .social {
  width: 100%;
  padding: 0;
  margin: 0;
  background-color: var(--primary-color);
  position: absolute;
  bottom: -100px;
  left: 0;
  transition: all 0.5s ease 0s;
}

.our-team:hover .social {
  bottom: 0;
}

.our-team .social li {
  display: inline-block;
}

.our-team .social li a,
.our-team .social li span {
  display: block;
  padding: 10px;
  font-size: var(--font-size-xl);
  color: #fff;
  transition: all 0.3s ease 0s;
  text-decoration: none;
}

.our-team .social li a:hover {
  color: var(--primary-color);
  background-color: var(--white-our-team-card);
}

/* ---------------------------------------------------- */
/* Awards page */
/* ---------------------------------------------------- */

.rank {
  color: white;
  position: absolute;
  right: 15px;
  font-weight: bold;
  font-size: calc(var(--font-size-rem-lg) + 0.02rem);
  background: var(--primary-color-2);
  padding: 0.5em;
  clip-path: polygon(100% 0%, 100% 100%, 50% 85%, 0 100%, 0 0);
  transition: 250ms ease-in-out;
}

.rank.winner {
  background: var(--secondary-color);
}

@keyframes gameName {
  0% {
    text-align: left;
    opacity: 1;
  }
  20% {
    text-align: left;
    opacity: 0;
  }
  50% {
    text-align: center;
    opacity: 0;
  }
  100% {
    text-align: center;
    opacity: 1;
  }
}

.card.shad {
  transition: all 0.2s ease-in;
  box-shadow: 0 3px 6px #0006;
}

/* // .card.shad img {
// 	overflow: hidden !important;
// 	border-top-right-radius: 1.25rem !important;
// 	border-top-left-radius: 1.25rem !important;
// } */

.card img.award-img {
  max-height: 15rem;
  object-fit: cover;
  overflow: hidden;
  border-top-left-radius: 1.25rem;
  border-top-right-radius: 1.25rem;
}

.card.shad .card-title {
  font-size: var(--font-size-body);
  font-weight: 600;
}

.card.shad:hover {
  background: #fff;
  box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.5);
  -webkit-transition: all 0.2s ease-in;
  -moz-transition: all 0.2s ease-in;
  -ms-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
  margin-top: 0.5rem;
}

.not-overlay {
  z-index: -1;
}

.blog-card {
  display: flex;
  flex-direction: column;
  margin: 1rem auto;
  box-shadow: 0 3px 7px -1px rgba(0, 0, 0, 0.1);
  margin-bottom: 1.6%;
  background: #fff;
  line-height: 1.4;
  font-family: var(--font-body);
  border-radius: 5px;
  overflow: hidden;
  z-index: 0;
}
.blog-card a {
  color: inherit;
}
.blog-card a:hover {
  color: var(--primary-color-2);
}
.blog-card:hover .photo.animate {
  transform: scale(1.3) rotate(3deg);
}
.blog-card .meta {
  position: relative;
  z-index: 0;
  height: 200px;
}
.blog-card .photo {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.2s;
}
.blog-card .details,
.blog-card .details ul {
  margin: auto;
  padding: 0;
  list-style: none;
}
.blog-card .details {
  position: absolute;
  top: 0;
  bottom: 0;
  left: -100%;
  margin: auto;
  transition: left 0.2s;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  padding: 10px;
  width: 100%;
  font-size: var(--font-size-rem-sm);
}
.blog-card .details a {
  text-decoration: dotted underline;
}
.blog-card .details ul li {
  display: inline-block;
}
.blog-card .details .author:before {
  font-family: FontAwesome;
  margin-right: 10px;
  content: "\f007";
}
.blog-card .details .date:before {
  font-family: FontAwesome;
  margin-right: 10px;
  content: "\f133";
}
.blog-card .details .tags ul:before {
  font-family: FontAwesome;
  content: "\f02b";
  margin-right: 10px;
}
.blog-card .details .tags li {
  margin-right: 2px;
}
.blog-card .details .tags li:first-child {
  margin-left: -4px;
}
.blog-card .description {
  padding: 1rem;
  background: #fff;
  position: relative;
  z-index: 1;
}

.blog-card .description h2 {
  line-height: 1;
  margin: 0;
  font-size: var(--font-size-rem-6xl);
}
.blog-card .description h3 {
  font-size: var(--font-size-rem-base);
  font-weight: 300;
  text-transform: uppercase;
  color: var(--gray-color);
  margin-top: 5px;
}
.blog-card .description .read-more {
  text-align: right;
}
.blog-card .description .read-more a {
  color: var(--primary-color);
  display: inline-block;
  position: relative;
  text-decoration: none;
}
.blog-card .description .read-more a:after {
  content: "\f0a9";
  font-family: FontAwesome;
  margin-left: -10px;
  opacity: 0;
  vertical-align: middle;
  transition:
    margin 0.3s,
    opacity 0.3s;
}
.blog-card .description .read-more a:hover:after {
  margin-left: 5px;
  opacity: 1;
}
.blog-card p {
  position: relative;
  margin: 1rem 0 0;
}
.blog-card p:first-of-type {
  margin-top: 1.25rem;
}
.blog-card p:first-of-type:before {
  content: "";
  position: absolute;
  height: 5px;
  background: var(--primary-color);
  width: 35px;
  top: -0.75rem;
  border-radius: 3px;
}
.blog-card:hover .details {
  left: 0%;
}
@media (min-width: 640px) {
  .blog-card {
    flex-direction: row;
    max-width: 700px;
  }
  .blog-card .meta {
    flex-basis: 40%;
    height: auto;
  }
  .blog-card .description {
    flex-basis: 60%;
  }
  .blog-card .description:before {
    transform: skewX(-3deg);
    content: "";
    background: #fff;
    width: 30px;
    position: absolute;
    left: -10px;
    top: 0;
    bottom: 0;
    z-index: -1;
  }
  .blog-card.alt {
    flex-direction: row-reverse;
  }
  .blog-card.alt .description:before {
    left: inherit;
    right: -10px;
    transform: skew(3deg);
  }
  .blog-card.alt .details {
    padding-left: 25px;
  }
}

.scrollspy-awards {
  height: 26rem;
  margin-top: 0.5rem;
  overflow: auto;
}

.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
  color: var(--bs-nav-pills-link-active-color);
  background-color: var(--primary-color);
}

.dropdown-item.active,
.dropdown-item:active {
  background-color: var(--primary-color);
}

/* ---------------------------------------------------- */
/* Content */
/* ---------------------------------------------------- */

.content-info .gallery {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(-1 * var(--bs-gutter-y));
  margin-right: calc(-0.5 * var(--bs-gutter-x));
  margin-left: calc(-0.5 * var(--bs-gutter-x));
  justify-content: center;
  width: 100%;
}

.content-info .gallery-item {
  flex: 0 0 auto;
  padding: 0.5rem;
  width: 42%;
  height: auto;
}

.content-info .gallery-item img {
  height: auto;
  max-width: 100%;
}

.content-info .wp-caption {
  margin-bottom: 1rem;
}

.content-info .wp-caption.alignright {
  float: right;
  margin-left: 1rem;
}

.content-info .wp-caption.aligncenter {
  text-align: center;
}

.content-info .wp-caption.alignnone {
  text-align: center;
}

.content-info .wp-caption.alignleft {
  float: left;
  margin-right: 1rem;
}

.content-info figure .wp-caption-text {
  font-size: var(--font-size-rem-sm);
  font-weight: bolder;
  text-align: center;
}

/* ---------------------------------------------------- */
/* Responsive */
/* ---------------------------------------------------- */

/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
  /* Home */
  .card.indicator {
    height: 14rem !important;
  }

  .indicator-number {
    font-size: var(--font-size-display-sm) !important;
  }

  /* Search form */
  .full .input-group {
    left: 5%;
    width: 90%;
  }

  /* Floating button*/
  .float {
    width: 4rem;
    height: 4rem;
  }

  .float i {
    font-size: var(--font-size-rem-8xl);
  }

  /* Coworking page */
  .swiper-container {
    height: 10rem;
  }

  /* UPS on the world page */
  #btn-carousel-prev.carousel-control-prev {
    left: 68%;
  }

  /* Content */
  .content-info .gallery-item {
    width: 90%;
  }

  /* Awards page */
  #title-text-sw.award-title {
    font-size: var(--font-size-relative-sm);
  }
}

/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) {
  /* Home */
  .card.indicator {
    height: 15rem !important;
  }

  .indicator-number {
    font-size: var(--font-size-display-md) !important;
  }

  /* Search form */
  .full .input-group {
    left: 10%;
    width: 80%;
  }

  .full .search-input-group .form-control {
    font-size: var(--font-size-rem-base);
  }

  /* Floating button*/
  .float {
    width: 4rem;
    height: 4rem;
  }

  .float i {
    font-size: var(--font-size-rem-8xl);
  }

  /* Coworking page */
  .swiper-container {
    height: 15.625rem;
  }

  /* UPS on the world page */
  #btn-carousel-prev.carousel-control-prev {
    left: 72%;
  }

  /* Content */
  .content-info .gallery-item {
    width: 45%;
  }

  /* Awards page */
  #title-text-sw.award-title {
    font-size: var(--font-size-relative-md);
  }
}

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {
  /* Home */
  .card.indicator {
    height: 18rem !important;
  }

  .indicator-number {
    font-size: var(--font-size-display-sm) !important;
  }

  /*Side*/
  .tle-gutter__bg {
    width: 4.5rem;
  }

  /* Search form */
  .search-input-group .form-control {
    font-size: var(--font-size-rem-sm);
  }

  /* Search form */
  .full .input-group {
    left: 15%;
    width: 70%;
  }

  .full .search-input-group .form-control {
    font-size: var(--font-size-rem-lg);
  }

  /* Home page */
  .search-title {
    font-size: var(--font-size-rem-lg);
  }

  .most-view-list a {
    font-size: var(--font-size-rem-xs);
  }

  .h1-home {
    font-size: var(--font-size-rem-lg);
  }

  /* Floating button*/
  .float {
    width: 4rem;
    height: 4rem;
  }

  .float i {
    font-size: var(--font-size-rem-8xl);
  }

  /* Coworking page */
  .swiper-container {
    height: 18.75rem;
  }

  /* UPS on the world page */
  #btn-carousel-prev.carousel-control-prev {
    left: 74%;
  }

  /* Content */
  .content-info .gallery-item {
    width: 33.33%;
  }

  /* Awards page */
  #title-text-sw.award-title {
    font-size: var(--font-size-relative-lg);
  }
}

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {
  /* Home */
  .card.indicator {
    height: 18rem !important;
  }

  .indicator-number {
    font-size: var(--font-size-display-lg) !important;
  }

  /*Side*/
  .tle-gutter__bg {
    width: 5.375rem;
  }

  /* Search form */
  .full .input-group {
    left: 20%;
    width: 60%;
  }

  .full .search-input-group .form-control {
    font-size: var(--font-size-rem-3xl);
  }

  /* Home page */
  .most-view-list a {
    font-size: var(--font-size-rem-sm);
  }

  .h1-home {
    font-size: var(--font-size-rem-2xl);
  }

  /* Floating button*/
  .float {
    width: 5rem;
    height: 5rem;
  }

  .float i {
    font-size: var(--font-size-rem-10xl);
  }

  /* Coworking page */
  .swiper-container {
    height: 21.875rem;
  }

  /* UPS on the world page */
  #btn-carousel-prev.carousel-control-prev {
    left: 76%;
  }

  /* Content */
  .content-info .gallery-item {
    width: 33.33%;
  }

  /* Awards page */
  #title-text-sw.award-title {
    font-size: var(--font-size-relative-xl);
  }
}

/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {
  /*Side*/
  .tle-gutter__bg {
    width: 6rem;
  }

  /* Search form */
  .full .input-group {
    left: 25%;
    width: 50%;
  }

  .full .search-input-group .form-control {
    font-size: var(--font-size-rem-6xl);
  }

  /* Home page */
  .search-title {
    font-size: var(--font-size-rem-2xl);
  }

  .most-view-list a {
    font-size: var(--font-size-rem-base);
  }

  .h1-home {
    font-size: var(--font-size-rem-4xl);
  }

  .circle-new {
    width: 6rem;
    height: 6rem;
    padding-top: 0.3rem;
  }

  .circle-new .month {
    font-size: var(--font-size-rem-4xl);
  }

  .circle-new .day {
    font-size: var(--font-size-rem-8xl);
  }

  /* Floating button*/
  .float {
    width: 5rem;
    height: 5rem;
  }

  .float i {
    font-size: var(--font-size-rem-10xl);
  }

  /* Coworking page */
  .swiper-container {
    height: 25rem;
  }

  /* UPS on the world page */
  #btn-carousel-prev.carousel-control-prev {
    left: 78%;
  }

  /* Content */
  .content-info .gallery-item {
    width: 25%;
  }

  .img-content {
    max-width: 55rem;
  }

  /* Awards page */
  #title-text-sw.award-title {
    font-size: var(--font-size-relative-2xl);
  }

  /* Nav bar */
  .bg-gradient {
    /* // background: linear-gradient(180deg, rgba(0,55,114,1) 0%, rgba(255,255,255,1) 35%) !important; */
    background: #0d2b44;
  }

  li.current-menu-item:after {
    width: 70%;
  }

  li[itemscope] a.nav-link::after {
    bottom: 0.5px; /* Position below the text */
  }
}

/* Extra extra large devices (large laptops and desktops, 1400px and up) */
@media only screen and (min-width: 1400px) {
  /* UPS on the world page */
  #btn-carousel-prev.carousel-control-prev {
    left: 77%;
  }

  .img-content {
    max-width: 60rem;
  }
}

/* ---------------------------------------------------- */
/* Libraries */
/* ---------------------------------------------------- */
.flipdown {
  margin: auto;
}

.flipdown.flipdown__theme-dark .rotor,
.flipdown.flipdown__theme-dark .rotor-top,
.flipdown.flipdown__theme-dark .rotor-leaf-front {
  background-color: var(--primary-color) !important;
}

.flipdown.flipdown__theme-dark .rotor-bottom,
.flipdown.flipdown__theme-dark .rotor-leaf-rear {
  background-color: var(--primary-color) !important;
}

.flipdown.flipdown__theme-dark
  .rotor-group:nth-child(n + 2):nth-child(-n + 3)::before,
.flipdown.flipdown__theme-dark
  .rotor-group:nth-child(n + 2):nth-child(-n + 3)::after {
  background-color: var(--primary-color) !important;
}

#title-text-sw,
#title-text-sw:before,
#title-text-sw:after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  position: relative;
}

#title-text-sw {
  display: inline-block;
  color: hsla(211, 100%, 21%, 1);
  font-family: var(--font-heading);
  font-size: var(--font-size-relative-3xl);
  text-shadow: 0.03em 0.03em 0 hsla(230, 30%, 85%, 1);
}

#title-text-sw::after {
  content: attr(data-shadow);
  position: absolute;
  top: 0.06em;
  left: 0.06em;
  z-index: -1;
  text-shadow: none;

  background-image: linear-gradient(
    45deg,
    transparent 45%,
    hsla(211, 100%, 21%, 1) 45%,
    hsla(211, 100%, 21%, 1) 55%,
    transparent 0
  );
  background-size: 0.05em 0.05em;

  background-clip: text;
  -webkit-background-clip: text;

  -webkit-text-fill-color: transparent;

  animation: shad-anim 90s linear infinite;
}

@keyframes shad-anim {
  0% {
    background-position: 0 0;
  }
  0% {
    background-position: 100% -100%;
  }
}

/* ---------------------------------------------------- */
/* Content new page */
/* ---------------------------------------------------- */

.related-new-card a {
  color: var(--dark-font-color);
  text-decoration: none;
}

.related-new-card a:hover {
  color: var(--primary-color);
}

.owl-thumbs .owl-thumb-item {
  height: 150px;
  width: 100%;
  max-width: 150px;
  background: transparent;
  border: none;
  overflow: hidden;
}
.owl-thumbs .owl-thumb-item img {
  max-width: 100%;
  height: auto;
}

#main-carousel .owl-item .item {
  display: flex;
  justify-content: center; /* Horizontally center the image */
  align-items: center; /* Vertically center the image */
  position: relative; /* To position the text overlay */
  height: 100%; /* Ensure the item takes the full height of the owl stage */
}

#main-carousel .owl-item img {
  width: auto;
  max-height: 30rem;
  object-fit: contain;
}

#main-carousel .item .text {
  width: 100%;
  text-align: center;
  font-weight: 700;
  background-color: rgba(0, 0, 0, 0.55); /* Optional: for better visibility */
  color: #fff; /* Text color */
  padding: 0.5rem; /* Padding for text */
  box-sizing: border-box;
  position: absolute;
  bottom: 0;
  margin-bottom: auto;
}

.thumbnails {
  margin-top: 0.8rem;
  text-align: center;
}
.thumbnails .owl-item {
  display: inline-block;
  cursor: pointer;
  margin-right: 0.2rem;
}
.thumbnails .owl-item img {
  height: 100%;
  overflow: hidden;
}
.synced {
  border: 2px solid var(--primary-color);
}

#thumbnails-carousel .owl-stage {
  display: flex;
  align-items: center;
}

.research-single-news-page {
  padding-top: 60px;
  width: 100%;
}

.single-news-article {
  background: #fff;
  width: 100%;
}

.single-news-hero {
  background: linear-gradient(135deg, #001f47 0%, #003976 48%, #2a6099 100%);
  background-position: center;
  background-size: cover;
  min-height: 360px;
  position: relative;
  width: 100%;
}

.single-news-hero-overlay {
  background: linear-gradient(
    90deg,
    rgba(0, 25, 60, 0.88) 0%,
    rgba(0, 25, 60, 0.62) 58%,
    rgba(0, 25, 60, 0.18) 100%
  );
  display: flex;
  flex-direction: column;
  inset: 0;
  justify-content: flex-end;
  padding: 2.75rem 3rem;
  position: absolute;
}

.single-news-back {
  align-items: center;
  align-self: flex-start;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 999px;
  color: #fff;
  display: inline-flex;
  font-size: var(--font-size-md);
  gap: 8px;
  margin-bottom: 1.25rem;
  padding: 7px 16px;
  text-decoration: none;
}

.single-news-back:hover {
  background: #fff;
  border-color: #fff;
  color: var(--ups-blue);
  text-decoration: none;
}

.single-news-title {
  color: #fff;
  font-family: var(--font-heading);
  font-size: var(--font-size-hero-md);
  font-weight: 600;
  line-height: 1.2;
  margin: 0;
  max-width: 980px;
}

.single-news-meta {
  color: rgba(255, 255, 255, 0.78);
  display: flex;
  flex-wrap: wrap;
  font-size: var(--font-size-md);
  gap: 12px 18px;
  margin-top: 1rem;
}

.single-news-meta span {
  align-items: center;
  display: inline-flex;
  gap: 8px;
}

.single-news-layout {
  display: grid;
  gap: 2rem;
  grid-template-columns: minmax(0, 1fr) 340px;
  padding: 3rem 2.5rem;
  width: 100%;
}

.single-news-main {
  min-width: 0;
}

.single-news-gallery,
.single-news-content,
.single-news-footer,
.single-news-sidebar-card {
  background: #fff;
  border: 1px solid #e4eaf4;
  border-radius: 12px;
}

.single-news-gallery {
  margin-bottom: 1.5rem;
  overflow: hidden;
  padding: 1rem;
}

.single-news-content {
  color: #26364d;
  font-size: var(--font-size-body);
  line-height: 1.85;
  padding: 2rem;
}

.single-news-content p {
  margin-bottom: 1rem;
}

.single-news-content a {
  color: var(--ups-blue);
  font-weight: 500;
  text-underline-offset: 3px;
}

.single-news-document {
  background: var(--ups-light);
  border-left: 4px solid var(--ups-blue);
  border-radius: 8px;
  margin-top: 1.5rem;
  padding: 1rem 1.25rem;
}

.single-news-footer {
  color: #6b7a96;
  font-size: var(--font-size-md);
  margin-top: 1.5rem;
  padding: 1rem 1.25rem;
}

.single-news-sidebar {
  align-self: start;
  display: grid;
  gap: 1rem;
  position: sticky;
  top: 84px;
}

.single-news-sidebar-card {
  padding: 1.25rem;
}

.single-news-sidebar .related-new-card {
  border: 0;
  border-top: 1px solid #e4eaf4;
  border-radius: 0;
}

.single-news-sidebar .related-new-card:first-of-type {
  border-top: 0;
}

.single-news-sidebar .related-new-card .card-body {
  padding: 1rem 0;
}

.single-news-sidebar .related-new-card img {
  border-radius: 8px;
  height: 74px;
  object-fit: cover;
  width: 100%;
}

.single-news-sidebar .related-new-card small {
  color: #1a1a2e;
  font-size: var(--font-size-md);
  line-height: 1.45;
}

.single-news-sidebar .related-new-card p {
  color: #6b7a96;
  font-size: var(--font-size-sm);
  margin-bottom: 0;
  margin-top: 6px;
}

.research-single-news-page #main-carousel .owl-item .item {
  background: var(--ups-light);
  border-radius: 10px;
  min-height: 360px;
  overflow: hidden;
}

.research-single-news-page #main-carousel .owl-item img {
  border-radius: 10px;
  max-height: 520px;
  max-width: 100%;
}

.research-single-news-page #thumbnails-carousel .owl-item {
  border: 2px solid transparent;
  border-radius: 8px;
  height: 74px;
  overflow: hidden;
}

.research-single-news-page #thumbnails-carousel .owl-item.synced {
  border-color: var(--ups-blue);
}

.research-single-news-page #thumbnails-carousel .owl-item img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.research-single-event-page {
  padding-top: 60px;
  width: 100%;
}

.single-event-article {
  background: #fff;
  width: 100%;
}

.single-event-hero {
  background: linear-gradient(135deg, #001f47 0%, #003976 48%, #2a6099 100%);
  background-position: center;
  background-size: cover;
  min-height: 360px;
  position: relative;
  width: 100%;
}

.single-event-hero-overlay {
  background: linear-gradient(
    90deg,
    rgba(0, 25, 60, 0.9) 0%,
    rgba(0, 25, 60, 0.66) 58%,
    rgba(0, 25, 60, 0.2) 100%
  );
  display: flex;
  flex-direction: column;
  inset: 0;
  justify-content: flex-end;
  padding: 2.75rem 3rem;
  position: absolute;
}

.single-event-back {
  align-items: center;
  align-self: flex-start;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 999px;
  color: #fff;
  display: inline-flex;
  font-size: var(--font-size-md);
  gap: 8px;
  margin-bottom: 1.25rem;
  padding: 7px 16px;
  text-decoration: none;
}

.single-event-back:hover {
  background: #fff;
  border-color: #fff;
  color: var(--ups-blue);
  text-decoration: none;
}

.single-event-title {
  color: #fff;
  font-family: var(--font-heading);
  font-size: var(--font-size-hero-md);
  font-weight: 600;
  line-height: 1.2;
  margin: 0;
  max-width: 980px;
}

.single-event-meta {
  color: rgba(255, 255, 255, 0.82);
  display: flex;
  flex-wrap: wrap;
  font-size: var(--font-size-md);
  gap: 12px 18px;
  margin-top: 1rem;
}

.single-event-meta span {
  align-items: center;
  display: inline-flex;
  gap: 8px;
}

.single-event-layout {
  background: linear-gradient(180deg, #f4f7fb 0%, #fff 100%);
  display: grid;
  gap: 2rem;
  grid-template-columns: minmax(0, 1fr) 340px;
  padding: 3rem 2.5rem;
  width: 100%;
}

.single-event-main {
  min-width: 0;
}

.single-event-image,
.single-event-content,
.single-event-footer,
.single-event-info-card {
  background: #fff;
  border: 1px solid #e4eaf4;
  border-radius: 12px;
}

.single-event-image {
  margin: 0 0 1.5rem;
  overflow: hidden;
  padding: 1rem;
}

.single-event-image img {
  border-radius: 10px;
  display: block;
  max-height: 620px;
  object-fit: contain;
  width: 100%;
}

.single-event-content {
  color: #26364d;
  font-size: var(--font-size-body);
  line-height: 1.85;
  padding: 2rem;
}

.single-event-content p {
  margin-bottom: 1rem;
}

.single-event-content a {
  color: var(--ups-blue);
  font-weight: 500;
  text-underline-offset: 3px;
}

.single-event-footer {
  color: #6b7a96;
  font-size: var(--font-size-md);
  margin-top: 1.5rem;
  padding: 1rem 1.25rem;
}

.research-single-group-page {
  padding-top: 60px;
}

.single-group-modern {
  background: #fff;
}

.single-group-hero {
  min-height: 460px;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.single-group-hero-media {
  inset: 0;
  position: absolute;
}

.single-group-hero-media img {
  filter: saturate(1.02) contrast(1.02);
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
  width: 100%;
}

.single-group-hero-overlay {
  background: linear-gradient(
    90deg,
    rgba(0, 25, 60, 0.92) 0%,
    rgba(0, 25, 60, 0.64) 58%,
    rgba(0, 25, 60, 0.12) 100%
  );
  bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  left: 0;
  padding: 3rem 3.5rem;
  position: absolute;
  right: 0;
  top: 0;
}

.single-group-hero-overlay .hero-tag,
.single-group-hero-overlay .hero-title {
  color: #fff;
}

.single-group-badge {
  align-self: flex-start;
  background: #fcc000;
  border-radius: 999px;
  color: #001f47;
  font-family: var(--font-heading);
  font-size: var(--font-size-md);
  font-weight: 700;
  margin-bottom: 1rem;
  padding: 0.45rem 0.85rem;
}

.single-group-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1rem;
}

.single-group-meta span {
  align-items: center;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  color: #fff;
  display: inline-flex;
  font-size: var(--font-size-base);
  gap: 0.45rem;
  padding: 0.45rem 0.8rem;
}

.single-group-meta i {
  color: #fff;
}

.single-group-layout {
  background:
    radial-gradient(circle at 8% 0%, rgba(0, 57, 118, 0.08), transparent 28%),
    linear-gradient(180deg, #fff 0%, #f4f7fb 100%);
  display: grid;
  gap: 2rem;
  grid-template-columns: minmax(0, 1fr) 360px;
  padding: 3rem 2.5rem;
}

.single-group-content,
.single-group-card {
  background: #fff;
  border: 1px solid var(--ups-border);
  border-radius: 14px;
  box-shadow: 0 18px 38px rgba(0, 31, 71, 0.06);
}

.single-group-content {
  min-width: 0;
  overflow: hidden;
  padding: 0;
}

.single-group-profile-heading {
  align-items: center;
  background:
    radial-gradient(
      circle at 90% 0%,
      rgba(18, 184, 244, 0.12),
      transparent 28%
    ),
    linear-gradient(135deg, #f9fbfd 0%, #ffffff 100%);
  border-bottom: 1px solid var(--ups-border);
  display: flex;
  gap: 1rem;
  padding: 1.5rem 1.75rem;
}

.single-group-profile-heading .section-label {
  margin-bottom: 0.35rem;
}

.single-group-profile-heading h2 {
  color: var(--ups-blue);
  font-family: var(--font-heading);
  font-size: var(--font-size-title-lg);
  font-weight: 600;
  line-height: 1.35;
  margin: 0;
}

.single-group-profile-icon {
  align-items: center;
  background: #eef6ff;
  border: 1px solid #dce7f4;
  border-radius: 14px;
  display: flex;
  flex: 0 0 54px;
  height: 54px;
  justify-content: center;
  width: 54px;
}

.single-group-content .entry-content {
  color: #334155;
  font-size: var(--font-size-body);
  line-height: 1.8;
  padding: 1.75rem;
}

.single-group-profile-text > p {
  background: #f9fbfd;
  border: 1px solid #e5edf7;
  border-radius: 12px;
  margin-bottom: 1rem;
  padding: 1rem 1.15rem;
}

.single-group-profile-text > p:first-of-type {
  background: #fff;
  border-left: 5px solid var(--ups-blue);
  box-shadow: 0 12px 26px rgba(0, 31, 71, 0.05);
}

.single-group-profile-text strong,
.single-group-profile-text b {
  color: #001f47;
  font-family: var(--font-heading);
  font-weight: 700;
}

.single-group-profile-text ul,
.single-group-profile-text ol {
  display: grid;
  gap: 0.65rem;
  list-style: none;
  margin: 1rem 0;
  padding: 0;
}

.single-group-profile-text li {
  background: #f9fbfd;
  border: 1px solid #e5edf7;
  border-radius: 10px;
  color: #263b57;
  padding: 0.8rem 1rem 0.8rem 2.6rem;
  position: relative;
}

.single-group-profile-text li::before {
  background: var(--ups-blue);
  border-radius: 50%;
  content: "";
  height: 8px;
  left: 1rem;
  position: absolute;
  top: 1.35rem;
  width: 8px;
}

.single-group-content .entry-content h2,
.single-group-content .entry-content h3,
.single-group-content .entry-content h4 {
  color: var(--ups-blue);
  margin-top: 1.5rem;
}

.single-group-content .entry-content img {
  border-radius: 10px;
  height: auto;
  max-width: 100%;
}

.single-group-content .entry-content table {
  border: 1px solid var(--ups-border);
  display: block;
  margin: 1.5rem 0;
  overflow-x: auto;
  width: 100%;
}

.single-group-content .entry-content th,
.single-group-content .entry-content td {
  border: 1px solid var(--ups-border);
  padding: 0.75rem;
  vertical-align: top;
}

.single-group-image-section {
  border-top: 1px solid var(--ups-border);
}

.single-group-image-heading {
  border-bottom: 0;
  border-top: 1px solid #fff;
}

.single-group-slider {
  padding: 0 1.75rem 1.75rem;
}

.single-group-image-card {
  background: #f4f7fb;
  border: 1px solid #dce7f4;
  border-radius: 14px;
  margin: 0;
  overflow: hidden;
}

.single-group-slider .carousel-control-prev,
.single-group-slider .carousel-control-next {
  background: rgba(0, 31, 71, 0.72);
  border: 0;
  border-radius: 999px;
  bottom: auto;
  height: 44px;
  opacity: 1;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
}

.single-group-slider .carousel-control-prev {
  left: 2.5rem;
}

.single-group-slider .carousel-control-next {
  right: 2.5rem;
}

.single-group-slider-indicators {
  bottom: 2.15rem;
  margin-bottom: 0;
}

.single-group-slider-indicators [data-bs-target] {
  background-color: var(--ups-blue);
  border-radius: 999px;
  height: 8px;
  width: 28px;
}

.single-group-body-image {
  display: block;
  height: auto;
  max-height: 520px;
  object-fit: contain;
  object-position: center top;
  width: 100%;
}

.single-group-image-card:only-child .single-group-body-image {
  max-height: 620px;
}

.single-group-sidebar {
  min-width: 0;
}

.single-group-card {
  padding: 1.5rem;
  position: sticky;
  top: 92px;
}

.single-group-card-icon {
  align-items: center;
  background: #eef6ff;
  border-radius: 999px;
  display: flex;
  height: 48px;
  justify-content: center;
  margin-bottom: 1rem;
  width: 48px;
}

.single-group-card h2 {
  color: var(--ups-blue);
  font-family: var(--font-heading);
  font-size: var(--font-size-title-md);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.single-group-card p {
  color: #5a6a82;
  font-size: var(--font-size-base);
  line-height: 1.65;
}

.single-group-actions {
  display: grid;
  gap: 0.85rem;
  margin-top: 1.25rem;
}

.single-group-actions .btn-ups {
  justify-content: center;
}

.single-group-secondary-link {
  align-items: center;
  border: 1px solid var(--ups-blue);
  border-radius: 8px;
  color: var(--ups-blue);
  display: inline-flex;
  font-size: var(--font-size-md);
  font-weight: 600;
  gap: 0.45rem;
  justify-content: center;
  padding: 0.75rem 1rem;
  text-decoration: none;
  transition:
    background-color 0.18s,
    color 0.18s;
}

.single-group-secondary-link:hover {
  background: var(--ups-blue);
  color: #fff;
  text-decoration: none;
}

.single-group-secondary-link:hover i {
  color: #fff;
}

.single-group-footer {
  background: var(--ups-blue);
  color: #fff;
  padding: 1.25rem 2.5rem;
  text-align: center;
}

.single-event-sidebar {
  align-self: start;
  display: grid;
  gap: 1rem;
  position: sticky;
  top: 84px;
}

.single-event-info-card {
  border-left: 5px solid var(--ups-blue);
  padding: 1.25rem;
}

.single-event-info-item {
  align-items: flex-start;
  border-top: 1px solid #e4eaf4;
  display: flex;
  gap: 12px;
  padding: 1rem 0;
}

.single-event-info-item:first-of-type {
  border-top: 0;
}

.single-event-info-item i {
  align-items: center;
  background: #eaf3ff;
  border-radius: 50%;
  color: var(--ups-blue);
  display: inline-flex;
  flex-shrink: 0;
  height: 34px;
  justify-content: center;
  width: 34px;
}

.single-event-info-item strong,
.single-event-info-item span {
  display: block;
}

.single-event-info-item strong {
  color: #1a1a2e;
  font-size: var(--font-size-md);
  margin-bottom: 4px;
}

.single-event-info-item span {
  color: #5a6a82;
  font-size: var(--font-size-md);
  line-height: 1.55;
}

.single-event-action {
  align-items: center;
  background: var(--ups-dark);
  border-radius: 999px;
  color: #fff;
  display: flex;
  font-size: var(--font-size-md);
  font-weight: 500;
  gap: 8px;
  justify-content: center;
  margin-top: 0.75rem;
  padding: 10px 18px;
  text-decoration: none;
}

.single-event-action:hover {
  background: var(--ups-blue);
  color: #fff;
  text-decoration: none;
}

.single-event-action.secondary {
  background: transparent;
  border: 1px solid var(--ups-blue);
  color: var(--ups-blue);
}

.single-event-action.secondary:hover {
  background: var(--ups-blue);
  color: #fff;
}

.single-event-action.disabled {
  background: #edf1f6;
  color: #7a8699;
  cursor: not-allowed;
  pointer-events: none;
}

/*  ████████████████████████████████████████████████████████████  */
/*  ====================== Page Innovación ===================== */
/*  ████████████████████████████████████████████████████████████  */

.innovation-modern-page {
  padding-top: 60px;
}

.innovation-modern-hero {
  height: 420px;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.innovation-modern-hero-media {
  height: 100%;
  width: 100%;
}

.innovation-modern-hero-media img {
  display: block;
  height: 100%;
  object-fit: cover;
  object-position: center;
  width: 100%;
}

.innovation-modern-hero-overlay {
  background: linear-gradient(
    90deg,
    rgba(0, 25, 60, 0.86) 0%,
    rgba(0, 25, 60, 0.55) 58%,
    rgba(0, 25, 60, 0.12) 100%
  );
  display: flex;
  flex-direction: column;
  inset: 0;
  justify-content: flex-end;
  padding: 2.75rem 3rem;
  position: absolute;
}

.innovation-modern-intro,
.innovation-modern-programs {
  padding: 3rem 2.5rem;
}

.innovation-modern-image {
  border-radius: 12px;
  box-shadow: 0 10px 28px rgba(0, 57, 118, 0.08);
  margin: 0;
  overflow: hidden;
}

.innovation-modern-image img {
  display: block;
  min-height: 320px;
  object-fit: cover;
}

.innovation-hub-page .innovation-modern-image img {
  max-height: 360px;
  min-height: 0;
}

.innovation-modern-band {
  align-items: center;
  background: #0d2b44;
  color: #fff;
  display: flex;
  gap: 2rem;
  justify-content: space-between;
  padding: 2.25rem 2.5rem;
}

.innovation-modern-band .section-label,
.innovation-modern-band h2,
.innovation-modern-band p {
  color: #fff;
}

.innovation-modern-band h2 {
  font-family: var(--font-heading);
  font-size: var(--font-size-title-lg);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.innovation-modern-band p {
  margin-bottom: 0;
  max-width: 760px;
}

.innovation-modern-gallery {
  background: #f4f7fb;
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  padding: 2.5rem;
}

.innovation-gallery-card {
  border-radius: 12px;
  min-height: 230px;
  overflow: hidden;
  position: relative;
}

.innovation-gallery-card.large {
  grid-column: span 2;
  grid-row: span 2;
}

.innovation-gallery-card.tall {
  grid-row: span 2;
}

.innovation-gallery-card img {
  display: block;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
  width: 100%;
}

.innovation-gallery-card::after {
  background: linear-gradient(
    180deg,
    transparent 28%,
    rgba(0, 20, 45, 0.86) 100%
  );
  content: "";
  inset: 0;
  position: absolute;
}

.innovation-gallery-card span {
  bottom: 1rem;
  color: #fff;
  font-family: var(--font-heading);
  font-size: var(--font-size-body);
  font-weight: 600;
  left: 1rem;
  position: absolute;
  right: 1rem;
  z-index: 1;
}

.innovation-gallery-card:hover img {
  transform: scale(1.05);
}

.innovation-modern-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 420px;
}

.innovation-hub-page .innovation-modern-split {
  min-height: 340px;
}

.innovation-modern-split-media img {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.innovation-hub-page .innovation-modern-split-media img {
  max-height: 360px;
}

.innovation-modern-split-content {
  align-self: center;
  padding: 3rem 2.5rem;
}

.innovation-modern-section-title {
  margin: 0 auto 1.5rem;
  max-width: 760px;
  text-align: center;
}

.innovation-program-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.innovation-program-card {
  background: #fff;
  border: 1px solid #e4eaf4;
  border-radius: 12px;
  overflow: hidden;
  transition:
    border-color 0.2s,
    box-shadow 0.2s,
    transform 0.2s;
}

.innovation-program-card:hover {
  border-color: var(--ups-blue);
  box-shadow: 0 10px 28px rgba(0, 57, 118, 0.08);
  transform: translateY(-2px);
}

.innovation-program-card img {
  display: block;
  height: 220px;
  object-fit: cover;
  width: 100%;
}

.innovation-hub-page .innovation-program-card img {
  height: 180px;
}

.innovation-program-card div {
  padding: 1.25rem;
}

.innovation-program-card h3 {
  color: #1a1a2e;
  font-family: var(--font-heading);
  font-size: var(--font-size-xl);
  font-weight: 600;
  margin-bottom: 0.65rem;
}

.innovation-program-card p {
  color: #5a6a82;
  font-size: var(--font-size-md);
  line-height: 1.65;
  margin-bottom: 0;
}

.innovation-modern-capabilities {
  background: #f4f7fb;
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding: 2.5rem;
}

.innovation-modern-capabilities article {
  align-items: center;
  background: #fff;
  border: 1px solid #e4eaf4;
  border-radius: 12px;
  display: flex;
  gap: 1rem;
  justify-content: center;
  padding: 1.25rem;
}

.innovation-capability-icon {
  filter: grayscale(1);
  flex: 0 0 auto;
  height: 58px !important;
  max-height: 58px;
  max-width: 58px;
  object-fit: contain;
  transition:
    filter 0.2s,
    transform 0.2s;
  width: 58px !important;
}

.innovation-modern-capabilities article:hover .innovation-capability-icon {
  filter: grayscale(0);
  transform: scale(1.04);
}

.innovation-modern-capabilities h3 {
  color: var(--ups-blue);
  font-family: var(--font-heading);
  font-size: var(--font-size-body);
  font-weight: 600;
  margin: 0;
  min-width: 0;
}

.innovation-modern-cta {
  align-items: center;
  background: #0d2b44;
  color: #fff;
  display: flex;
  gap: 2rem;
  justify-content: space-between;
  padding: 2.5rem;
}

.innovation-modern-cta .section-label,
.innovation-modern-cta h2,
.innovation-modern-cta p {
  color: #fff;
}

.innovation-modern-cta h2 {
  font-family: var(--font-heading);
  font-size: var(--font-size-title-xl);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.innovation-modern-cta p {
  margin-bottom: 0;
  max-width: 760px;
}

/* ========== Navbar alterno ========== */

#navbar-alterno {
  background: transparent !important;
  transition:
    background 0.35s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 60px;
  z-index: 1050;
}

#navbar-alterno.scrolled {
  background: #0d2b44 !important;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

@media (max-width: 1200px) {
  #navbar-alterno #navbarMenuAlterno.navbar-collapse {
    background: #0d2b44 !important;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  }
  #navbar-alterno .navbar-collapse.show,
  #navbar-alterno .navbar-collapse.collapsing {
    background: #0d2b44 !important;
  }
}

@media (max-width: 1200px) {
  #navbar-alterno .navbar-collapse {
    width: 100vw !important;
    max-width: 100vw !important;
    left: 0 !important;
    right: 0 !important;
    position: fixed !important;
    top: 60px;
    border: none;
    border-radius: 0;
    margin: 0 !important;
    padding: 0 !important;
    z-index: 2000;
  }
  #navbar-alterno .navbar-collapse .container-fluid,
  #navbar-alterno .navbar-collapse .container {
    width: 100vw !important;
    max-width: 100vw !important;
    padding: 0 !important;
    margin: 0 !important;
  }
  #navbar-alterno .navbar-nav {
    padding: 0 !important;
    margin: 0 !important;
  }
}

@media (max-width: 1200px) {
  #navbar-alterno #navbarMenuAlterno {
    width: 100vw !important;
    left: 0 !important;
  }
  #navbar-alterno #navbarMenuAlterno .container-fluid {
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin: 0 !important;
    width: 100vw !important;
  }
  #navbar-alterno #navbarMenuAlterno .navbar-nav {
    padding-left: 1.5rem !important;
    margin-left: 0 !important;
  }
  #navbar-alterno #navbarMenuAlterno .nav-link {
    padding-left: 0 !important;
    margin-left: 0 !important;
  }
}

@media (max-width: 1200px) {
  #navbar-alterno #navbarMenuAlterno form.form-inline {
    padding-left: 1.2rem !important;
    margin-bottom: 1.2rem;
  }
}

#navbar-alterno .navbar-toggler {
  margin-right: 1.2rem !important;
}

@media (max-width: 1200px) {
  #navbar-alterno .navbar-toggler {
    margin-right: 0.1rem !important;
  }
}

/* ========== HERO Banner innovación ========== */
#innovacion img {
  width: 100%;
  height: auto;
  display: block;
}

/* ========== Títulos y Párrafos ========== */
.seccion-titulo {
  color: #042644 !important;
  font-weight: bold;
  margin-bottom: 1rem;
}
.parrafo-innovacion-cls,
#parrafo-innovacion {
  text-align: justify;
  font-size: var(--font-size-rem-base);
}

/* ========== Imagen Quienes Somos ========== */
#image-quienes-somos {
  max-height: 60%;
  width: auto;
  height: 75% !important;
}

/* ========== Galería 1 ========== */
.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  transition: filter 0.4s ease;
}
.gallery-item:hover img {
  filter: grayscale(0%);
}
.gallery-label-hover {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  text-align: center;
  background-color: rgba(4, 38, 68, 0.85);
  color: #fff;
  padding: 0.75rem;
  font-weight: bold;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  z-index: 2;
}
.gallery-item:hover .gallery-label-hover {
  transform: translateY(0);
}

.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: default;
  z-index: 1;
  transition: z-index 0s;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  transition:
    filter 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.45s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover img,
.gallery-item:focus img {
  filter: grayscale(0%);
  transform: scale(1.08);
  box-shadow:
    0 8px 32px rgba(30, 40, 70, 0.18),
    0 1.5rem 4rem 0 rgba(0, 0, 0, 0.25);
  z-index: 10;
}

.gallery-item:hover,
.gallery-item:focus {
  z-index: 10;
}

.gallery-label-hover {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  text-align: left;
  background: linear-gradient(
    0deg,
    rgba(0, 0, 0, 0.68) 70%,
    rgba(0, 0, 0, 0) 100%
  );
  color: #fff;
  padding: 1.2rem 2rem 1.2rem 1.5rem;
  font-size: var(--font-size-rem-8xl);
  font-weight: 400;
  opacity: 1;
  z-index: 3;
  pointer-events: none;
  transition: background 0.3s;
}

.gallery-item:hover .gallery-label-hover {
  background: linear-gradient(
    0deg,
    rgba(0, 0, 0, 0.78) 70%,
    rgba(0, 0, 0, 0) 100%
  );
}

/* ========== Emprendimiento ========== */

#emprendimiento-section {
  background: #f9f9f9;
  padding-bottom: 2rem;
  position: relative;
  overflow: hidden;
}

.d-none {
  display: none !important;
}

#emprendimiento-title {
  font-size: clamp(1.2rem, 6vw, 2.5rem);
  color: #042644 !important;
  font-weight: bold;
  text-align: center;
}

#emprendimiento-section p {
  font-size: var(--font-size-rem-base);
  line-height: 1.7;
  text-align: justify;
}

.emprendimiento-arrow {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 1rem auto;
  width: 48px;
  height: 48px;
  background: rgba(4, 38, 68, 0.12);
  border-radius: 50%;
  cursor: pointer;
  transition:
    background 0.2s,
    transform 0.2s;
  color: #042644;
  box-shadow: 0 2px 8px rgba(4, 38, 68, 0.07);
}
.emprendimiento-arrow:hover,
.emprendimiento-arrow:focus {
  background: #042644;
  color: #fff;
  transform: scale(1.08);
  outline: none;
}
#emprendimiento-description {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: all 0.4s ease-in-out;
}

#emprendimiento-description.show {
  max-height: 500px;
  opacity: 1;
}

/* Flecha rotada */
.emprendimiento-arrow svg {
  transition: transform 0.4s ease;
}

.emprendimiento-arrow.open svg {
  transform: rotate(180deg);
}

/* ========== Animación (.fade-in ) ========== */
.fade-in {
  animation: fadeInEmprendimiento 0.4s ease-in-out forwards;
}

@keyframes fadeInEmprendimiento {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ========== Galería 2 (hover-card) ========== */
.hover-card {
  position: relative;
  overflow: hidden;
  height: 100%;
}
.hover-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hover-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  color: #fff;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: #042644e0;
  z-index: 2;
}
.hover-card:hover .hover-overlay {
  opacity: 1;
}
.hover-overlay h5 {
  font-weight: bold;
  text-transform: uppercase;
}
.hover-overlay p {
  font-size: var(--font-size-rem-md);
}

/* ========== Iconos grayscale-hover ========== */
.grayscale-hover {
  filter: grayscale(100%);
  transition:
    filter 0.3s ease,
    transform 0.3s ease;
}
.grayscale-hover:hover {
  filter: grayscale(0%);
  transform: scale(1.05);
}
.feature-icon {
  max-width: 80px;
  height: auto;
  display: inline-block;
  filter: grayscale(100%);
  transition:
    filter 0.3s ease,
    transform 0.3s ease;
}
.feature-icon:hover {
  filter: grayscale(0%);
  transform: scale(1.1);
}
.icon-feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* ========== Iconos info ========== */
/* Contenedor ancho completo */
.info-servicios {
  width: 100%;
  background: #042644; /* fondo azul oscuro */
  color: #fff; /* texto blanco */
  padding: 3rem 2rem;
  transition: all 0.4s ease-in-out;
}

.info-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}

/* Estilo título */
.info-servicios h4 {
  text-align: center;
  margin-bottom: 2rem;
  color: #fff; /* asegurar blanco */
}

/* Listado en columnas con máximo 3 ítems por columna */
.info-servicios ul {
  column-count: auto; /* número de columnas automáticas */
  column-width: 250px; /* ancho mínimo de columna */
  column-gap: 2rem; /* espacio entre columnas */
  list-style: disc inside;
  padding: 0;
  margin: 0 auto;
  max-width: 900px;
}

.info-servicios li {
  margin-bottom: 0.75rem;
  break-inside: avoid; /* evita cortes feos entre columnas */
  color: #fff; /* texto blanco */
}

.clickable-icon {
  cursor: pointer; /* convierte el cursor en mano al pasar */
  transition: transform 0.2s ease;
}

.clickable-icon:hover {
  transform: scale(1.05); /* pequeño efecto de zoom opcional */
}

/* ========== Flip Card (ASESORÍA & FORMACIÓN CONTINUA) ========== */
.flip-card {
  background: transparent;
  perspective: 1000px;
  height: 100%;
  position: relative;
  min-height: 350px;
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.8s;
  transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
  position: absolute; /* superpuestos */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  overflow: hidden;
}

.flip-card-front img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.flip-card-back {
  background: #042644;
  color: white;
  transform: rotateY(180deg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 1.5rem;
}

/* ========== Footer alternativo ========== */
#footer-alterno {
  background: #0d2b44;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 0;
}

#colophon.research-site-footer {
  background: #0d2b44;
}
#footer-alterno .footer-logo img {
  max-width: 210px;
  width: 100%;
  height: auto;
  margin-bottom: 1.5rem;
}
#footer-alterno .footer-text {
  color: #fff;
  font-size: var(--font-size-rem-8xl);
  font-weight: 400;
  letter-spacing: 0.5px;
  line-height: 1.2;
  font-family: var(--font-body);
}
@media (max-width: 768px) {
  #footer-alterno {
    padding: 30px 0;
    min-height: 160px;
  }
  #footer-alterno .footer-logo img {
    max-width: 140px;
    margin-bottom: 1rem;
  }
  #footer-alterno .footer-text {
    font-size: var(--font-size-rem-xl);
  }
}

/* ========== Información final (Intereses) ========== */
.info-final-col {
  min-height: 320px;
  overflow: hidden;
  position: relative;
}
.info-final-col img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.overlay-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(25, 45, 78, 0.8);
  z-index: 2;
}
.overlay-text-final {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
}
.info-titulo {
  color: #fff;
  font-weight: 900;
  font-size: calc(var(--font-size-rem-8xl) + 0.2rem);
  letter-spacing: 1px;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.4);
}
.info-titulo-light {
  color: #fff;
  font-size: var(--font-size-rem-5xl);
  line-height: 1.2;
}
.info-titulo-light .info-titulo {
  color: #fff;
  font-weight: 900;
  font-size: calc(var(--font-size-rem-8xl) + 0.2rem);
}
/* Última columna: solo fondo sólido */
.intereses-bg {
  background-color: #294964;
  min-height: 320px;
}
.intereses-bg img,
.intereses-bg .overlay-bg {
  display: none !important;
}
/* Responsive */
@media (max-width: 768px) {
  .info-final-col {
    min-height: 160px;
  }
  .info-titulo {
    font-size: var(--font-size-rem-2xl);
  }
  .info-titulo-light {
    font-size: var(--font-size-rem-lg);
  }
}

.cta-link {
  text-decoration: none;
  color: #ffffff;
  font-size: var(--font-size-rem-4xl);
  transition: all 0.3s ease;
  padding: 0.5rem 1rem;
  border: 2px solid transparent;
  border-radius: 6px;
  display: inline-block;
}

.cta-link:hover {
  color: #ffc107;
  border-color: #ffc107;
  background-color: rgba(255, 255, 255, 0.05);
  text-shadow: 0 0 4px rgba(255, 255, 255, 0.4);
}

/* Responsive */
@media (max-width: 768px) {
  #intereses-section .info-final-col {
    min-height: 160px;
  }
  .info-titulo {
    font-size: var(--font-size-rem-2xl);
  }
  .info-titulo-light {
    font-size: var(--font-size-rem-lg);
  }
}

/* ========== Responsive ========== */
@media (max-width: 1200px) {
  .gallery-item img,
  .hover-card img {
    height: auto;
  }
  #emprendimiento-section p {
    padding: 0 1rem;
  }
}
@media (max-width: 768px) {
  .gallery-item img,
  .hover-card img {
    height: auto;
  }
  #emprendimiento-title {
    font-size: var(--font-size-rem-4xl);
  }
  #emprendimiento-section p {
    font-size: var(--font-size-rem-base);
    padding: 0 0.5rem;
  }
  .overlay-text {
    top: 0.5rem;
    left: 0.5rem;
    padding: 0.5rem 0.75rem;
    font-size: var(--font-size-rem-md);
  }
}
@media (max-width: 576px) {
  .hover-card,
  .icon-feature {
    margin-bottom: 1rem;
  }
  .seccion-titulo {
    font-size: calc(var(--font-size-rem-xl) + 0.05rem);
    text-align: center;
  }
}

/* ========== side-bar ========== */

#scroll-sidebar {
  --sidebar-icon-column: 84px;
  --sidebar-icon-size: 42px;
  position: fixed;
  top: 60px;
  right: 0;
  width: 80px;
  height: calc(100vh - 60px);
  box-sizing: border-box;
  z-index: 1020;
  background: rgba(120, 120, 120, 0.32);
  backdrop-filter: blur(2px);
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.07);
  display: flex;
  flex-direction: column;
  align-items: center;
  transition:
    width 0.22s cubic-bezier(0.64, 0.1, 0.19, 0.97),
    background 0.22s;
  overflow: visible;
  border-left: 0px solid #fff;
}

#scroll-sidebar:hover,
#scroll-sidebar:focus-within {
  width: 180px;
  background: rgba(55, 55, 55, 0.92);
}

body.research-header-solid #scroll-sidebar {
  background: rgba(13, 43, 68, 0.82);
  backdrop-filter: blur(8px);
  box-shadow: -8px 0 24px rgba(0, 31, 71, 0.16);
}

body.research-header-solid #scroll-sidebar:hover,
body.research-header-solid #scroll-sidebar:focus-within {
  background: rgba(13, 43, 68, 0.95);
}

.sidebar-list {
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.sidebar-item {
  width: 100%;
  display: grid;
  grid-template-columns: var(--sidebar-icon-column) 1fr;
  align-items: center;
  height: 58px;
  position: relative;
  transition: background 0.14s;
}

.sidebar-item.active .sidebar-icon:before {
  filter: drop-shadow(0 0 7px #fcc000cc) brightness(1.15);
  opacity: 1;
}
.sidebar-item:hover {
  background: rgba(255, 255, 255, 0.08);
}

.sidebar-icon {
  width: var(--sidebar-icon-size);
  height: var(--sidebar-icon-size);
  display: flex;
  justify-content: center;
  align-items: center;
  justify-self: center;
  z-index: 1;
}
.sidebar-icon:before {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  background: url('data:image/svg+xml;utf8,<svg width="18" height="18" viewBox="0 0 18 18" fill="lightgray" xmlns="http://www.w3.org/2000/svg"><polygon points="9,1 17,9 9,17 1,9" /></svg>')
    no-repeat center/contain;
  opacity: 0.7;
  margin-left: 0;
  transition:
    opacity 0.19s,
    filter 0.19s;
}

.sidebar-item.active .sidebar-icon:before {
  background: url('data:image/svg+xml;utf8,<svg width="18" height="18" viewBox="0 0 18 18" fill="%23fcc000" xmlns="http://www.w3.org/2000/svg"><polygon points="9,1 17,9 9,17 1,9" /></svg>')
    no-repeat center/contain;
  opacity: 0.95;
}

.sidebar-sep {
  width: var(--sidebar-icon-column);
  height: 36px;
  opacity: 0.3;
  margin: 0;
  position: relative;
}

.sidebar-sep::before {
  content: "";
  display: block;
  height: 100%;
  border-left: 0.5px solid #fff;
  margin-left: 50%;
}

#scroll-sidebar:hover .sidebar-sep {
  opacity: 0.45;
}

.sidebar-item a {
  color: #fff !important;
  display: flex;
  align-items: center;
  min-height: 40px;
  width: 86px;
  text-decoration: none;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.14s;
  margin-left: 0;
}

#scroll-sidebar:hover .sidebar-item a {
  opacity: 1;
  pointer-events: auto;
}

.sidebar-icon.icon-active::before {
  background: url('data:image/svg+xml;utf8,<svg width="18" height="18" viewBox="0 0 18 18" fill="%23fcc000" xmlns="http://www.w3.org/2000/svg"><polygon points="9,1 17,9 9,17 1,9" /></svg>')
    no-repeat center/contain;
  opacity: 0.95;
  animation: pulse-glow 1.3s infinite ease-in-out;
}

/* Animación pulse */
@keyframes pulse-glow {
  0% {
    filter: drop-shadow(0 0 0px #fcc000);
  }
  50% {
    filter: drop-shadow(0 0 7px #fcc000);
  }
  100% {
    filter: drop-shadow(0 0 0px #fcc000);
  }
}

@media (max-width: 768px) {
  #scroll-sidebar {
    display: none !important;
  }
}

/*  ████████████████████████████████████████████████████████████  */
/*  =================== Page internacionalización ==============  */
/*  ████████████████████████████████████████████████████████████  */

.intl-modern-page {
  background: #fff;
  padding-top: 60px;
}

.intl-modern-hero {
  height: 72vh;
  min-height: 520px;
  overflow: hidden;
  position: relative;
}

.intl-modern-hero .position-relative,
.intl-modern-hero img {
  height: 100%;
  width: 100%;
}

.intl-modern-hero .position-relative {
  cursor: default !important;
  display: block !important;
}

.intl-modern-hero img {
  border-radius: 0 !important;
  object-fit: cover;
  object-position: center;
}

.intl-modern-hero-overlay {
  background: linear-gradient(
    90deg,
    rgba(0, 25, 60, 0.9) 0%,
    rgba(0, 25, 60, 0.56) 58%,
    rgba(0, 25, 60, 0.08) 100%
  );
  bottom: 0;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  left: 0;
  padding: 3rem;
  position: absolute;
  right: 0;
  top: 0;
}

.intl-modern-hero-overlay p {
  color: rgba(255, 255, 255, 0.78);
  font-size: var(--font-size-body);
  line-height: 1.7;
  margin-top: 0.85rem;
  max-width: 620px;
}

.intl-modern-split {
  border: 0 !important;
  overflow: hidden;
}

.intl-modern-split > .row {
  min-height: 470px;
}

.intl-modern-split h2 {
  color: var(--ups-blue) !important;
  font-family: var(--font-heading);
  font-size: var(--font-size-title-xl);
  letter-spacing: 0;
  text-align: left !important;
  text-transform: none !important;
}

.intl-modern-split p {
  color: #4a5568 !important;
  font-size: var(--font-size-base) !important;
  line-height: 1.85 !important;
  text-align: left !important;
}

.intl-modern-split .col-md-8,
.intl-modern-split .col-md-6.d-flex {
  background:
    radial-gradient(
      circle at 90% 8%,
      rgba(18, 184, 244, 0.12),
      transparent 28%
    ),
    #fff !important;
}

.intl-modern-split video,
.intl-modern-split img {
  min-height: 470px;
}

.intl-modern-split-alt {
  background: #f4f7fb !important;
}

.intl-modern-band {
  background: #0d2b44 !important;
  border: 0;
  padding: 2.35rem 2.5rem !important;
}

.intl-modern-band .intl-subtitle,
.intl-modern-band h2 {
  color: #fff;
  font-family: var(--font-heading);
}

.intl-modern-band .intl-title {
  font-size: var(--font-size-title-2xl) !important;
}

.intl-modern-rankings {
  background: #f4f7fb;
  padding: 1rem;
}

.intl-modern-rankings .intl-ranking-gallery-item {
  border: 8px solid #f4f7fb;
  border-radius: 18px;
  overflow: hidden;
}

.intl-modern-rankings img {
  min-height: 320px;
}

.intl-modern-mobility-gallery .hover-card,
.intl-modern-image-grid .intl-gallery-img {
  min-height: 360px;
}

.intl-modern-mobility-gallery img,
.intl-modern-image-grid img {
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.intl-modern-logos {
  background:
    radial-gradient(
      circle at 12% 18%,
      rgba(18, 184, 244, 0.1),
      transparent 26%
    ),
    #fff !important;
  padding: 2.5rem 1rem !important;
}

.intl-modern-logos .feature-icon {
  max-height: 82px;
  max-width: 150px;
  object-fit: contain;
}

.intl-modern-map {
  background: #001f47 !important;
  overflow: hidden;
}

.intl-modern-map video {
  display: block;
  filter: saturate(1.08) contrast(1.04);
}

.intl-modern-alumni {
  background: #f4f7fb;
  padding: 3rem 2.5rem;
}

.intl-modern-alumni > .row {
  background: #fff;
  border: 1px solid #e4eaf4;
  border-radius: 16px;
  box-shadow: 0 18px 45px rgba(0, 57, 118, 0.08);
  margin: 0 auto;
  max-width: 1280px;
  overflow: hidden;
}

.intl-modern-alumni h2 {
  color: var(--ups-blue) !important;
  font-family: var(--font-heading);
  text-transform: none !important;
}

.intl-modern-contact {
  min-height: 320px;
}

.intl-modern-contact::after {
  background: linear-gradient(
    90deg,
    rgba(0, 31, 71, 0.92),
    rgba(0, 31, 71, 0.48)
  );
  content: "";
  inset: 0;
  position: absolute;
  z-index: 0;
}

.intl-modern-contact .container {
  z-index: 1 !important;
}

#internacionalizacion img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Ajuste especial para móviles */
@media (max-width: 768px) {
  .intl-modern-page {
    padding-top: 60px;
  }

  .intl-modern-hero {
    height: 520px;
    min-height: 420px;
  }

  .intl-modern-hero-overlay {
    padding: 2rem 1.25rem;
  }

  .intl-modern-split > .row {
    min-height: 0;
  }

  .intl-modern-split .col-md-8,
  .intl-modern-split .col-md-6.d-flex {
    padding: 2rem 1.5rem !important;
  }

  .intl-modern-split video,
  .intl-modern-split img,
  .intl-modern-rankings img,
  .intl-modern-mobility-gallery img,
  .intl-modern-image-grid img {
    min-height: 280px;
  }

  .intl-modern-band {
    padding: 2rem 1.25rem !important;
  }

  .intl-modern-alumni {
    padding: 2rem 1rem;
  }

  #internacionalizacion {
    min-height: 250px;
    overflow: hidden;
    position: relative;
  }

  #internacionalizacion img {
    height: 100%;
    width: auto;
    object-fit: cover;
    object-position: 17% center;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
  }
}

/* -------------------------------*/
/* Sección Nuestra Misión */
/* -------------------------------*/

#nuestra-mision {
  background-color: #fff;
  border: 1px solid #dee2e6;
}

#nuestra-mision h2 {
  color: #042644;
}

#nuestra-mision p {
  font-size: var(--font-size-rem-base);
  line-height: 1.7;
  text-align: justify;
  color: #1a1a1a;
}

.nuestra-mision-img-wrapper img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover !important;
  border-radius: 0;
}

.nuestra-mision-img-wrapper {
  height: 100%;
}

#nuestra-mision .col-md-4 {
  display: flex;
}

/* Efecto hover para la imagen de Nuestra Misión */
.nuestra-mision-img-wrapper {
  overflow: hidden;
  height: 100%;
  position: relative;
}

.nuestra-mision-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover !important;
  display: block;
  transition:
    transform 0.4s ease,
    filter 0.4s ease;
}

.nuestra-mision-img-wrapper:hover img {
  transform: scale(1.05);
  filter: brightness(1.1);
}

.nuestra-mision-img-wrapper video,
.nuestra-mision-img-wrapper iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 0;
}

/* Movilidad Académica */
#movilidad-academica {
  border: 1px solid #dee2e6;
  background-color: #f8f9fa;
}

@media (max-width: 768px) {
  .intl-modern-hero#internacionalizacion img {
    height: 100%;
    left: 0;
    object-fit: cover;
    object-position: center;
    position: static;
    width: 100%;
  }
}

#movilidad-academica h2 {
  color: #042644 !important;
  font-weight: bolder;
}

#movilidad-academica p {
  font-size: var(--font-size-rem-base);
  line-height: 1.7;
  text-align: justify;
  color: #1a1a1a;
}

.movilidad-img-wrapper {
  height: 400px !important;
  overflow: hidden;
}

.movilidad-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover !important;
  display: block;
}
.conoce-palabra {
  font-weight: 700; /* negrita */
  color: #042644;
  font-size: var(--font-size-rem-2xl);
}

.intl-ranking-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 0.4s ease,
    filter 0.4s ease;
  display: block;
}

.intl-ranking-gallery-item:hover img {
  transform: scale(1.05);
  filter: brightness(1.1);
}

/* Efecto hover para imagen de movilidad académica */
.movilidad-img-wrapper {
  overflow: hidden;
  position: relative;
  height: 100%;
}

.movilidad-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover !important;
  display: block;
  transition:
    transform 0.4s ease,
    filter 0.4s ease;
}

.movilidad-img-wrapper:hover img {
  transform: scale(1.05);
  filter: brightness(1.1);
}

/* Efecto hover para imagen de movilidad académica */

#section-internacionalizacion-galeria .hover-card {
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease-in-out;
}

#section-internacionalizacion-galeria .hover-card:hover {
  transform: scale(1.01);
}

/* Overlay moderno y semitransparente */
#section-internacionalizacion-galeria .hover-overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 1rem;
  background: rgba(4, 38, 68, 0.65);
  text-align: center;
  transition: background 0.3s ease;
}

#section-internacionalizacion-galeria .hover-overlay a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
}

#section-internacionalizacion-galeria .hover-overlay h5 {
  margin: 0;
  font-size: var(--font-size-rem-2xl);
  font-weight: 990;
  color: inherit;
  letter-spacing: 0.5px;
}

#section-internacionalizacion-galeria .hover-overlay a:hover h5 {
  color: #fff;
}

#section-internacionalizacion-galeria {
  margin: 0;
  padding: 0;
}

#section-internacionalizacion-galeria .row,
#section-internacionalizacion-galeria .col-md-6 {
  margin: 0;
  padding: 0;
}

/* ALT 1: Glass overlay */
#section-internacionalizacion-galeria .glass-overlay {
  position: absolute;
  inset: 0% 0%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem 1.5rem;
  background: rgba(4, 38, 68, 0.55);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 0px;
  opacity: 0;
  transform: translateY(8px);
  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
  pointer-events: none;
  z-index: 3;
}
#section-internacionalizacion-galeria .glass-overlay.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
#section-internacionalizacion-galeria .glass-overlay h5 {
  font-weight: 800;
  margin-bottom: 0.5rem;
}
#section-internacionalizacion-galeria .glass-overlay p {
  margin: 0 0 0.75rem 0;
  font-size: var(--font-size-rem-md);
  line-height: 1.5;
  text-align: justify;
}
#section-internacionalizacion-galeria .glass-overlay .btn-cta {
  display: inline-block;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  background: #fec403;
  color: #042644;
  font-weight: 700;
  text-decoration: none;
}

/* Dispositivos Móviles */
@media (hover: none) and (pointer: coarse) {
  #section-internacionalizacion-galeria .glass-overlay > div {
    display: grid;
    grid-template-rows: auto 1fr auto;
    gap: 0.75rem;
    width: 100%;
    max-height: 100%;
  }

  /* El párrafo es el área desplazable; ocultamos la barra, pero se puede hacer scroll con el dedo */
  #section-internacionalizacion-galeria .glass-overlay p {
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge legacy */
    padding-right: 0.25rem;
  }
  #section-internacionalizacion-galeria .glass-overlay p::-webkit-scrollbar {
    width: 0;
    height: 0;
  }

  /* Dimensiones/tipografías solo en móvil táctil */
  #section-internacionalizacion-galeria .glass-overlay {
    inset: 6% 4%;
    padding: 1rem;
    max-height: 86svh;
  }
  #section-internacionalizacion-galeria .glass-overlay h5 {
    font-size: calc(var(--font-size-rem-base) + 0.05rem);
  }
  #section-internacionalizacion-galeria .glass-overlay p {
    font-size: calc(var(--font-size-rem-sm) + 0.02rem);
    line-height: 1.55;
  }
  #section-internacionalizacion-galeria .glass-overlay .btn-cta {
    font-size: var(--font-size-rem-md);
    padding: 0.55rem 1rem;
  }
}

/* Reafirmar valores en dispositivos con hover (desktop/laptop) */
@media (hover: hover) and (pointer: fine) {
  #section-internacionalizacion-galeria .glass-overlay > div {
    display: block; /* vuelve al flujo normal de desktop */
    max-height: none;
  }
  #section-internacionalizacion-galeria .glass-overlay p {
    overflow: visible; /* sin área scroll en desktop */
  }
  #section-internacionalizacion-galeria .glass-overlay {
    inset: 0% 0%; /* tu valor original de desktop */
    padding: 1.25rem 1.5rem;
    max-height: none;
  }
}

/* Sección rankings ups */
.bg-intl-gradient {
  background: linear-gradient(to right, #003976, #001529);
}

/* Efecto hover para galería de rankings */
.intl-ranking-gallery-item {
  overflow: hidden;
  position: relative;
}

/* Slider logos */
#intl-logos-carousel img {
  max-height: 130px;
  object-fit: contain;
  transition:
    transform 0.3s ease,
    filter 0.3s ease;
}

.grayscale-hover:hover {
  filter: grayscale(0%);
  transform: scale(1.05);
}

.cursor-pointer {
  cursor: pointer;
}

#intl-logo-description {
  background-color: #042644;
}

.fade-in {
  animation: fadeIn 0.4s ease-in-out;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: #042644;
  background-image: none;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.carousel-control-prev-icon::before,
.carousel-control-next-icon::before {
  content: "";
  display: inline-block;
  width: 0.6rem;
  height: 0.6rem;
  border-top: 0.2rem solid white;
  border-right: 0.2rem solid white;
  transform: rotate(230deg);
}

.carousel-control-next-icon::before {
  transform: rotate(45deg);
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.intl-logo-description {
  background-color: #042644;
  width: 100vw;
  margin: 0;
  padding: 2rem 1rem;
}

#intl-logo-link {
  display: inline-block;
  margin-top: 0.5rem;
  color: #fec403;
  font-weight: bold;
  text-decoration: none;
}

#intl-logo-link:hover {
  text-decoration: underline;
  color: #042644;
}

/* Alumni Global */
#intl-alumni-global {
  background-color: #042644;
  color: #fff !important;
}

#intl-alumni-global h2,
#intl-alumni-global p {
  color: #fff !important;
}

/* Efecto hover para imagen de Global Alumni */
.alumni-img-wrapper {
  overflow: hidden;
  position: relative;
  height: 100%;
  display: block;
}

.alumni-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition:
    transform 0.4s ease,
    filter 0.4s ease;
}

.alumni-img-wrapper:hover img {
  transform: scale(1.05);
  filter: brightness(1.1);
}

/* Galeria */
.img-fixed {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.equal-height {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.fade-in {
  animation: fadeIn 0.4s ease-in-out;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Efecto hover para imágenes de la galería de internacionalización */
.intl-gallery-img {
  position: relative;
  overflow: hidden;
}

.intl-gallery-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition:
    transform 0.4s ease,
    filter 0.4s ease;
}

.intl-gallery-img:hover img {
  transform: scale(1.05);
  filter: brightness(1.1);
}

/* Sección de Contacto */
.contacto-section {
  min-height: 200px; /* Cambio: antes 300px */
  background-color: #000; /* fallback */
  position: relative;
  overflow: hidden;
}

.contacto-section .background-image img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  filter: brightness(0.6);
  position: absolute;
  top: 0;
  left: 0;
}

.contacto-section .z-1 {
  z-index: 1;
}

.contacto-section p {
  color: #fff;
  font-size: calc(var(--font-size-rem-base) + 0.05rem);
  margin-bottom: 0.5rem;
}

.contacto-section h2 {
  color: #fff;
  font-size: var(--font-size-rem-9xl);
}

/* === Mapa de Internacionalización === */
#intl-map-section {
  background-color: #fff;
}

.intl-map-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.intl-map-wrapper {
  position: relative;
  overflow: hidden;
  height: 16 / 9;
}

.intl-map-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.intl-map-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  text-align: center;
  z-index: 2;
  background: rgba(0, 0, 0, 0.4);
  padding: 1rem 2rem;
  border-radius: 8px;
}

.intl-map-overlay h2 {
  font-size: var(--font-size-rem-7xl);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.intl-map-overlay p {
  font-size: var(--font-size-rem-base);
  margin: 0;
}

/* Tablet */
@media (min-width: 769px) and (max-width: 1024px) {
  .intl-map-wrapper {
    height: 400px;
  }
  .intl-map-overlay h2 {
    font-size: var(--font-size-rem-8xl);
  }
  .intl-map-overlay p {
    font-size: var(--font-size-rem-lg);
  }
}

/* Desktop */
@media (min-width: 1025px) {
  .intl-map-wrapper {
    height: 680px;
  }
  .intl-map-overlay h2 {
    font-size: var(--font-size-rem-9xl);
  }
  .intl-map-overlay p {
    font-size: var(--font-size-rem-2xl);
  }
}

/* === Sección Internacionalización: Países por Continente === */
#intl-country-list h2 {
  font-size: var(--font-size-rem-7xl);
  font-weight: 700;
  color: #042644 !important;
}

.intl-country-card {
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.intl-country-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 0.4rem 1rem rgba(0, 0, 0, 0.1);
}

.intl-flag-placeholder img {
  max-height: 40px;
  object-fit: contain;
}

.intl-country-card strong {
  color: #000;
}

/* Personalización de los botones del acordeón */
.accordion-button-dark {
  background-color: #042644 !important;
  color: #ffffff !important;
}

.accordion-button-dark:focus {
  box-shadow: none;
}

.accordion-button-dark:not(.collapsed)::after {
  filter: brightness(0) invert(1); /* caret blanco */
}

.accordion-button-dark strong {
  color: #ffffff !important;
}

/* Flecha blanca para el acordeón oscuro */
.accordion-button-dark::after {
  filter: brightness(0) invert(1);
}

/* Banderas flotantes */
.floating-language-switcher {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 9999;
}

.floating-language-switcher a {
  display: inline-block;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  position: relative;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.floating-language-switcher a:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.35);
}

.floating-language-switcher .flag {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80%;
  height: 80%;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease;
}

.floating-language-switcher .flag svg {
  width: 100%;
  height: 100%;
}

/* === Desktop (pantallas grandes) === */
@media (hover: hover) and (pointer: fine) {
  .floating-language-switcher .flag.active {
    opacity: 1;
  }
  .floating-language-switcher .flag.alt {
    opacity: 0;
  }

  .floating-language-switcher a:hover .flag.active {
    opacity: 0;
  }
  .floating-language-switcher a:hover .flag.alt {
    opacity: 1;
  }
}

/* === Móvil (pantallas táctiles) === */
@media (hover: none) and (pointer: coarse) {
  .floating-language-switcher .flag.active {
    display: none;
  }
  .floating-language-switcher .flag.alt {
    display: block;
    opacity: 1;
  }
}

/* Botón flotante - Convocatorias */
.floating-convocatorias {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1050;
}

.btn-convocatorias {
  display: inline-block;
  background-color: #ffd600;
  color: #042644;
  font-weight: 700;
  text-transform: uppercase;
  padding: 12px 20px;
  border-radius: 50px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  text-decoration: none;
  animation: pulseYellow 1.5s infinite;
  transition: all 0.3s ease-in-out;
}

.btn-convocatorias:hover {
  background-color: #ffec80;
  transform: scale(1.08);
}

/* Animación de parpadeo */
@keyframes pulseYellow {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 214, 0, 0.8);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(255, 214, 0, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 214, 0, 0);
  }
}

/* =============================================== */
/*  Indicador de clic animado sobre los logotipos */
/* =============================================== */

#intl-logos-carousel {
  position: relative;
}

/* Posición fija en esquina superior izquierda */
.click-overlay-left {
  position: absolute;
  top: 75px;
  left: 220px;
  z-index: 10;
  animation: pulseBlink 1.5s infinite;
  opacity: 0.9;
  pointer-events: none; /* No bloquea clics en logos */
}

/* SVG animado */
.tap-hand {
  width: 55px;
  height: 55px;
  fill: none;
  filter: drop-shadow(0 0 6px rgba(0, 0, 0, 0.3));
  animation: pulseScale 1.6s infinite ease-in-out;
}

/* Efecto de parpadeo tipo “botón convocatorias” */
@keyframes pulseBlink {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.1);
  }
}

/* Efecto de latido / agrandamiento suave */
@keyframes pulseScale {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.08);
  }
}

/* Responsivo */
@media (max-width: 768px) {
  .click-overlay-left {
    top: 10px;
    left: 15px;
  }
  .tap-hand {
    width: 40px;
    height: 40px;
  }
}

.tap-hand {
  transform: scaleX(-1) !important;
}

/*  ████████████████████████████████████████████████████████████  */
/*  =================== Page Citups ============================  */
/*  ████████████████████████████████████████████████████████████  */

.awards-modern-page {
  background: #fff;
  padding-top: 0;
}

.awards-modern-hero {
  height: 72vh;
  min-height: 520px;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.awards-modern-hero-media,
.awards-modern-hero-media img {
  height: 100%;
  width: 100%;
}

.awards-modern-hero-media .position-relative {
  display: block !important;
  cursor: default !important;
  height: 100%;
  width: 100%;
}

.awards-modern-hero-media img {
  border-radius: 0 !important;
  display: block;
  object-fit: cover;
  object-position: center;
}

.awards-modern-hero-overlay {
  background: linear-gradient(
    90deg,
    rgba(0, 25, 60, 0.9) 0%,
    rgba(0, 25, 60, 0.62) 58%,
    rgba(0, 25, 60, 0.14) 100%
  );
  display: flex;
  flex-direction: column;
  inset: 0;
  justify-content: flex-end;
  padding: 2.75rem 3rem;
  position: absolute;
}

.awards-modern-hero .hero-desc {
  color: rgba(255, 255, 255, 0.78);
  font-size: var(--font-size-base);
  line-height: 1.75;
  max-width: 560px;
}

.awards-modern-section-title {
  margin: 0 auto 1.5rem;
  max-width: 820px;
  text-align: center;
}

.awards-event-section {
  background: #f4f7fb;
  border-bottom: 1px solid #e4eaf4;
  padding: 3rem 2.5rem;
}

.awards-event-panel {
  background: #fff;
  border: 1px solid #e4eaf4;
  border-radius: 12px;
  box-shadow: 0 10px 28px rgba(0, 57, 118, 0.08);
  margin: 0 auto;
  max-width: 1100px;
  overflow: hidden;
  padding: 1rem;
}

.awards-event-panel .not-overlay {
  padding: 0;
}

.awards-event-panel .ratio {
  border-radius: 10px;
  overflow: hidden;
}

.awards-event-panel #title-text-sw {
  color: var(--ups-blue);
  font-family: var(--font-heading);
}

.awards-event-panel .award-title {
  font-size: var(--font-size-title-lg);
  font-weight: 600;
  margin: 1rem 0;
}

.awards-modern-intro {
  padding: 3rem 2.5rem;
}

.awards-highlight-card {
  background: #0d2b44;
  border-radius: 12px;
  color: #fff;
  overflow: hidden;
}

.awards-highlight-card img {
  display: block;
  height: auto;
  max-height: 260px;
  object-fit: cover;
  padding: 0;
  width: 100%;
}

.awards-highlight-card > .position-relative {
  display: block !important;
  cursor: default !important;
  width: 100%;
}

.awards-highlight-card > .position-relative img {
  border-radius: 0 !important;
}

.awards-highlight-card div {
  padding: 1.5rem;
}

.awards-highlight-card span {
  color: rgba(255, 255, 255, 0.55);
  display: block;
  font-size: var(--font-size-xs);
  font-weight: 600;
  letter-spacing: 0.12em;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
}

.awards-highlight-card h3 {
  color: #fff;
  font-family: var(--font-heading);
  font-size: var(--font-size-title-sm);
  font-weight: 600;
  line-height: 1.35;
  margin-bottom: 0.75rem;
}

.awards-highlight-card p {
  color: rgba(255, 255, 255, 0.72);
  font-size: var(--font-size-md);
  line-height: 1.65;
  margin-bottom: 0;
}

.awards-feature-band {
  background: #f4f7fb;
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding: 2.5rem;
}

.awards-feature-band article {
  background: #fff;
  border: 1px solid #e4eaf4;
  border-radius: 12px;
  padding: 1.5rem;
  transition:
    border-color 0.2s,
    box-shadow 0.2s,
    transform 0.2s;
}

.awards-feature-band article:hover {
  border-color: var(--ups-blue);
  box-shadow: 0 10px 28px rgba(0, 57, 118, 0.08);
  transform: translateY(-2px);
}

.awards-feature-band i {
  color: var(--ups-blue);
  display: block;
  font-size: var(--font-size-title-xl);
  margin-bottom: 1rem;
}

.awards-feature-band h2 {
  color: #1a1a2e;
  font-family: var(--font-heading);
  font-size: var(--font-size-xl);
  font-weight: 600;
  margin-bottom: 0.65rem;
}

.awards-feature-band p {
  color: #5a6a82;
  font-size: var(--font-size-md);
  line-height: 1.65;
  margin-bottom: 0;
}

.awards-modern-cta {
  align-items: center;
  background: #0d2b44;
  color: #fff;
  display: flex;
  gap: 2rem;
  justify-content: space-between;
  padding: 2.5rem;
}

.awards-modern-cta .section-label,
.awards-modern-cta h2,
.awards-modern-cta p {
  color: #fff;
}

.awards-modern-cta h2 {
  font-family: var(--font-heading);
  font-size: var(--font-size-title-xl);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.awards-modern-cta p {
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 0;
  max-width: 780px;
}

.awards-editions-hero {
  height: 56vh;
  min-height: 420px;
}

.awards-editions-intro {
  margin: 0 auto;
  max-width: 1040px;
}

.awards-editions-intro .intro-body {
  margin: 0 auto;
  max-width: 920px;
  text-align: center;
}

.awards-editions-section {
  background: #f4f7fb;
  border-top: 1px solid #e4eaf4;
  padding: 3rem 2.5rem;
}

.awards-editions-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0 auto;
  max-width: 1180px;
}

.awards-editions-grid .blog-card,
.awards-editions-grid .blog-card.alt {
  aspect-ratio: 16 / 10;
  background: #06192d;
  border: 1px solid rgba(120, 215, 255, 0.25);
  border-radius: 18px;
  box-shadow: none;
  display: block;
  isolation: isolate;
  margin: 0 !important;
  max-width: none;
  min-height: 100%;
  overflow: hidden;
  position: relative;
  transition:
    border-color 0.2s,
    box-shadow 0.2s,
    transform 0.2s;
}

.awards-editions-grid .blog-card::after {
  background:
    radial-gradient(
      circle at 82% 14%,
      rgba(120, 215, 255, 0.22),
      transparent 28%
    ),
    linear-gradient(
      180deg,
      rgba(2, 13, 27, 0.08) 0%,
      rgba(2, 13, 27, 0.52) 45%,
      rgba(2, 13, 27, 0.96) 100%
    );
  content: "";
  inset: 0;
  position: absolute;
  z-index: 1;
}

.awards-editions-grid .blog-card::before {
  background: linear-gradient(90deg, #12b8f4, #fcc000);
  border-radius: 999px;
  color: #fff;
  content: "Edición";
  font-size: var(--font-size-xs);
  font-weight: 700;
  left: 1.35rem;
  letter-spacing: 0.12em;
  padding: 0.42rem 0.8rem;
  position: absolute;
  text-transform: uppercase;
  top: 1.35rem;
  z-index: 3;
}

.awards-editions-grid .blog-card:hover {
  border-color: rgba(120, 215, 255, 0.85);
  box-shadow:
    0 20px 42px rgba(0, 31, 71, 0.22),
    0 0 0 1px rgba(120, 215, 255, 0.18);
  transform: translateY(-5px);
}

.awards-editions-grid .blog-card:hover .photo.animate {
  transform: scale(1.09);
}

.awards-editions-grid .blog-card .meta {
  height: 100%;
  inset: 0;
  overflow: hidden;
  position: absolute;
  width: 100%;
  z-index: 0;
}

.awards-editions-grid .blog-card .photo {
  background-position: center;
  background-size: cover;
  transition: transform 0.35s ease;
}

.awards-editions-grid .blog-card .description {
  background: transparent;
  bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: flex-end;
  left: 0;
  min-height: 0;
  padding: 1.6rem;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 2;
}

.awards-editions-grid .blog-card .description::before,
.awards-editions-grid .blog-card p:first-of-type::before,
.awards-editions-grid .blog-card .description .read-more a::after {
  display: none;
}

.awards-editions-grid .blog-card .description h2 {
  color: #fff !important;
  font-family: var(--font-heading);
  font-size: calc(var(--font-size-title-xl) + 1px);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.16;
  margin: 0;
  max-width: 82%;
  text-shadow: 0 8px 22px rgba(0, 0, 0, 0.4);
  text-align: left !important;
}

.awards-editions-grid #title-text-sw.award-title {
  color: #fff !important;
  font-family: var(--font-heading) !important;
  font-size: calc(var(--font-size-title-xl) + 1px) !important;
  font-weight: 600 !important;
  line-height: 1.16 !important;
  text-shadow: 0 8px 22px rgba(0, 0, 0, 0.4) !important;
}

.awards-editions-grid .blog-card .description .read-more {
  margin: 0;
  text-align: left;
}

.awards-editions-grid .blog-card .description .read-more a {
  align-items: center;
  background: #12b8f4;
  border-radius: 999px;
  color: #001f47;
  display: inline-flex;
  font-size: var(--font-size-md);
  font-weight: 700;
  gap: 0.45rem;
  padding: 0.72rem 1.25rem;
  text-decoration: none;
}

.awards-editions-grid .blog-card .description .read-more a:hover {
  background: #fff;
  color: #001f47;
}

.research-single-award-event-page {
  background: #fff;
}

.single-award-event-hero {
  height: 68vh;
  min-height: 500px;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.single-award-event-hero img,
.single-award-event-placeholder {
  display: block;
  height: 100%;
  object-fit: cover;
  object-position: center;
  width: 100%;
}

.single-award-event-placeholder {
  align-items: center;
  background: radial-gradient(circle at center, #0d4d87 0%, #071523 72%);
  color: rgba(255, 255, 255, 0.16);
  display: flex;
  font-size: var(--font-size-icon-xl);
  justify-content: center;
}

.single-award-event-overlay {
  background: linear-gradient(
    90deg,
    rgba(0, 25, 60, 0.92) 0%,
    rgba(0, 25, 60, 0.62) 56%,
    rgba(0, 25, 60, 0.12) 100%
  );
  display: flex;
  flex-direction: column;
  inset: 0;
  justify-content: flex-end;
  padding: 3rem;
  position: absolute;
}

.single-award-event-overlay .hero-desc {
  color: rgba(255, 255, 255, 0.72);
  font-size: var(--font-size-base);
  margin-top: 0.75rem;
}

.single-award-event-intro {
  padding: 3rem 2.5rem;
}

.single-award-event-card {
  background:
    radial-gradient(
      circle at 88% 12%,
      rgba(120, 215, 255, 0.2),
      transparent 32%
    ),
    #0d2b44;
  border-radius: 14px;
  color: #fff;
  padding: 2rem;
}

.single-award-event-card i {
  color: #fcc000;
  display: block;
  font-size: var(--font-size-title-4xl);
  margin-bottom: 1rem;
}

.single-award-event-card h2 {
  color: #fff;
  font-family: var(--font-heading);
  font-size: var(--font-size-title-md);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.single-award-event-card p {
  color: rgba(255, 255, 255, 0.72);
  font-size: var(--font-size-md);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

.single-award-event-awards {
  background: #f4f7fb;
  border-top: 1px solid #e4eaf4;
  overflow: visible;
  padding: 3rem 2.5rem 4rem;
  position: relative;
  z-index: 1;
}

.awards-detail-heading,
.awards-gallery-heading {
  margin: 0 auto 2rem;
  max-width: 840px;
  text-align: center;
}

.awards-detail-heading h2,
.awards-gallery-heading h2 {
  color: var(--ups-blue);
  font-family: var(--font-heading);
  font-size: var(--font-size-title-2xl);
  font-weight: 600;
  line-height: 1.25;
  margin: 0.4rem 0 0.75rem;
}

.awards-detail-heading p,
.awards-gallery-heading p {
  color: #52627a;
  font-size: var(--font-size-base);
  line-height: 1.7;
  margin: 0;
}

.awards-detail-board {
  margin: 0 auto;
  max-width: 1280px;
  position: relative;
}

.single-award-event-awards #award-navbar,
.awards-detail-nav {
  background: rgba(255, 255, 255, 0.94) !important;
  border: 1px solid #dce7f4;
  border-radius: 18px;
  box-shadow: 0 18px 42px rgba(0, 31, 71, 0.08);
  justify-content: center;
  margin: 0 auto 2.5rem;
  max-width: 980px;
  padding: 0.8rem 1rem !important;
  position: relative;
  top: auto;
  z-index: 2;
}

.single-award-event-awards #award-navbar .nav-pills {
  gap: 0.4rem;
  justify-content: center;
}

.single-award-event-awards #award-navbar .nav-link {
  border: 0;
  border-radius: 999px;
  color: var(--ups-blue);
  font-size: var(--font-size-md);
  font-weight: 700;
  padding: 0.55rem 1rem;
}

.single-award-event-awards #award-navbar .nav-link:hover,
.single-award-event-awards #award-navbar .nav-link.show,
.single-award-event-awards #award-navbar .nav-link:focus,
.single-award-event-awards #award-navbar .nav-link.active {
  background: var(--ups-blue);
  color: #fff;
}

.single-award-event-awards #award-navbar .dropdown-menu {
  border: 1px solid #dce7f4;
  border-radius: 12px;
  box-shadow: 0 16px 34px rgba(0, 31, 71, 0.12);
  font-size: var(--font-size-md);
  padding: 0.55rem;
}

.single-award-event-awards #award-navbar .dropdown-item {
  border-radius: 8px;
  color: #26384f;
  padding: 0.55rem 0.7rem;
}

.single-award-event-awards #award-navbar .dropdown-item:hover {
  background: #eef5ff;
  color: var(--ups-blue);
}

.single-award-event-awards .scrollspy-awards {
  height: auto !important;
  max-height: none;
  overflow: visible;
}

.awards-detail-category {
  background: #fff;
  border: 1px solid #dfe9f5;
  border-radius: 18px;
  clear: both;
  box-shadow: 0 18px 45px rgba(0, 57, 118, 0.06);
  margin-bottom: 2rem;
  overflow: hidden;
  padding: 1.25rem;
  position: relative;
  display: none;
}

.awards-detail-category.is-active {
  display: block;
}

.awards-detail-category-title {
  align-items: center;
  background: linear-gradient(90deg, #001f47 0%, #003976 70%, #0b6fb3 100%);
  border-radius: 14px;
  display: flex;
  justify-content: space-between;
  margin-bottom: 1.25rem;
  padding: 1rem 1.25rem;
}

.awards-detail-category-title h3 {
  color: #fff;
  font-family: var(--font-heading);
  font-size: var(--font-size-title-md);
  font-weight: 600;
  margin: 0;
}

.awards-detail-category-title span {
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.82);
  font-size: var(--font-size-sm);
  font-weight: 700;
  padding: 0.35rem 0.75rem;
}

.single-award-event-awards .tle-sec-title {
  color: var(--ups-blue);
  font-family: var(--font-heading);
  font-size: var(--font-size-title-lg);
  font-weight: 600;
}

.awards-detail-award {
  background: #f8fbff;
  border: 1px solid #e4eaf4;
  border-radius: 16px;
  margin-bottom: 1.2rem;
  padding: 1.2rem;
}

.awards-detail-award:last-child {
  margin-bottom: 0;
}

.awards-detail-award-title,
.single-award-event-awards h4[id^="scrollHead-"] {
  align-items: center;
  color: #0d2b44;
  display: flex;
  gap: 0.6rem;
  font-family: var(--font-heading);
  font-size: var(--font-size-title-xs);
  font-weight: 600;
  justify-content: center;
  margin: 0 0 1rem;
  text-align: center;
}

.awards-detail-award-title i {
  color: #f5b400;
}

.awards-nominee-grid {
  margin-left: 0;
  margin-right: 0;
  padding-bottom: 0.5rem;
  row-gap: 1.1rem;
}

.single-award-event-awards .card.shad {
  border: 1px solid #e4eaf4 !important;
  border-radius: 14px !important;
  box-shadow: 0 10px 28px rgba(0, 57, 118, 0.08) !important;
  height: 100%;
  overflow: hidden;
  position: relative;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}

.single-award-event-awards .card.shad:hover {
  box-shadow: 0 18px 36px rgba(0, 57, 118, 0.14) !important;
  transform: translateY(-3px);
}

.single-award-event-awards .card.shad .card-body {
  padding: 4.35rem 1.1rem 1.1rem;
}

.single-award-event-awards .card.shad .award-img + .card-body {
  padding-top: 1.1rem;
}

.single-award-event-awards .card.shad:has(.award-img) .card-body {
  padding-top: 1.1rem;
}

.single-award-event-awards .nominee-card-book .card-body,
.single-award-event-awards .nominee-card-group .card-body {
  padding-top: 4.5rem !important;
}

.single-award-event-awards .card.shad h6 {
  color: #08233f;
  font-family: var(--font-heading);
  font-size: var(--font-size-base);
  line-height: 1.35;
  margin: 0 auto 0.35rem;
  max-width: 92%;
}

.single-award-event-awards .card.shad small,
.single-award-event-awards .card.shad .title {
  color: #60718a !important;
  font-size: var(--font-size-sm);
  line-height: 1.45;
}

.single-award-event-awards .card.shad img {
  object-fit: cover;
}

.single-award-event-awards .card.shad img.rounded-circle {
  aspect-ratio: 1;
  border: 4px solid #eef5ff;
  max-height: 118px;
  width: 118px;
}

.single-award-event-awards .award-img {
  aspect-ratio: 4 / 3;
  background: #eef5ff;
  height: 160px;
  object-fit: cover;
  width: 100%;
}

.single-award-event-awards .rank {
  align-items: center;
  background: var(--ups-blue);
  border: 3px solid #fff;
  border-radius: 50%;
  box-shadow: 0 8px 20px rgba(0, 31, 71, 0.22);
  color: #fff;
  display: flex;
  font-size: var(--font-size-base);
  font-weight: 800;
  height: 42px;
  justify-content: center;
  left: 50%;
  position: absolute;
  right: auto;
  top: 12px;
  transform: translateX(-50%);
  width: 42px;
  z-index: 2;
}

.single-award-event-awards .rank.winner {
  background: linear-gradient(135deg, #f5b400 0%, #ffdf6c 100%);
  color: #001f47;
}

.single-award-event-awards .card.shad:has(.award-img) .rank {
  left: auto;
  right: 10px;
  transform: none;
}

.single-award-event-awards .nominee-card-book .rank,
.single-award-event-awards .nominee-card-group .rank {
  left: 50% !important;
  right: auto !important;
  transform: translateX(-50%) !important;
}

.single-award-event-gallery {
  background: #fff;
  clear: both;
  padding: 3rem 2.5rem;
  position: relative;
  z-index: 1;
}

body.single-evento_galardon #footer-alterno {
  clear: both;
  position: relative;
  z-index: 0;
}

body.single-evento_galardon .single-award-event-detail {
  overflow: visible;
}

.single-award-event-gallery .main-titles {
  text-align: center !important;
}

.single-award-event-gallery .tle-section-title {
  color: var(--ups-blue);
  font-family: var(--font-heading);
  font-size: var(--font-size-title-xl);
  font-weight: 600;
}

.awards-gallery-carousel {
  margin: 0 auto;
  max-width: 1280px;
}

.awards-gallery-item {
  padding-bottom: 0.5rem;
  padding-top: 0.5rem;
}

.single-award-event-gallery #awards-slider img {
  border-radius: 12px;
  box-shadow: 0 16px 34px rgba(0, 31, 71, 0.12);
  cursor: zoom-in;
  height: 300px;
  object-fit: cover;
  transition:
    transform 0.22s,
    box-shadow 0.22s;
  width: 100%;
}

.single-award-event-gallery #awards-slider img:hover {
  box-shadow: 0 22px 44px rgba(0, 31, 71, 0.18);
  transform: scale(1.025);
}

.single-award-event-gallery .owl-theme .owl-nav [class*="owl-"] {
  background: var(--ups-blue);
  border-radius: 999px;
  color: #fff;
  min-height: 38px;
  min-width: 38px;
}

.single-award-event-gallery .owl-theme .owl-dots .owl-dot span {
  background: #c9d7e8;
}

.single-award-event-gallery .owl-theme .owl-dots .owl-dot.active span {
  background: var(--ups-blue);
}

@media (max-width: 768px) {
  .single-award-event-awards,
  .single-award-event-gallery {
    padding: 2rem 1rem;
  }

  .single-award-event-awards #award-navbar,
  .awards-detail-nav {
    border-radius: 14px;
    justify-content: flex-start;
    overflow-x: auto;
    position: static;
  }

  .awards-detail-category-title {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.65rem;
  }

  .awards-detail-category-title h3 {
    font-size: calc(var(--font-size-title-sm) - 1px);
  }

  .awards-detail-award {
    padding: 1rem;
  }

  .awards-detail-award-title {
    font-size: var(--font-size-lg);
    justify-content: flex-start;
    text-align: left;
  }

  .single-award-event-gallery #awards-slider img {
    height: 220px;
  }
}

.citups-modern-page {
  margin-bottom: 0;
  padding-top: 60px;
}

.citups-modern-page + #colophon,
.citups-modern-page ~ #colophon {
  margin-top: 0;
}

.citups-modern-hero {
  height: 420px;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.citups-modern-hero-media,
.citups-modern-hero-media img {
  height: 100%;
  width: 100%;
}

.citups-modern-hero-media img {
  display: block;
  object-fit: cover;
  object-position: center;
}

.citups-modern-hero-overlay {
  background: linear-gradient(
    90deg,
    rgba(0, 25, 60, 0.88) 0%,
    rgba(0, 25, 60, 0.58) 58%,
    rgba(0, 25, 60, 0.14) 100%
  );
  display: flex;
  flex-direction: column;
  inset: 0;
  justify-content: flex-end;
  padding: 2.75rem 3rem;
  position: absolute;
}

.citups-modern-intro {
  padding: 3rem 2.5rem;
}

.citups-modern-image {
  border-radius: 12px;
  box-shadow: 0 10px 28px rgba(0, 57, 118, 0.08);
  margin: 0;
  overflow: hidden;
}

.citups-modern-image img {
  display: block;
  min-height: 320px;
  object-fit: cover;
}

.citups-modern-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 420px;
}

.citups-modern-split-media img {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.citups-modern-split-content {
  align-self: center;
  padding: 3rem 2.5rem;
}

.citups-statement-grid {
  display: grid;
  gap: 1rem;
}

.citups-statement-grid article {
  background: #fff;
  border: 1px solid #e4eaf4;
  border-left: 5px solid var(--ups-blue);
  border-radius: 12px;
  padding: 1.25rem;
}

.citups-statement-grid h2 {
  color: var(--ups-blue);
  font-family: var(--font-heading);
  font-size: var(--font-size-title-sm);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.citups-statement-grid p {
  color: #4a5568;
  font-size: var(--font-size-base);
  line-height: 1.75;
  margin-bottom: 0;
}

.citups-modern-band {
  background: #0d2b44;
  color: #fff;
  padding: 2.5rem;
}

.citups-modern-band .section-label,
.citups-modern-band h2,
.citups-modern-band p {
  color: #fff;
}

.citups-modern-band h2 {
  font-family: var(--font-heading);
  font-size: var(--font-size-title-lg);
  font-weight: 600;
  margin-bottom: 0.75rem;
  max-width: 980px;
}

.citups-modern-band p {
  margin-bottom: 0;
  max-width: 900px;
}

.citups-service-grid {
  background: #f4f7fb;
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding: 2.5rem;
}

.citups-service-card {
  background: #fff;
  border: 1px solid #e4eaf4;
  border-radius: 12px;
  overflow: hidden;
}

.citups-service-card[open] {
  border-color: var(--ups-blue);
  box-shadow: 0 10px 28px rgba(0, 57, 118, 0.08);
}

.citups-service-card summary {
  align-items: center;
  color: #1a1a2e;
  cursor: pointer;
  display: flex;
  font-family: var(--font-heading);
  font-size: var(--font-size-xl);
  font-weight: 600;
  justify-content: space-between;
  list-style: none;
  padding: 1.2rem 1.25rem;
}

.citups-service-card summary::-webkit-details-marker {
  display: none;
}

.citups-service-card summary::after {
  color: var(--ups-blue);
  content: "›";
  font-size: var(--font-size-title-md);
  transition: transform 0.2s;
}

.citups-service-card[open] summary::after {
  transform: rotate(90deg);
}

.citups-service-card div {
  border-top: 1px solid #e4eaf4;
  color: #4a5568;
  font-size: var(--font-size-base);
  line-height: 1.65;
  max-height: 430px;
  overflow-y: auto;
  padding: 1.25rem;
}

.citups-service-card h3 {
  color: var(--ups-blue);
  font-size: var(--font-size-body);
  font-weight: 700;
  margin: 0.75rem 0 0.45rem;
}

.citups-service-card ul {
  margin-bottom: 0.75rem;
  padding-left: 1.15rem;
}

.citups-modern-clients {
  padding: 3rem 2.5rem;
}

.citups-modern-section-title {
  margin: 0 auto 1.5rem;
  max-width: 760px;
  text-align: center;
}

.citups-client-logos {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.citups-client-logos img {
  filter: grayscale(1);
  max-height: 92px;
  max-width: 190px;
  object-fit: contain;
  transition:
    filter 0.2s,
    transform 0.2s;
}

.citups-client-logos img:hover {
  filter: grayscale(0);
  transform: scale(1.05);
}

.citups-modern-contact {
  align-items: center;
  background:
    radial-gradient(circle at 14% 18%, rgba(18, 184, 244, 0.18), transparent 30%),
    linear-gradient(135deg, #0d2b44 0%, #003976 58%, #001f47 100%);
  color: #fff;
  display: grid;
  gap: 2rem;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  margin-bottom: 0;
  padding: 3rem 2.5rem;
  position: relative;
}

.citups-modern-contact::before {
  background: linear-gradient(90deg, #003976, #12b8f4, #fcc000);
  content: "";
  height: 3px;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.citups-contact-brand {
  border-right: 1px solid rgba(255, 255, 255, 0.18);
  padding-right: 2rem;
}

.citups-contact-mark {
  color: #fff;
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(2.6rem, 6vw, 5rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1;
}

.citups-contact-brand p {
  color: rgba(255, 255, 255, 0.72);
  font-size: var(--font-size-lg);
  margin: 0.65rem 0 0;
}

.citups-contact-content .section-label,
.citups-contact-content h2 {
  color: #fff;
}

.citups-contact-content h2 {
  font-family: var(--font-heading);
  font-size: var(--font-size-title-lg);
  font-weight: 600;
  line-height: 1.35;
  margin-bottom: 1.25rem;
  max-width: 680px;
}

.citups-contact-list {
  display: grid;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.citups-contact-list a {
  align-items: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  color: #fff;
  display: flex;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  text-decoration: none;
  transition:
    background 0.2s,
    border-color 0.2s,
    transform 0.2s;
}

.citups-contact-list a:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.3);
  color: #fff;
  transform: translateY(-2px);
}

.citups-contact-list i {
  color: #fcc000;
  flex: 0 0 auto;
  font-size: var(--font-size-xl);
}

.citups-contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.citups-contact-secondary {
  align-items: center;
  border: 1.5px solid rgba(255, 255, 255, 0.64);
  border-radius: 999px;
  color: #fff;
  display: inline-flex;
  font-size: var(--font-size-md);
  font-weight: 600;
  justify-content: center;
  padding: 8px 26px;
  text-decoration: none;
  transition:
    background 0.2s,
    color 0.2s;
}

.citups-contact-secondary:hover {
  background: #fff;
  color: var(--ups-blue);
}

.citups img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  position: relative;
  background: #042644;
}

@media (max-width: 767.98px) {
  #citups {
    height: 250px;
  }
  .citups img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center center;
    position: relative;
  }
}

/* Quienes somos citups*/
#section-citups-quienes-somos {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  background: #fff;
}

#section-citups-quienes-somos .section-citups-text {
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

#section-citups-quienes-somos .section-citups-img {
  min-height: 240px;
  height: 340px;
  display: flex;
  align-items: stretch;
  overflow: hidden;
}
#section-citups-quienes-somos .section-citups-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

#section-citups-quienes-somos .section-citups-text h2 {
  color: #042644;
  font-weight: bolder;
  font-size: calc(var(--font-size-rem-9xl) + 0.3rem);
  margin-bottom: 1rem;
}

@media (max-width: 767.98px) {
  #section-citups-quienes-somos .section-citups-text h2 {
    text-align: center;
  }
}

#section-citups-quienes-somos .section-citups-text p {
  font-size: var(--font-size-rem-lg);
  line-height: 1.7;
  text-align: justify;
}

/* -------------------------------*/
/* -------- Misión Visión -------*/
/* -------------------------------*/
#section-citups-mision-vision {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  background: #e6eaed;
}

#section-citups-mision-vision .section-citups-text {
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

#section-citups-mision-vision .section-citups-img {
  min-height: 240px;
  height: 380px;
  display: flex;
  align-items: stretch;
  overflow: hidden;
}

#section-citups-mision-vision .section-citups-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

#section-citups-mision-vision .section-citups-text h2 {
  color: #042644;
  font-weight: bolder;
  font-size: calc(var(--font-size-rem-9xl) + 0.3rem);
  margin-bottom: 1rem;
}

@media (max-width: 767.98px) {
  #section-citups-mision-vision .section-citups-text h2 {
    text-align: center;
  }
}

#section-citups-mision-vision .section-citups-text p {
  font-size: var(--font-size-rem-lg);
  line-height: 1.7;
  text-align: justify;
}

/* -------------------------------*/
/* ------ Servicios Citups ------*/
/* -------------------------------*/
#section-citups-servicios {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  background: #fff;
}

#section-citups-servicios .section-citups-text h2 {
  color: #042644;
  font-weight: bolder;
  font-size: calc(var(--font-size-rem-9xl) + 0.3rem);
  margin-bottom: 1rem;
}

@media (max-width: 767.98px) {
  #section-citups-servicios .section-citups-text h2 {
    text-align: center;
  }
}

#section-citups-servicios .section-citups-text p {
  font-size: var(--font-size-rem-lg);
  line-height: 1.7;
  text-align: justify;
}

/* ----------------------------------*/
/* ------ Botones interactivos ------*/
/* ---------------------------------*/

#section-botones-interactivos .row.g-4.justify-content-center {
  background:
    radial-gradient(ellipse at 50% 45%, #103867 70%, transparent 100%),
    linear-gradient(135deg, #021424 0%, #0a2a4c 100%) !important;
}

.card-boton {
  background: linear-gradient(160deg, #f4f7fb 65%, #e2eafc 100%);
  border-radius: 2.2rem;
  box-shadow: 0 6px 28px 0 rgba(20, 38, 90, 0.1);
  padding: 1.5rem 1.5rem 1rem 1.5rem;
  margin-bottom: 2.5rem !important;
  border: 1.5px solid #e6e8f0;
  position: relative;
  min-height: 180px;
  max-width: 430px;
  margin-left: auto;
  margin-right: auto;
  transition:
    box-shadow 0.21s,
    transform 0.18s,
    background 0.23s;
}
.card-boton.active {
  box-shadow:
    0 14px 44px 0 rgba(18, 54, 100, 0.26),
    0 3px 16px 0 rgba(80, 98, 120, 0.1);
  background: linear-gradient(145deg, #f6fafd 80%, #e4f0fd 100%);
  border-color: #b0c7e8;
  z-index: 2;
  transition:
    box-shadow 0.28s cubic-bezier(0.42, 0, 0.16, 1.01),
    background 0.21s;
}
.card-boton:not(.active) {
  box-shadow: 0 6px 28px 0 rgba(20, 38, 90, 0.07);
  background: linear-gradient(160deg, #f4f7fb 65%, #e2eafc 100%);
  border-color: #e6e8f0;
  z-index: 1;
}
.card-boton h2 {
  font-weight: 800;
  font-size: var(--font-size-rem-5xl);
  color: #042644;
  margin-bottom: 0.5rem;
  letter-spacing: 0.01em;
  transition: color 0.21s;
}
@media (max-width: 991px) {
  .card-boton {
    padding: 1.2rem 0.7rem 0.9rem 0.7rem;
    border-radius: 1.2rem;
    min-height: 120px;
    max-width: 100%;
  }
  .card-boton h2 {
    font-size: var(--font-size-rem-3xl);
    text-align: center;
  }
}

/* ------ Botones Interactivos ------ */
.botones-interactivos-arrow {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 1rem auto;
  width: 48px;
  height: 48px;
  background: rgba(4, 38, 68, 0.12);
  border-radius: 50%;
  cursor: pointer;
  transition:
    background 0.2s,
    transform 0.2s;
  color: #042644;
  box-shadow: 0 2px 8px rgba(4, 38, 68, 0.07);
}
.botones-interactivos-arrow:hover,
.botones-interactivos-arrow:focus {
  background: #042644;
  color: #fff;
  transform: scale(1.08);
  outline: none;
}
.botones-interactivos-arrow svg {
  transition: transform 0.4s cubic-bezier(0.5, 0, 0.25, 1);
}
.botones-interactivos-arrow.open svg {
  transform: rotate(180deg);
}
@media (max-width: 768px) {
  .botones-interactivos-arrow {
    width: 40px;
    height: 40px;
  }
}

/* ------ Descripción ------ */
.botones-interactivos-description {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.5, 0, 0.25, 1);
  pointer-events: none;
  padding: 0;
}
.botones-interactivos-description.show {
  max-height: 500px;
  opacity: 1;
  pointer-events: auto;
  padding: 1rem 0;
  max-height: 50vh;
  overflow-y: auto;
}
.botones-interactivos-description.show::-webkit-scrollbar {
  display: none;
}
.li-align ul {
  text-align: left;
  padding-right: 1.5em;
}
.botones-interactivos-description p {
  font-size: var(--font-size-rem-base);
  line-height: 1.7;
  text-align: justify;
}
.botones-interactivos-description h2,
.botones-interactivos-description h3 {
  color: #042644;
  font-weight: bold;
  margin-bottom: 0.5rem;
}
.botones-interactivos-description h2 {
  font-size: var(--font-size-rem-4xl);
}
.botones-interactivos-description h3 {
  font-size: calc(var(--font-size-rem-xl) + 0.05rem);
}

/* ----------------------------------*/
/* ----------- Logotipos -----------*/
/* ---------------------------------*/

.clientes-titulo-section {
  background: #e2e2e2; /* fondo muy claro para destacar el azul del texto */
  padding: 14px 0;
}

.clientes-titulo {
  font-size: var(--font-size-rem-8xl);
  color: #042644;
  font-weight: 600;
  letter-spacing: 0.01em;
  margin: 0;
  line-height: 1.1;
}

.clientes-titulo .font-bold {
  font-weight: 800;
  color: #042644;
}

@media (max-width: 768px) {
  .clientes-titulo-section .container,
  .clientes-titulo {
    text-align: center !important;
    justify-content: center;
  }
}

#nuestros-clientes-logos {
  background-color: #e2e2e2 !important;
}

.nuestros-clientes-logos .feature-icon {
  height: 100px;
  max-width: 230px;
  width: auto;
  object-fit: contain;
  border-radius: 12px;
  /* box-shadow: 0 2px 10px rgba(40, 40, 40, 0.07); */
  padding: 10px 20px;
  margin: 0 18px;
  transition: transform 0.15s;
}

.nuestros-clientes-logos .feature-icon:hover {
  transform: scale(1.1);
  /* box-shadow: 0 4px 22px rgba(20, 20, 20, 0.13); */
  /* background: #f5f5f5; */
}

/* Responsivo: logos más pequeños en móvil, espacio reducido */
@media (max-width: 768px) {
  .nuestros-clientes-logos .feature-icon {
    height: 90px; /* Más grande que en escritorio */
    max-width: 190px;
    margin: 0 10px 24px 10px;
    padding: 8px 8px;
  }
}

/*  ████████████████████████████████████████████████████████████  */
/*  =================== Convocatorias ==========================  */
/*  ████████████████████████████████████████████████████████████  */
.convocatoria-ficha {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.convocatoria-card {
  border-left: 5px solid #042644;
}

.convocatoria-imagen {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-bottom: 3px solid #042644;
}

.convocatoria-status {
  display: inline-block;
  padding: 0.3rem 0.9rem;
  border-radius: 20px;
  font-weight: 600;
  font-size: var(--font-size-rem-sm);
  color: #fff;
  margin-top: 0.5rem;
}

.status-abierta {
  background-color: #1a6f6b;
}

.status-cerrada {
  background-color: #dc3545;
}

.text-primary {
  color: #042644 !important;
}

.text-fecha {
  color: #1a6f6b;
}

.convocatoria-fecha {
  border-color: #1a6f6b !important;
}

.btn-primary {
  background-color: #042644;
  border-color: #042644;
}

.btn-primary:hover {
  background-color: #fcc000;
  border-color: #fcc000;
  color: #042644;
}

.btn-outline-primary {
  color: #042644;
  border-color: #042644;
}

.btn-outline-primary:hover {
  background-color: #042644;
  color: #fff;
}

.convocatoria-descripcion p {
  line-height: 1.7;
  text-align: justify;
}

/* Responsive */
@media (max-width: 768px) {
  .convocatoria-ficha {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .convocatoria-imagen {
    max-height: none;
  }
}

/* Mantiene el tamaño del card (misma altura del bloque imagen) */
.new-img {
  position: relative;
  height: 200px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
}

.new-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* Convocatorias listado: estilo moderno y balanceado (sin tocar cabecera) */
.convocatorias-grid {
  --conv-border: #d8e0e8;
  --conv-shadow: 0 10px 24px rgba(4, 38, 68, 0.08);
  --conv-shadow-hover: 0 16px 34px rgba(4, 38, 68, 0.14);
  --conv-title: #0f2843;
  --conv-meta: #4f6479;
}

.convocatorias-grid .convocatoria-col {
  display: flex;
}

.convocatorias-grid .convocatoria-card-modern {
  width: 100%;
  border: 1px solid var(--conv-border);
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
  box-shadow: var(--conv-shadow);
  overflow: hidden;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease;
  display: flex;
  flex-direction: column;
}

.convocatorias-grid .convocatoria-card-modern:hover {
  transform: translateY(-6px);
  box-shadow: var(--conv-shadow-hover);
}

.convocatorias-grid .convocatoria-media {
  height: 220px;
  margin: 0;
  padding: 16px;
  background: radial-gradient(
    circle at 50% 0%,
    #f9fbff 0%,
    #f1f5fb 70%,
    #eef3f9 100%
  );
  border-bottom: 1px solid var(--conv-border);
}

.convocatorias-grid .convocatoria-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.convocatorias-grid .convocatoria-content {
  padding: 18px 18px 20px;
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
}

.convocatorias-grid .convocatoria-title {
  color: var(--conv-title);
  font-size: var(--font-size-rem-8xl);
  font-weight: 700;
  line-height: 1.25;
  margin: 0;
  min-height: 7.4rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.convocatorias-grid .convocatoria-divider {
  margin: 14px 0 16px;
  border-top: 1px solid #cfd8e2;
  opacity: 1;
}

.convocatorias-grid .convocatoria-meta {
  color: var(--conv-meta) !important;
  font-size: var(--font-size-rem-lg);
  margin-bottom: 0.35rem !important;
}

.convocatorias-grid .convocatoria-actions {
  margin-top: auto;
  padding-top: 10px;
}

.convocatorias-grid .btn.btn-sm {
  font-size: calc(var(--font-size-rem-base) + 0.05rem);
  padding: 0.48rem 1.15rem;
  border-radius: 10px;
  font-weight: 600;
}

.convocatorias-grid + .pagination,
.pagination.justify-content-center.my-3 {
  margin-top: 2rem !important;
}

@media (max-width: 991.98px) {
  .convocatorias-grid .convocatoria-media {
    height: 200px;
  }

  .convocatorias-grid .convocatoria-title {
    font-size: calc(var(--font-size-rem-7xl) + 0.05rem);
    min-height: 6.8rem;
  }
}

@media (max-width: 575.98px) {
  .convocatorias-grid .convocatoria-media {
    height: 180px;
  }

  .convocatorias-grid .convocatoria-title {
    font-size: var(--font-size-rem-5xl);
    min-height: auto;
  }

  .convocatorias-grid .convocatoria-content {
    padding: 16px;
  }
}
.sr-only {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.researchguide-page {
  background: #fff;
  color: #1a1a2e;
  font-family: var(--font-body);
  width: 100%;
  max-width: none;
  margin: 0 0 70px;
  padding: 0;
}

.researchguide-subnav,
.subnav {
  align-items: center;
  background: #f6f9fd;
  border-bottom: 1px solid #e8edf4;
  box-shadow: inset 0 -1px 0 #e8edf4;
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 0.9rem 2.5rem;
  margin-bottom: 0;
}

.researchguide-subnav-item,
.subnav-pill {
  align-items: center;
  background: #fff;
  border: 1px solid #dce6f2;
  border-radius: 999px;
  color: #5a6a82;
  display: inline-flex;
  font-size: var(--font-size-md);
  font-weight: 500;
  gap: 7px;
  padding: 8px 17px;
  text-decoration: none;
  white-space: nowrap;
  transition:
    background 0.15s,
    border-color 0.15s,
    box-shadow 0.15s,
    color 0.15s,
    transform 0.15s;
}

.researchguide-subnav-item::after,
.subnav-pill::after {
  color: #9aa9bc;
  content: "›";
  font-size: var(--font-size-lg);
  line-height: 1;
  transition:
    color 0.15s,
    transform 0.15s;
}

.researchguide-subnav-item:hover,
.subnav-pill:hover {
  border-color: var(--ups-blue);
  box-shadow: 0 6px 16px rgba(0, 57, 118, 0.1);
  color: var(--ups-blue);
  text-decoration: none;
  transform: translateY(-1px);
}

.researchguide-subnav-item:hover::after,
.subnav-pill:hover::after {
  color: var(--ups-blue);
  transform: translateX(2px);
}

.researchguide-subnav-item.active,
.subnav-pill.active {
  background: var(--ups-blue);
  border-color: var(--ups-blue);
  box-shadow: 0 8px 18px rgba(0, 57, 118, 0.18);
  color: #fff;
  font-weight: 700;
}

.researchguide-subnav-item.active::after,
.subnav-pill.active::after {
  color: rgba(255, 255, 255, 0.8);
}

.researchguide-hero,
.hero-section {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  min-height: 230px;
}

.hero-left {
  background: var(--ups-blue);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2.75rem 3rem;
}

.researchguide-tag,
.hero-tag {
  color: rgba(255, 255, 255, 0.5);
  font-size: var(--font-size-xs);
  letter-spacing: 0.13em;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.researchguide-title,
.hero-title {
  color: #fff;
  font-family: var(--font-heading);
  font-size: var(--font-size-hero-sm);
  font-weight: 600;
  line-height: 1.2;
  margin: 0 0 14px;
}

.researchguide-description,
.hero-desc {
  color: rgba(255, 255, 255, 0.72);
  font-size: var(--font-size-lg);
  line-height: 1.75;
  margin: 0;
  max-width: 400px;
}

.researchguide-stats,
.hero-right {
  align-items: center;
  background: var(--ups-dark);
  display: flex;
  gap: 2.5rem;
  justify-content: center;
  padding: 2rem 2.5rem;
}

.researchguide-stat,
.hero-stat {
  text-align: center;
}

.hero-stat-num {
  color: #fff;
  font-family: var(--font-heading);
  font-size: var(--font-size-title-2xl);
  font-weight: 600;
  margin-bottom: 5px;
}

.hero-stat-label {
  color: rgba(255, 255, 255, 0.45);
  font-size: var(--font-size-sm);
  line-height: 1.4;
}

.hero-vdivider {
  background: rgba(255, 255, 255, 0.15);
  height: 48px;
  width: 1px;
}

.researchguide-accent,
.accent-bar {
  background: linear-gradient(
    90deg,
    var(--ups-blue) 0%,
    var(--ups-red) 55%,
    transparent 100%
  );
  height: 3px;
}

.section-label {
  color: #8898aa;
  font-size: var(--font-size-xs);
  font-weight: 500;
  letter-spacing: 0.12em;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
}

.feature-card {
  border: 1px solid #e4eaf4;
  border-radius: 10px;
  cursor: default;
  height: 100%;
  padding: 1.25rem 1.3rem;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
}

.feature-card:hover {
  border-color: var(--ups-blue);
  box-shadow: 0 2px 16px rgba(0, 57, 118, 0.08);
}

.fc-icon {
  color: var(--ups-blue);
  font-size: var(--font-size-title-md);
  margin-bottom: 10px;
}

.fc-title {
  color: #1a1a2e;
  font-family: var(--font-heading);
  font-size: var(--font-size-base);
  font-weight: 500;
  margin-bottom: 6px;
}

.fc-desc {
  color: #6b7a96;
  font-size: var(--font-size-sm-plus);
  line-height: 1.6;
}

.lower-section {
  border-top: 1px solid #e4eaf4;
}

.acc-col {
  border-right: 1px solid #e4eaf4;
}

.acc-custom .accordion-button {
  background: transparent;
  box-shadow: none;
  color: #1a1a2e;
  font-family: var(--font-body);
  font-size: var(--font-size-md);
  font-weight: 500;
  padding: 0.9rem 0;
}

.acc-custom .accordion-button:not(.collapsed) {
  background: transparent;
  color: var(--ups-blue);
}

.acc-custom .accordion-item {
  background: transparent;
  border: none;
  border-radius: 0 !important;
  border-top: 1px solid #e4eaf4;
}

.acc-custom .accordion-body {
  color: #6b7a96;
  font-size: var(--font-size-sm-plus);
  line-height: 1.7;
  padding: 0 0 0.9rem;
}

.qs-step {
  border-top: 1px solid #e4eaf4;
  display: flex;
  gap: 14px;
  padding: 0.85rem 0;
}

.qs-num {
  align-items: center;
  background: var(--ups-blue);
  border-radius: 50%;
  color: #fff;
  display: flex;
  flex-shrink: 0;
  font-family: var(--font-heading);
  font-size: var(--font-size-sm);
  font-weight: 600;
  height: 28px;
  justify-content: center;
  margin-top: 1px;
  width: 28px;
}

.qs-step-title {
  color: #1a1a2e;
  font-size: var(--font-size-md);
  font-weight: 500;
  margin-bottom: 3px;
}

.qs-step-desc {
  color: #6b7a96;
  font-size: var(--font-size-sm);
  line-height: 1.55;
}

.cta-strip {
  align-items: center;
  background: #f9fbfd;
  border-top: 1px solid #e4eaf4;
  display: flex;
  gap: 16px;
  justify-content: space-between;
  padding: 1.1rem 2.5rem;
}

.cta-text {
  color: #6b7a96;
  font-size: var(--font-size-md);
}

.cta-btn {
  background: transparent;
  border: 1.5px solid var(--ups-blue);
  border-radius: 8px;
  color: var(--ups-blue);
  cursor: pointer;
  font-size: var(--font-size-md);
  font-weight: 500;
  padding: 7px 20px;
  text-decoration: none;
  transition: all 0.15s;
}

.cta-btn:hover {
  background: var(--ups-blue);
  color: #fff;
  text-decoration: none;
}

.guide-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.guide-link {
  border: 1px solid #c5d3e8;
  border-radius: 999px;
  color: var(--ups-blue);
  font-size: var(--font-size-md);
  padding: 6px 14px;
  text-decoration: none;
  white-space: nowrap;
}

.guide-link:hover,
.guide-link.active {
  background: var(--ups-blue);
  color: #fff;
  text-decoration: none;
}

.researchguide-page video,
.researchguide-page iframe,
.researchguide-page .carousel {
  border-radius: 10px;
  overflow: hidden;
  width: 100%;
}

.guide-images {
  margin-top: 18px;
}

.guide-images .position-relative,
.guide-images .lightbox {
  width: 100%;
}

.guide-images .lightbox .row {
  row-gap: 12px;
}

.guide-images .lightbox .col-md-6 {
  width: 50%;
}

.guide-images img {
  border: 1px solid #e4eaf4;
  max-height: 340px;
  object-fit: contain;
  width: 100%;
}

.biblioguia-resource-cards .card-img-top {
  max-height: none;
  width: 88% !important;
}

.biblioguia-resource-cards .col {
  display: flex;
  justify-content: center;
}

.hover-effect {
  transition: opacity 0.3s ease-in-out;
}

.hover-effect:hover {
  opacity: 0.7;
}

.biblioguia-resources-section {
  background: #f4f7fb;
  border-top: 1px solid #e4eaf4;
}

.resources-title {
  color: #1a1a2e;
  font-family: var(--font-heading);
  font-size: var(--font-size-title-xl);
  font-weight: 600;
  line-height: 1.25;
  margin-bottom: 14px;
}

.media-panel {
  padding: 0 2.5rem 2rem;
}

.intro-card-list {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.intro-card {
  align-items: flex-start;
  background: #f9fbfd;
  border: 1px solid #e4eaf4;
  border-radius: 10px;
  display: flex;
  gap: 12px;
  padding: 14px 16px;
}

.intro-card-icon {
  align-items: center;
  background: #eaf2fb;
  border-radius: 50%;
  color: var(--ups-blue);
  display: flex;
  flex-shrink: 0;
  font-family: var(--font-heading);
  font-size: var(--font-size-md);
  font-weight: 600;
  height: 36px;
  justify-content: center;
  width: 36px;
}

.intro-card-title {
  color: #1a1a2e;
  font-family: var(--font-heading);
  font-size: var(--font-size-md);
  font-weight: 600;
  margin-bottom: 3px;
}

.intro-card-desc {
  color: #6b7a96;
  font-size: var(--font-size-sm);
  line-height: 1.45;
}

/* Research landing page variant */
.research-home-hero {
  height: 450px;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.research-home-hero video,
.research-home-hero img {
  display: block;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  width: 100%;
}

.research-home-overlay {
  background: linear-gradient(
    90deg,
    rgba(0, 25, 60, 0.82) 0%,
    rgba(0, 25, 60, 0.45) 55%,
    transparent 100%
  );
  display: flex;
  flex-direction: column;
  inset: 0;
  justify-content: flex-end;
  padding: 2.5rem 3rem;
  position: absolute;
}

.stats-row {
  border-bottom: 1px solid #e4eaf4;
}

.stat-cell {
  border-right: 1px solid #e4eaf4;
  padding: 1.4rem 2rem;
  text-align: center;
}

.stat-cell:last-child {
  border-right: none;
}

.stat-num {
  color: var(--ups-blue);
  font-family: var(--font-heading);
  font-size: var(--font-size-title-xl);
  font-weight: 600;
  margin-bottom: 4px;
}

.stat-label {
  color: #8898aa;
  font-size: var(--font-size-sm);
  line-height: 1.4;
}

.intro-lead {
  color: var(--ups-blue);
  font-family: var(--font-heading);
  font-size: var(--font-size-title-sm);
  font-weight: 500;
  line-height: 1.45;
  margin-bottom: 1.25rem;
}

.intro-body,
.results-body {
  color: #4a5568;
  font-size: var(--font-size-base);
  line-height: 1.8;
}

.intro-body strong,
.results-body strong {
  color: #1a1a2e;
}

.intro-body a,
.results-body a {
  color: var(--ups-blue);
  text-underline-offset: 3px;
}

.focus-card {
  border: 1px solid #e4eaf4;
  border-radius: 10px;
  height: 100%;
  padding: 1.2rem 1.3rem;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
}

.focus-card:hover {
  border-color: var(--ups-blue);
  box-shadow: 0 2px 16px rgba(0, 57, 118, 0.08);
}

.section-divider {
  border: none;
  border-top: 1px solid #e4eaf4;
  margin: 0;
}

.results-left {
  border-right: 1px solid #e4eaf4;
}

.pure-card {
  border: 1px solid #e4eaf4;
  border-radius: 10px;
  overflow: hidden;
}

.pure-card-header {
  align-items: center;
  background: var(--ups-blue);
  display: flex;
  gap: 10px;
  padding: 0.75rem 1.25rem;
}

.pure-card-header span {
  color: #fff;
  font-family: var(--font-heading);
  font-size: var(--font-size-md);
  font-weight: 500;
}

.pure-card-body {
  padding: 1.1rem 1.25rem;
}

.pure-card-desc {
  color: #4a5568;
  font-size: var(--font-size-md);
  line-height: 1.65;
  margin-bottom: 1rem;
}

.pure-links {
  display: grid;
  gap: 8px;
  grid-template-columns: 1fr 1fr;
}

.pure-link-item {
  align-items: center;
  border: 1px solid #dde6f0;
  border-radius: 7px;
  color: var(--ups-blue);
  display: flex;
  font-size: var(--font-size-sm);
  gap: 8px;
  padding: 7px 10px;
  text-decoration: none;
  transition: all 0.15s;
}

.pure-link-item:hover {
  background: var(--ups-blue);
  border-color: var(--ups-blue);
  color: #fff;
  text-decoration: none;
}

.pure-link-item i {
  font-size: var(--font-size-base);
}

body.research-header-solid #navbar-alterno {
  background: #0d2b44 !important;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  left: 0;
  max-width: 100vw !important;
  right: 0;
  width: 100vw !important;
}

body.research-header-solid {
  max-width: 100vw;
  overflow-x: hidden;
  width: 100vw;
}

body.research-header-solid .researchguide-page {
  max-width: 100vw;
  width: 100vw;
}

body.research-header-solid .navbar.fixed-top {
  left: 0 !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  max-width: 100vw !important;
  right: 0 !important;
  width: 100vw !important;
}

body.single-grupo {
  max-width: 100vw;
  overflow-x: hidden;
  width: 100vw;
}

body.single-grupo .navbar.fixed-top {
  left: 0 !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  max-width: 100vw !important;
  right: 0 !important;
  width: 100vw !important;
}

.research-groups-page {
  padding-top: 0;
}

.research-section-header {
  background: var(--ups-light);
  border-bottom: 1px solid #e8edf4;
  padding: 3rem 2.5rem;
}

.research-section-title {
  color: var(--ups-blue);
  font-family: var(--font-heading);
  font-size: var(--font-size-title-3xl);
  font-weight: 600;
  margin: 0;
}

.research-section-content {
  padding: 3rem 2.5rem;
}

.research-search {
  margin-bottom: 1.5rem;
  position: relative;
}

.research-search input {
  border: 1px solid #c5d3e8;
  border-radius: 8px;
  font-size: var(--font-size-base);
  outline: none;
  padding: 12px 20px 12px 45px;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
  width: 100%;
}

.research-search input:focus {
  border-color: var(--ups-blue);
  box-shadow: 0 0 0 3px rgba(0, 57, 118, 0.1);
}

.research-search i {
  color: #8898aa;
  font-size: var(--font-size-lg);
  left: 16px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.ups-accordion {
  --bs-accordion-border-color: #e4eaf4;
  --bs-accordion-border-radius: 8px;
  --bs-accordion-inner-border-radius: 8px;
  --bs-accordion-btn-focus-box-shadow: 0 0 0 3px rgba(0, 57, 118, 0.1);
}

.ups-accordion .accordion-item {
  border: 1px solid #e4eaf4;
  border-radius: 8px;
  margin-bottom: 0.5rem;
  overflow: hidden;
}

.ups-accordion .accordion-button {
  background-color: #fff;
  color: var(--ups-blue);
  font-family: var(--font-heading);
  font-size: var(--font-size-base);
  font-weight: 500;
  padding: 1rem 1.5rem;
}

.ups-accordion .accordion-button:not(.collapsed) {
  background-color: var(--ups-light);
  box-shadow: none;
  color: var(--ups-blue);
}

.ups-accordion .accordion-body {
  font-size: var(--font-size-md);
}

.btn-ups {
  align-items: center;
  background-color: var(--ups-dark);
  border: none;
  border-radius: 6px;
  color: #fff;
  display: inline-flex;
  font-family: var(--font-heading);
  font-size: var(--font-size-md);
  font-weight: 500;
  gap: 8px;
  padding: 10px 24px;
  text-decoration: none;
  transition: background-color 0.2s;
}

.btn-ups:hover {
  background-color: var(--ups-blue);
  color: #fff;
  text-decoration: none;
}

.research-gallery-section {
  background-color: var(--ups-light);
  border-top: 1px solid #e4eaf4;
  padding: 3rem 2.5rem;
}

.research-section-subtitle {
  color: #1a1a2e;
  font-family: var(--font-heading);
  font-size: var(--font-size-title-lg);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.research-gallery-grid img {
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  height: 300px;
  object-fit: cover;
  transition: transform 0.4s ease;
  width: 100%;
}

.research-gallery-grid a {
  display: block;
  overflow: hidden;
  border-radius: 12px;
}

.research-gallery-grid a:hover img {
  transform: scale(1.05);
}

.research-group-image-slider {
  position: relative;
}

.research-group-image-slider .carousel-inner {
  overflow: hidden;
  padding: 0.25rem 0;
}

.research-group-image-slider .carousel-item {
  padding: 0 2.8rem;
}

.research-group-slide-card {
  background: linear-gradient(145deg, #0d2b44 0%, #123d61 100%);
  border: 1px solid rgba(13, 43, 68, 0.18);
  border-radius: 18px;
  box-shadow: 0 20px 50px rgba(13, 43, 68, 0.14);
  display: flex;
  flex-direction: column;
  height: 500px;
  overflow: hidden;
  position: relative;
  text-decoration: none;
}

.research-group-slide-image {
  align-items: center;
  background: radial-gradient(
    circle at top,
    rgba(255, 255, 255, 0.12),
    rgba(13, 43, 68, 0.08)
  );
  display: flex;
  flex: 0 0 285px;
  justify-content: center;
  min-height: 0;
  padding: 1rem;
  position: relative;
  z-index: 1;
}

.research-group-slide-card img {
  height: 100%;
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  transform: scale(0.98);
  transition:
    transform 0.55s ease,
    filter 0.55s ease;
  width: 100%;
}

.research-group-slide-card::after {
  background: linear-gradient(
    180deg,
    rgba(0, 20, 42, 0) 0%,
    rgba(0, 20, 42, 0.12) 42%,
    rgba(0, 20, 42, 0.28) 100%
  );
  content: "";
  inset: 0;
  position: absolute;
  z-index: 1;
}

.research-group-slide-card:hover img {
  filter: saturate(1.12) contrast(1.04);
  transform: scale(1.03);
}

.research-group-slide-shine {
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255, 255, 255, 0.28) 50%,
    transparent 100%
  );
  height: 150%;
  left: -80%;
  position: absolute;
  top: -25%;
  transform: rotate(14deg);
  transition: left 0.65s ease;
  width: 45%;
  z-index: 2;
}

.research-group-slide-card:hover .research-group-slide-shine {
  left: 130%;
}

.research-group-slide-badge {
  background: #ffc400;
  border-radius: 999px;
  color: #0d2b44;
  font-family: var(--font-heading);
  font-size: var(--font-size-rem-sm);
  font-weight: 700;
  left: 1.25rem;
  letter-spacing: 0.04em;
  padding: 0.45rem 0.9rem;
  position: absolute;
  top: 1.25rem;
  z-index: 3;
}

.research-group-slide-content {
  bottom: 0;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  background: rgba(13, 43, 68, 0.96);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  flex: 1 1 auto;
  justify-content: flex-start;
  min-height: 215px;
  padding: 1.4rem;
  position: relative;
  z-index: 3;
}

.research-group-slide-kicker {
  color: rgba(255, 255, 255, 0.72);
  font-size: var(--font-size-rem-sm);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.research-group-slide-content strong {
  display: -webkit-box;
  font-family: var(--font-heading);
  font-size: clamp(1rem, 1.2vw, var(--font-size-title-sm));
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  line-height: 1.18;
  overflow: hidden;
}

.research-group-slide-link {
  align-items: center;
  color: #ffc400;
  display: inline-flex;
  font-size: var(--font-size-rem-base);
  font-weight: 700;
  gap: 0.4rem;
  margin-top: auto;
}

.research-group-slider-control {
  background: #0d2b44;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  height: 46px;
  opacity: 1;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
}

.research-group-slider-control.carousel-control-prev {
  left: -1.1rem;
}

.research-group-slider-control.carousel-control-next {
  right: -1.1rem;
}

.research-journals-page {
  padding-top: 60px;
}

.research-compact-hero {
  height: 240px;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.research-compact-hero-bg {
  align-items: center;
  background: linear-gradient(
    135deg,
    #001f47 0%,
    #003976 40%,
    #1a4e8a 70%,
    #2a6099 100%
  );
  display: flex;
  height: 100%;
  justify-content: center;
  width: 100%;
}

.research-compact-hero-image {
  display: block;
  height: 100%;
  object-fit: cover;
  object-position: center;
  width: 100%;
}

.research-compact-hero-bg i {
  color: rgba(255, 255, 255, 0.06);
  font-size: var(--font-size-icon-lg);
}

.research-compact-hero-overlay {
  background: linear-gradient(
    90deg,
    rgba(0, 25, 60, 0.82) 0%,
    rgba(0, 25, 60, 0.45) 55%,
    transparent 100%
  );
  bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  left: 0;
  padding: 2.5rem 3rem;
  position: absolute;
  right: 0;
  top: 0;
}

.journal-list-section {
  margin: 0 auto;
  max-width: 1200px;
  padding: 3rem 2.5rem;
}

.journal-card {
  background: #fff;
  border: 1px solid #e4eaf4;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  margin-bottom: 2rem;
  overflow: hidden;
  transition:
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}

.journal-card:hover {
  border-color: #c5d3e8;
  box-shadow: 0 8px 24px rgba(0, 57, 118, 0.06);
}

.journal-img-wrap {
  align-items: center;
  background: var(--ups-light);
  border-right: 1px solid #e4eaf4;
  display: flex;
  justify-content: center;
  min-width: 280px;
  padding: 2rem;
}

.journal-img-wrap img {
  border-radius: 4px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
  height: auto;
  max-width: 190px;
  transition: transform 0.3s ease;
}

.journal-card:hover .journal-img-wrap img {
  transform: scale(1.03);
}

.journal-content {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  padding: 2.5rem;
}

.journal-title {
  color: #1a1a2e;
  font-family: var(--font-heading);
  font-size: var(--font-size-title-md);
  font-weight: 600;
  margin-bottom: 12px;
}

.journal-desc {
  color: #4a5568;
  font-size: calc(var(--font-size-base) + 0.5px);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.journal-desc p:last-child {
  margin-bottom: 0;
}

.journal-meta-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 2rem;
}

.meta-item {
  align-items: center;
  color: #1a1a2e;
  display: inline-flex;
  font-size: var(--font-size-sm);
}

.meta-label {
  font-weight: 600;
  width: 55px;
}

.meta-badge {
  background: var(--ups-dark);
  border-radius: 999px;
  color: #fff;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 4px 12px;
}

.btn-solid-ups {
  align-items: center;
  background-color: var(--ups-dark);
  border-radius: 999px;
  color: #fff;
  display: inline-flex;
  font-size: var(--font-size-md);
  font-weight: 500;
  gap: 6px;
  padding: 8px 26px;
  text-decoration: none;
  transition:
    background-color 0.2s,
    transform 0.1s;
}

.btn-solid-ups:hover {
  background-color: var(--ups-blue);
  color: #fff;
  text-decoration: none;
}

.btn-solid-ups:active {
  transform: scale(0.98);
}

.research-reports-page {
  padding-top: 0;
  width: 100%;
}

.research-reports-page .researchguide-subnav,
.research-reports-page .research-compact-hero,
.research-reports-page .accent-bar,
.research-reports-page .research-reports-intro,
.research-reports-page .research-reports-grid {
  width: 100%;
}

.research-reports-intro {
  margin: 0;
  max-width: none;
  padding: 3rem 2.5rem 1rem;
  text-align: center;
}

.research-reports-intro .intro-lead {
  margin-left: auto;
  margin-right: auto;
  max-width: 760px;
}

.research-reports-intro .intro-body {
  margin-left: auto;
  margin-right: auto;
  max-width: 820px;
}

.research-reports-grid {
  background:
    radial-gradient(
      circle at 18% 8%,
      rgba(18, 184, 244, 0.12),
      transparent 28%
    ),
    radial-gradient(circle at 86% 18%, rgba(252, 192, 0, 0.1), transparent 24%),
    linear-gradient(180deg, #f4f7fb 0%, #ffffff 100%);
  padding: 2.5rem 2.5rem 4rem;
}

.research-reports-grid .row {
  display: grid;
  gap: 1.4rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-left: 0;
  margin-right: 0;
  max-width: 1440px;
  margin-inline: auto;
  width: 100%;
}

.report-future-card {
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.94),
      rgba(255, 255, 255, 0.84)
    ),
    radial-gradient(circle at 80% 8%, rgba(18, 184, 244, 0.16), transparent 32%);
  border: 1px solid #dce7f4;
  border-radius: 18px;
  box-shadow: 0 18px 42px rgba(0, 31, 71, 0.08);
  min-width: 0;
  overflow: hidden;
  position: relative;
  transition:
    border-color 0.22s,
    box-shadow 0.22s,
    transform 0.22s;
}

.report-future-card::before {
  background: linear-gradient(90deg, #003976, #12b8f4, #fcc000);
  content: "";
  height: 3px;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 3;
}

.report-future-card:hover,
.report-future-card:focus-within {
  border-color: rgba(18, 184, 244, 0.62);
  box-shadow: 0 24px 52px rgba(0, 31, 71, 0.14);
  transform: translateY(-4px);
}

.report-future-link {
  color: inherit;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 1.25rem;
  position: relative;
  text-decoration: none;
}

.report-future-link:hover {
  color: inherit;
  text-decoration: none;
}

.report-future-year {
  align-self: flex-start;
  background: #003976;
  border-radius: 999px;
  color: #fff;
  font-family: var(--font-heading);
  font-size: var(--font-size-sm);
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 0.42rem 0.75rem;
  position: relative;
  z-index: 2;
}

.report-future-glow {
  background: radial-gradient(
    circle,
    rgba(18, 184, 244, 0.22),
    transparent 62%
  );
  height: 180px;
  position: absolute;
  right: -70px;
  top: -70px;
  width: 180px;
}

.report-future-card .wrapper {
  align-items: center;
  display: flex;
  justify-content: center;
  margin: 0 auto;
  min-height: 330px;
  padding: 0.75rem 1rem 0;
  width: 100%;
}

.report-future-card .book {
  max-width: 250px;
  width: min(78%, 250px);
}

.report-future-card .inner-book {
  height: 310px;
  max-height: none;
  min-height: 0;
  transition:
    opacity 0.2s,
    transform 0.28s;
}

.report-future-card .inner-book:hover {
  opacity: 1;
}

.report-future-card:hover .inner-book,
.report-future-card:focus-within .inner-book {
  transform: rotateZ(-1deg) translateY(-4px);
}

.report-future-content {
  border-top: 1px solid #e4eaf4;
  margin-top: 1rem;
  padding-top: 1rem;
  position: relative;
  z-index: 2;
}

.report-future-kicker {
  color: #8898aa;
  display: block;
  font-size: var(--font-size-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  margin-bottom: 0.55rem;
  text-transform: uppercase;
}

.report-future-content h2 {
  color: #001f47;
  font-family: var(--font-heading);
  font-size: var(--font-size-xl);
  font-weight: 600;
  line-height: 1.35;
  margin-bottom: 1rem;
}

.report-future-action {
  align-items: center;
  color: var(--ups-blue);
  display: inline-flex;
  font-size: var(--font-size-md);
  font-weight: 700;
  gap: 0.45rem;
}

.report-future-card:hover .report-future-action,
.report-future-card:focus-within .report-future-action {
  color: #0b6fb3;
}

@media (min-width: 768px) {
  .journal-card {
    flex-direction: row;
  }
}

@media (max-width: 768px) {
  .researchguide-page {
    margin-bottom: 48px;
  }

  .researchguide-subnav,
  .subnav {
    padding: 1rem;
  }

  .researchguide-hero,
  .hero-section {
    grid-template-columns: 1fr;
  }

  .hero-right {
    gap: 1.5rem;
    padding: 1.5rem;
  }

  .acc-col {
    border-bottom: 1px solid #e4eaf4;
    border-right: none;
  }

  .cta-strip {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .guide-links {
    justify-content: flex-start;
  }

  .guide-images .lightbox .col-md-6 {
    width: 100%;
  }

  .research-home-overlay {
    padding: 1.5rem;
  }

  .research-home-hero .hero-title {
    font-size: var(--font-size-title-xl);
  }

  .results-left {
    border-bottom: 1px solid #e4eaf4;
    border-right: none;
  }

  .stat-cell {
    border-bottom: 1px solid #e4eaf4;
    border-right: none;
  }

  .stat-cell:last-child {
    border-bottom: none;
  }

  .research-section-header,
  .research-section-content,
  .research-gallery-section {
    padding: 2rem 1.5rem;
  }

  .research-gallery-grid img {
    height: 220px;
  }

  .research-group-slide-card {
    height: 280px;
  }

  .research-group-image-slider .carousel-item {
    padding: 0;
  }

  .research-group-slider-control {
    display: none;
  }

  .research-compact-hero-overlay {
    padding: 1.5rem;
  }

  .research-compact-hero .hero-title {
    font-size: var(--font-size-title-xl);
  }

  .journal-list-section {
    padding: 2rem 1.5rem;
  }

  .journal-img-wrap {
    border-bottom: 1px solid #e4eaf4;
    border-right: none;
    padding: 2rem 1rem;
  }

  .journal-content {
    padding: 1.5rem;
  }

  .btn-solid-ups {
    justify-content: center;
    width: 100%;
  }

  .research-reports-intro {
    padding: 2rem 1.5rem 1rem;
  }

  .research-reports-grid {
    padding: 1.5rem 1rem 3rem;
  }

  .research-reports-grid .row {
    gap: 1.25rem;
    grid-template-columns: minmax(0, 1fr);
  }

  .report-future-link {
    padding: 1rem;
  }

  .report-future-card .wrapper {
    min-height: 280px;
  }

  .report-future-card .inner-book {
    height: 255px;
  }

  .news-list-section {
    padding: 2rem 1.5rem 3rem;
  }

  .research-news-page .new-img img {
    height: 200px;
  }

  .research-news-page .new-info {
    min-height: auto;
  }

  .research-news-page .new-info .btn {
    align-self: stretch;
    text-align: center !important;
  }

  .events-list-section {
    padding: 2rem 1.5rem 3rem;
  }

  .research-events-page .event-card {
    grid-template-columns: 1fr;
    padding: 1rem;
  }

  .research-events-page .event-img {
    height: 220px;
  }

  .research-events-page .event-card-content {
    padding: 0;
  }

  .research-events-page .event-card-action {
    justify-content: center;
    width: 100%;
  }

  .single-news-hero {
    min-height: 420px;
  }

  .single-news-hero-overlay {
    padding: 1.5rem;
  }

  .single-news-title {
    font-size: var(--font-size-title-xl);
  }

  .single-news-layout {
    grid-template-columns: 1fr;
    padding: 2rem 1.5rem;
  }

  .single-news-content {
    padding: 1.5rem;
  }

  .single-group-hero {
    min-height: 510px;
  }

  .single-group-hero-overlay {
    justify-content: center;
    padding: 2.5rem 1.25rem 1.25rem;
  }

  .single-group-hero-overlay .hero-tag {
    font-size: var(--font-size-rem-xs);
    margin-bottom: 0.45rem;
  }

  .single-group-hero-overlay .hero-title {
    font-size: clamp(1.95rem, 8vw, 2.65rem);
    line-height: 1.12;
  }

  .single-group-badge {
    margin-bottom: 0.75rem;
  }

  .single-group-meta {
    gap: 0.5rem;
    margin-top: 0.8rem;
  }

  .single-group-meta span {
    font-size: var(--font-size-rem-sm);
    padding: 0.38rem 0.65rem;
  }

  .single-group-layout {
    grid-template-columns: 1fr;
    padding: 2rem 1.5rem;
  }

  .single-group-content,
  .single-group-card {
    padding: 1.5rem;
  }

  .single-group-content {
    padding: 0;
  }

  .single-group-profile-heading {
    align-items: flex-start;
    padding: 1.25rem;
  }

  .single-group-content .entry-content {
    padding: 1.25rem;
  }

  .single-group-slider {
    padding: 0 1.25rem 1.25rem;
  }

  .single-group-slider .carousel-control-prev {
    left: 1.75rem;
  }

  .single-group-slider .carousel-control-next {
    right: 1.75rem;
  }

  .single-group-card {
    position: static;
  }

  .single-news-sidebar {
    position: static;
  }

  .research-single-news-page #main-carousel .owl-item .item {
    min-height: 240px;
  }

  .single-event-hero {
    min-height: 420px;
  }

  .single-event-hero-overlay {
    padding: 1.5rem;
  }

  .single-event-title {
    font-size: var(--font-size-title-xl);
  }

  .single-event-layout {
    grid-template-columns: 1fr;
    padding: 2rem 1.5rem;
  }

  .single-event-content {
    padding: 1.5rem;
  }

  .single-event-sidebar {
    position: static;
  }
}

@media (min-width: 769px) and (max-width: 1199px) {
  .innovation-modern-gallery,
  .innovation-program-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .innovation-modern-capabilities {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .innovation-modern-split {
    grid-template-columns: 1fr;
  }

  .citups-modern-split,
  .citups-service-grid {
    grid-template-columns: 1fr;
  }

  .awards-feature-band {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .awards-editions-grid {
    grid-template-columns: 1fr;
  }

  .research-reports-grid .row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .report-future-card .wrapper {
    min-height: 300px;
  }

  .report-future-card .inner-book {
    height: 280px;
  }

  .research-events-page .event-card {
    grid-template-columns: 280px minmax(0, 1fr);
  }

  .single-news-layout {
    grid-template-columns: minmax(0, 1fr) 300px;
  }

  .single-event-layout {
    grid-template-columns: minmax(0, 1fr) 300px;
  }
}

@media (max-width: 768px) {
  .citups-modern-page .citups-modern-split {
    display: block;
    min-height: 0;
  }

  .citups-modern-page .citups-modern-split-media {
    height: 240px;
    overflow: hidden;
  }

  .citups-modern-page .citups-modern-split-media img {
    height: 100%;
    object-fit: cover;
    object-position: center;
    width: 100%;
  }

  .citups-modern-page .citups-modern-split-content {
    padding: 2rem 1.25rem;
  }

  .citups-modern-page .citups-statement-grid {
    grid-template-columns: 1fr;
  }

  .citups-modern-page .citups-statement-grid article {
    padding: 1rem;
  }

  .citups-modern-page .citups-statement-grid h2 {
    font-size: var(--font-size-title-xs);
    line-height: 1.25;
  }

  .citups-modern-page .citups-statement-grid p {
    font-size: var(--font-size-body);
    line-height: 1.65;
  }

  .citups-modern-page .citups-service-grid {
    display: grid;
    gap: 0.9rem;
    grid-template-columns: 1fr;
    padding: 1.5rem 1rem 2rem;
  }

  .citups-modern-page .citups-service-card {
    min-width: 0;
  }

  .citups-modern-page .citups-service-card summary {
    font-size: var(--font-size-lg);
    gap: 0.75rem;
    line-height: 1.3;
    padding: 1rem;
  }

  .citups-modern-page .citups-service-card summary::after {
    flex: 0 0 auto;
    font-size: var(--font-size-title-xs);
  }

  .citups-modern-page .citups-service-card div {
    max-height: none;
    overflow: visible;
    padding: 1rem;
  }

  .citups-modern-page .citups-service-card h3 {
    font-size: var(--font-size-body);
    line-height: 1.3;
  }

  .citups-modern-page .citups-modern-contact {
    gap: 1.5rem;
    grid-template-columns: 1fr;
    padding: 2.25rem 1.25rem;
  }

  .citups-modern-page .citups-contact-brand {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    padding: 0 0 1.25rem;
  }

  .citups-modern-page .citups-contact-content h2 {
    font-size: var(--font-size-title-sm);
  }

  .citups-modern-page .citups-contact-actions,
  .citups-modern-page .citups-contact-actions .btn-solid-ups,
  .citups-modern-page .citups-contact-secondary {
    width: 100%;
  }
}

/* ================= Ecosistema de Innovación y Startups ================= */

.innovation-hub-page,
.startups-page {
  background: #fff;
  padding-top: 0;
  width: 100%;
}

.innovation-hub-hero,
.startups-hero {
  background: linear-gradient(135deg, #001f47 0%, #003976 48%, #0d2b44 100%);
  background-position: center;
  background-size: cover;
  min-height: 440px;
  overflow: hidden;
  position: relative;
}

.innovation-hub-hero::before,
.startups-hero::before {
  background:
    radial-gradient(
      circle at 78% 18%,
      rgba(18, 184, 244, 0.22),
      transparent 26%
    ),
    linear-gradient(
      90deg,
      rgba(0, 25, 60, 0.92) 0%,
      rgba(0, 25, 60, 0.66) 55%,
      rgba(0, 25, 60, 0.22) 100%
    );
  content: "";
  inset: 0;
  position: absolute;
}

.innovation-hub-hero-overlay,
.startups-hero-overlay {
  bottom: 0;
  color: #fff;
  left: 0;
  max-width: 820px;
  padding: 3.5rem 3rem;
  position: absolute;
  z-index: 1;
}

.innovation-hub-hero-overlay .hero-title,
.startups-hero-overlay .hero-title,
.innovation-hub-hero-overlay .hero-desc,
.startups-hero-overlay .hero-desc {
  color: #fff;
}

.innovation-hub-subnav {
  position: sticky;
  top: 60px;
  z-index: 20;
}

.innovation-hub-intro,
.startups-intro {
  align-items: center;
  display: grid;
  gap: 2rem;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  padding: 3rem 2.5rem;
}

.innovation-hub-intro .intro-body,
.startups-intro .intro-body {
  margin-bottom: 0;
}

.innovation-hub-cards {
  background:
    radial-gradient(
      circle at 14% 0%,
      rgba(18, 184, 244, 0.11),
      transparent 28%
    ),
    linear-gradient(180deg, #f4f7fb 0%, #ffffff 100%);
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(2, minmax(280px, 520px));
  justify-content: center;
  padding: 2.5rem;
}

.innovation-hub-card {
  background: #0d2b44;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  box-shadow: 0 18px 38px rgba(0, 31, 71, 0.12);
  min-height: 420px;
  overflow: hidden;
  position: relative;
}

.innovation-hub-card a {
  color: #fff;
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
}

.innovation-hub-card img {
  display: block;
  height: 220px;
  object-fit: cover;
  opacity: 0.82;
  transition:
    opacity 0.2s,
    transform 0.3s;
  width: 100%;
}

.innovation-hub-card:hover img {
  opacity: 1;
  transform: scale(1.04);
}

.innovation-hub-card div {
  background:
    radial-gradient(
      circle at 90% 0%,
      rgba(18, 184, 244, 0.18),
      transparent 30%
    ),
    #0d2b44;
  flex: 1;
  padding: 1.5rem;
}

.innovation-hub-card span,
.startups-path span,
.innovation-hub-steps span {
  background: #fcc000;
  border-radius: 999px;
  color: #001f47;
  display: inline-flex;
  font-family: var(--font-heading);
  font-size: var(--font-size-sm);
  font-weight: 700;
  margin-bottom: 1rem;
  padding: 0.35rem 0.7rem;
}

.innovation-hub-card h2,
.innovation-hub-process h2,
.startups-showcase h2,
.startups-checklist h2,
.startups-cta h2 {
  font-family: var(--font-heading);
  font-weight: 600;
}

.innovation-hub-card h2 {
  color: #fff;
  font-size: var(--font-size-title-xs);
  line-height: 1.25;
  margin-bottom: 0.75rem;
}

.innovation-hub-card p {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.65;
  margin-bottom: 0;
}

.innovation-hub-process {
  padding: 3rem 2.5rem;
  text-align: center;
}

.innovation-hub-steps,
.startups-path {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 1.5rem;
}

.innovation-hub-steps article,
.startups-path article,
.startups-score-card,
.startups-checklist {
  background: #fff;
  border: 1px solid #e4eaf4;
  border-radius: 14px;
  box-shadow: 0 14px 32px rgba(0, 31, 71, 0.06);
  padding: 1.25rem;
}

.innovation-hub-steps h3,
.startups-path h3 {
  color: var(--ups-blue);
  font-family: var(--font-heading);
  font-size: var(--font-size-lg);
  font-weight: 600;
  margin-bottom: 0.45rem;
}

.innovation-hub-steps p,
.startups-path p {
  color: #5a6a82;
  line-height: 1.6;
  margin-bottom: 0;
}

.innovation-hub-cta,
.startups-cta {
  align-items: center;
  background: #0d2b44;
  color: #fff;
  display: flex;
  gap: 2rem;
  justify-content: space-between;
  padding: 2.5rem;
}

.innovation-hub-cta .section-label,
.innovation-hub-cta h2,
.innovation-hub-cta p,
.startups-cta .section-label,
.startups-cta h2,
.startups-cta p {
  color: #fff;
}

.innovation-hub-cta p,
.startups-cta p {
  margin-bottom: 0;
  max-width: 820px;
}

.startups-score-card {
  background:
    radial-gradient(
      circle at 88% 0%,
      rgba(18, 184, 244, 0.14),
      transparent 30%
    ),
    #f9fbfd;
}

.startups-score-card span {
  color: #8898aa;
  display: block;
  font-size: var(--font-size-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  margin-bottom: 0.7rem;
  text-transform: uppercase;
}

.startups-score-card strong {
  color: var(--ups-blue);
  display: block;
  font-family: var(--font-heading);
  font-size: var(--font-size-title-xs);
  line-height: 1.35;
  margin-bottom: 0.7rem;
}

.startups-score-card p {
  color: #5a6a82;
  line-height: 1.65;
  margin-bottom: 0;
}

.startups-path {
  background: #f4f7fb;
  margin-top: 0;
  padding: 2.5rem;
}

.startups-path article {
  min-height: 220px;
}

.startups-showcase {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding: 2.5rem;
}

.startups-showcase article {
  background: #fff;
  border: 1px solid #e4eaf4;
  border-radius: 16px;
  box-shadow: 0 14px 32px rgba(0, 31, 71, 0.06);
  overflow: hidden;
}

.startups-showcase img {
  display: block;
  height: 220px;
  object-fit: cover;
  width: 100%;
}

.startups-showcase div {
  padding: 1.35rem;
}

.startups-showcase h2 {
  color: var(--ups-blue);
  font-size: var(--font-size-xl);
  margin-bottom: 0.65rem;
}

.startups-showcase p {
  color: #5a6a82;
  line-height: 1.65;
  margin-bottom: 0;
}

.startups-checklist {
  display: grid;
  gap: 2rem;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  margin: 0 2.5rem 3rem;
}

.startups-checklist ul {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  list-style: none;
  margin: 0;
  padding: 0;
}

.startups-checklist li {
  background: #f9fbfd;
  border: 1px solid #e4eaf4;
  border-radius: 10px;
  color: #334155;
  padding: 0.85rem 1rem;
}

@media (max-width: 1199px) {
  .startups-showcase {
    grid-template-columns: 1fr;
  }

  .innovation-hub-steps,
  .startups-path {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .innovation-hub-hero,
  .startups-hero {
    min-height: 430px;
  }

  .innovation-hub-hero-overlay,
  .startups-hero-overlay {
    padding: 6.5rem 1.25rem 1.5rem;
  }

  .innovation-hub-intro,
  .startups-intro,
  .innovation-hub-process,
  .startups-path,
  .startups-showcase,
  .innovation-hub-cta,
  .startups-cta {
    padding: 2rem 1.25rem;
  }

  .innovation-hub-intro,
  .startups-intro,
  .innovation-hub-steps,
  .startups-path,
  .startups-checklist {
    grid-template-columns: 1fr;
  }

  .innovation-hub-cards {
    grid-template-columns: 1fr;
    padding: 1.5rem 1rem 2rem;
  }

  .innovation-hub-card {
    min-height: 0;
  }

  .innovation-hub-card img,
  .startups-showcase img {
    height: 190px;
  }

  .innovation-hub-cta,
  .startups-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .startups-checklist {
    margin: 0 1.25rem 2rem;
    padding: 1.25rem;
  }
}
