:root {
  --nav-hover-color: #ffffff;
}

/* PAGE Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  /*--background-color: #f1f5f7; /* Background color for the entire website, including individual sections */
  --default-color: #010608; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #011e2c; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #04415f; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

body {
  background-color: #e8e8e8;
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  --background-color: #ffe390;
  --contrast-color: #444444;
  color: var(--default-color);
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  padding: 0 15px;
  width: 300px;
  transition: all ease-in-out 0.3s;
  overflow-y: auto;
  z-index: 997;
}

.header .header-container {
  border-radius: 20px;
  padding: 15px;
  background-color: var(--background-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
}

.header .social-links {
  margin: 0 0 10px 0;
}

.header .social-links a {
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: color-mix(in srgb, var(--default-color), transparent 90%);
  color: var(--default-color);
  margin: 0 2px;
  border-radius: 50%;
  text-align: center;
  width: 40px;
  height: 40px;
  transition: 0.3s;
}

.header .social-links a:hover {
  color: var(--contrast-color);
  background: var(--accent-color);
}

@media (min-width: 1200px) {

  .header~main,
  .header~#footer {
    margin-left: 330px;
  }
}

@media (max-width: 1199px) {
  .header {
    left: -100%;
  }
}

.header.header-show {
  left: 0;
}

.header .header-toggle {
  color: var(--contrast-color);
  background-color: var(--accent-color);
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  position: fixed;
  top: 15px;
  right: 15px;
  z-index: 9999;
  transition: background-color 0.3s;
}

.header .header-toggle:hover {
  color: var(--contrast-color);
  background-color: color-mix(in srgb, var(--accent-color) 90%, white 15%);
}


/*--------------------------------------------------------------
# Navigation Menu POLITICAS -> PAGE
--------------------------------------------------------------*/
.mobile-nav-toggle {
  display: none;
}

.navmenu {
  padding: 0;
  z-index: 9997;
  width: 100%;
}

.navmenu ul {
  list-style: none;
  padding: 0 0 20px 0;
  margin: 0;
}

.navmenu a,
.navmenu a:focus {
  color: var(--nav-color);
  padding: 15px 10px;
  font-family: var(--nav-font);
  font-size: 16px;
  font-weight: 400;
  display: flex;
  align-items: center;
  white-space: nowrap;
  transition: 0.3s;
  width: 100%;
}

.navmenu a .navicon,
.navmenu a:focus .navicon {
  font-size: 20px;
  margin-right: 10px;
}

.navmenu a .toggle-dropdown,
.navmenu a:focus .toggle-dropdown {
  font-size: 12px;
  line-height: 0;
  margin-left: auto;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: 0.3s;
  flex-shrink: 0;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
}

.navmenu a .toggle-dropdown:hover,
.navmenu a:focus .toggle-dropdown:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.navmenu a:hover,
.navmenu .active,
.navmenu .active:focus {
  color: var(--nav-hover-color);
}

.navmenu a:hover .navicon,
.navmenu .active .navicon,
.navmenu .active:focus .navicon {
  color: var(--accent-color);
}

.navmenu .active .toggle-dropdown,
.navmenu .active:focus .toggle-dropdown {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: rotate(180deg);
}

.navmenu .dropdown {
  display: block;
}

.navmenu .dropdown a,
.navmenu .dropdown a:focus {
  color: --nav-dropdown-color;
}

.navmenu .dropdown a:hover,
.navmenu .dropdown .active,
.navmenu .dropdown .active:focus {
  color: var(--nav-dropdown-hover-color);
}

.navmenu .dropdown ul {
  position: static;
  display: none;
  z-index: 99;
  padding: 5px 10px;
  margin: 5px 10px;
  background-color: var(--nav-dropdown-background-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  box-shadow: none;
  transition: all 0.5s ease-in-out;
}

.navmenu .dropdown ul ul {
  background-color: rgba(33, 37, 41, 0.1);
}

.navmenu .dropdown>.dropdown-active {
  display: block;
  background-color: rgba(33, 37, 41, 0.03);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
/*section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  overflow: clip;
}*/
section {
  padding: 80px 0px 20px 0px;
  overflow: hidden;
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  position: relative;
}

.section-title h2:before,
.section-title h2:after {
  content: "";
  width: 50px;
  height: 2px;
  background: var(--accent-color);
  display: inline-block;
}

.section-title h2:before {
  margin: 0 15px 10px 0;
}

.section-title h2:after {
  margin: 0 0 10px 15px;
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero .background-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

.hero .background-elements .bg-circle {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(45deg, color-mix(in srgb, var(--accent-color), transparent 90%), color-mix(in srgb, var(--accent-color), transparent 95%));
  animation: float 6s ease-in-out infinite;
}

.hero .background-elements .bg-circle.circle-1 {
  width: 300px;
  height: 300px;
  top: 10%;
  right: 10%;
  animation-delay: 0s;
}

.hero .background-elements .bg-circle.circle-2 {
  width: 200px;
  height: 200px;
  bottom: 20%;
  left: 5%;
  animation-delay: 2s;
}

.hero .hero-content {
  position: relative;
  width: 100%;
  z-index: 2;
}

.hero .container {
  position: relative;
  z-index: 3;
}

.hero .hero-text h1 {
  font-size: 72px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 15px;
  color: var(--heading-color);
}

.hero .hero-text h1 .accent-text {
  color: var(--accent-color);
  position: relative;
}

.hero .hero-text h1 .accent-text::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-color), color-mix(in srgb, var(--accent-color), transparent 50%));
}

.hero .hero-text h2 {
  font-size: 32px;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 10px;
}

.hero .hero-text .lead {
  font-size: 24px;
  margin-bottom: 20px;
  color: var(--default-color);
}

.hero .hero-text .lead span {
  color: var(--accent-color);
  font-weight: 600;
  border-bottom: 2px solid var(--accent-color);
  padding-bottom: 2px;
}

.hero .hero-text .description {
  font-size: 18px;
  font-style: italic;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 40px;
  max-width: 500px;
}

.hero .hero-actions {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.hero .hero-actions .btn {
  padding: 14px 30px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid;
}

.hero .hero-actions .btn.btn-primary {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-color: var(--accent-color);
}

.hero .hero-actions .btn.btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 10%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.hero .hero-actions .btn.btn-outline {
  background-color: transparent;
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.hero .hero-actions .btn.btn-outline:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
}

.hero .social-links {
  display: flex;
  gap: 20px;
}

.hero .social-links a {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--surface-color);
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  border-radius: 50%;
  font-size: 20px;
  transition: all 0.3s ease;
}

.hero .social-links a:hover {
  color: var(--contrast-color);
  background-color: var(--accent-color);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.hero .hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.hero .hero-visual .profile-container {
  position: relative;
  width: 400px;
  height: 400px;
}

.hero .hero-visual .profile-container .profile-background {
  position: absolute;
  top: 15px;
  left: 15px;
  width: 100%;
  height: 100%;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 30px;
  z-index: 1;
}

.hero .hero-visual .profile-container .profile-image {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 30px;
  z-index: 2;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-20px);
  }
}

@keyframes floatIcon {

  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }

  50% {
    transform: translateY(-10px) rotate(5deg);
  }
}

@media (max-width: 992px) {
  .hero .hero-text {
    text-align: center;
    margin-bottom: 50px;
  }

  .hero .hero-text h1 {
    font-size: 56px;
  }

  .hero .hero-text h2 {
    font-size: 28px;
  }

  .hero .hero-text .lead {
    font-size: 20px;
  }

  .hero .hero-visual .profile-container {
    width: 350px;
    height: 350px;
  }
}

@media (max-width: 768px) {
  .hero .hero-text h1 {
    font-size: 42px;
  }

  .hero .hero-text h2 {
    font-size: 24px;
  }

  .hero .hero-text .lead {
    font-size: 18px;
  }

  .hero .hero-text .description {
    font-size: 16px;
  }

  .hero .hero-actions {
    justify-content: center;
  }

  .hero .hero-actions .btn {
    padding: 12px 25px;
    font-size: 14px;
  }

  .hero .hero-visual .profile-container {
    width: 300px;
    height: 300px;
  }

  .hero .background-elements .bg-circle.circle-1 {
    width: 200px;
    height: 200px;
  }

  .hero .background-elements .bg-circle.circle-2 {
    width: 150px;
    height: 150px;
  }

  .hero .background-elements .bg-circle.circle-3 {
    width: 100px;
    height: 100px;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.txt-titulo {
  color: #00A99C;
  text-align: right;
  padding-top: 50px;
}

.txt-conve {
  color: #2d2d2d;
}

.txt-titulo h2{
  /*margin: 0;*/
  font-size: 4rem;
  font-weight: 700;
  padding: 40px 0;
}

.txt-titulo p {
  margin: 10px 0 0 0;
  font-size: 32px;
}

.txt-titulo .sigla {
  font-size: 5rem;
}

.hrtitulo {
  margin: 0px;
  border-color: #ff8d00;
  border-width: 10px;
}

.titulo {
  width: 100%;
  /*min-height: 60vh;*/
  position: relative;
  /*padding: 20px 0px 20px 0px;*/
  /*display: flex;
  align-items: center;
  justify-content: center;*/
}

.titulo .fondott {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
  z-index: -1;
}

.titulo h2 span{
  font-size: 4rem;
  font-weight: normal;
  font-style: italic;
}

.titulo .logos img{
  width: 100%;
  min-height: auto;

}
.titulo .logos .filtro{
  filter: brightness(0) invert(1);
}


/*--------------------------------------------------------------
# Titulo general
--------------------------------------------------------------*/
.titulo-decorado {
      text-align: center;
      position: relative;
      font-weight: bold;
      text-transform: uppercase;
      color: #000;
      margin-bottom: 0.5rem;
      display: inline-block;
    }

    .titulo-decorado::before,
    .titulo-decorado::after {
      content: "";
      position: absolute;
      top: 50%;
      width: 50px;
      height: 2px;
      background-color: #00A99C;
    }

    .titulo-decorado::before {
      left: -70px;
    }

    .titulo-decorado::after {
      right: -70px;
    }

    .subtitulo {
      text-transform: uppercase;
      color: #666666;
      font-size: 0.875rem; /* Tamaño más pequeño */
      text-align: center;
    }

    .titulo-container {
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    @media (max-width: 576px) {
      .titulo-decorado::before,
      .titulo-decorado::after {
        width: 30px;
        left: -40px;
        right: -40px;
      }
    }

/*--------------------------------------------------------------
# Menu top
--------------------------------------------------------------*/
.nav-menu .menutop a {
  color: #2F2F2F;
  border-radius: 8px;
}
/*.menutop a:hover {
  color: #fff;
}*/

/*--------------------------------------------------------------
# Navigation Menu INDEX
--------------------------------------------------------------*/
.nav-menu a:hover, .nav-menu .active > a, .nav-menu li:hover > a {
  color: #fff;
  background: #ffc107;
  text-decoration: none;
  border-radius: 8px; 
}

.navlinkscroll {
  color: #fff;
}

.nav-scrolled {
  background-color: #fff;
  transition: background-color 0.3s ease;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/*--------------------------------------------------------------
# Menu Inicio
--------------------------------------------------------------*/

.menuinicio {
  color: #fff;
  padding: 40px;
  /*background-color: #96CB00;*/
}

.menuinicio i{
  font-size: 2rem;
  display: inline-block;
  transition: transform 0.3s ease;
}

.menuinicio i:hover{
  transform: scale(1.5);
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

#colage {
  position: relative;
  overflow: hidden;
}

#colage img {
  transition: transform 0.3s ease;
}

#colage img:hover {
  transform: scale(1.2);
}
/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: 70vh;
  position: relative;
  padding: 80px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 30%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.hero .container {
  position: relative;
  z-index: 3;
}

.hero .btn-get-started {
  color: var(--default-color);
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 40px;
  margin: 30px 0 0 0;
  border-radius: 50px;
  transition: 0.5s;
  border: 2px solid var(--accent-color);
}

.hero .btn-get-started:hover {
  color: var(--contrast-color);
  background: var(--accent-color);
  border-color: var(--accent-color);
}

@media (max-width: 768px) {
  .hero h2 {
    font-size: 32px;
  }

  .hero p {
    font-size: 18px;
  }
}

/*--------------------------------------------------------------
# Politicas
--------------------------------------------------------------*/
.pppi {
  color: #c70a75;
  text-decoration: none;
}
.pppi:hover{
  text-decoration: underline;
}

.ppev {
  color: #fc8c00;
  text-decoration: none;
}
.ppev:hover{
  text-decoration: underline;
}

.pphc {
  color: #7abd05;
  text-decoration: none;
}
.pphc:hover{
  text-decoration: underline;
}

.ppd{
  color: #820099;
  text-decoration: none;
}
.ppd:hover{
  text-decoration: underline;
}

.fondo {
  background-color: rgba(255, 193, 7, 0.12);
}

.highlights-features .feature-item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.highlights-features .feature-item i {
  /*color: var(--accent-color);*/
  font-size: 1.2rem;
  margin-right: 1rem;
}

.highlights-features .feature-item span {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--default-color);
}

.btn-outline-pppi {
  --bs-btn-color: #E9007A;
  --bs-btn-border-color: #E9007A;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #E9007A;
  --bs-btn-hover-border-color: #E9007A;
  --bs-btn-focus-shadow-rgb: 13,110,253;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #E9007A;
  --bs-btn-active-border-color: #E9007A;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #E9007A;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #E9007A;
  --bs-gradient: none;
}

.btn-outline-ppev {
  --bs-btn-color: #FF8D00;
  --bs-btn-border-color: #FF8D00;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #FF8D00;
  --bs-btn-hover-border-color: #FF8D00;
  --bs-btn-focus-shadow-rgb: 13,110,253;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #FF8D00;
  --bs-btn-active-border-color: #FF8D00;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #FF8D00;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #FF8D00;
  --bs-gradient: none;
}

.btn-outline-pphc {
  --bs-btn-color: #96CB00;
  --bs-btn-border-color: #96CB00;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #96CB00;
  --bs-btn-hover-border-color: #96CB00;
  --bs-btn-focus-shadow-rgb: 13,110,253;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #96CB00;
  --bs-btn-active-border-color: #96CB00;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #96CB00;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #96CB00;
  --bs-gradient: none;
}
.btn-outline-ppd {
  --bs-btn-color: #820099;
  --bs-btn-border-color: #820099;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #820099;
  --bs-btn-hover-border-color: #820099;
  --bs-btn-focus-shadow-rgb: 13,110,253;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #820099;
  --bs-btn-active-border-color: #820099;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #820099;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #820099;
  --bs-gradient: none;
}

/*--------------------------------------------------------------
# POLITICAS - ANIMATE IMG
--------------------------------------------------------------*/

.pppi-animate {
  transition: filter 0.4s ease; /* transición suave */
  filter: drop-shadow(0px 0px 0px transparent); /* estado inicial sin sombra */
}
.pppi-animate:hover {
  /*animation: wobble_bottom 2s ease 0s 1 normal forwards;*/
  filter: drop-shadow(0px 10px 10px #000);
}

.ppev-animate {
  transition: filter 0.4s ease; /* transición suave */
  filter: drop-shadow(0px 0px 0px transparent); /* estado inicial sin sombra */
}
.ppev-animate:hover {
  /*animation: wobble_bottom 2s ease 0s 1 normal forwards;*/
  filter: drop-shadow(0px 10px 10px #000);
}

.pphc-animate {
  transition: filter 0.4s ease; /* transición suave */
  filter: drop-shadow(0px 0px 0px transparent); /* estado inicial sin sombra */
}
.pphc-animate:hover {
  /*animation: wobble_bottom 2s ease 0s 1 normal forwards;*/
  filter: drop-shadow(0px 10px 10px #000);
}

.ppd-animate {
  transition: filter 0.4s ease; /* transición suave */
  filter: drop-shadow(0px 0px 0px transparent); /* estado inicial sin sombra */
}
.ppd-animate:hover {
  /*animation: wobble_bottom 2s ease 0s 1 normal forwards;*/
  filter: drop-shadow(0px 10px 10px #000);
}
/*.ppev-animate {
  display: block;
  cursor: pointer;
  animation: none; /* evita que quede guardada 
}*/

/* Al pasar el mouse: reproducir animación */
/*.ppev-animate:hover {
  animation: wobble_bottom 2s ease 0s 1 normal forwards;
}    

@keyframes wobble_bottom {
  0%, 100% {
    transform: translateX(0%);
    transform-origin: 50% 50%;
  }
  15% {
    transform: translateX(-30px) rotate(-6deg);
  }
  30% {
    transform: translateX(15px) rotate(6deg);
  }
  45% {
    transform: translateX(-15px) rotate(-3.6deg);
  }
  60% {
    transform: translateX(9px) rotate(2.4deg);
  }
  75% {
    transform: translateX(-6px) rotate(-1.2deg);
  }
}
.texto-sombra {
  font-size: 32px;
  font-weight: bold;
  transition: text-shadow 0.3s ease;
}
.texto-sombra:hover {
  text-shadow: 0px 2px 5px #c70a75; 
}*/
.texto-sombra {
  text-shadow: 2px 2px 5px #c6c6c6; 
}
/*--------------------------------------------------------------
# Noticias
--------------------------------------------------------------*/

.img-cover img{
  width: 100%;
  height: 430px;
  object-fit: cover;
}

/*--------------------------------------------------------------
# Funcionarios
--------------------------------------------------------------*/

#funcionario h2 {
  color: #000;
}

/*--------------------------------------------------------------
# Destacado
--------------------------------------------------------------*/

#destacado .widthframe {
  width: 450px;
  height: 650px;
}

/*--------------------------------------------------------------
# Blog
--------------------------------------------------------------*/
.blog {
  /*padding: 40px 0 20px 0;*/
}

.blog .entry {
  padding: 30px;
  margin-bottom: 60px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog .entry .entry-img {
  max-height: 440px;
  margin: -30px -30px 20px -30px;
  overflow: hidden;
}

.blog .entry .entry-title {
  font-size: 28px;
  font-weight: bold;
  padding: 0;
  margin: 0 0 20px 0;
}

.blog .entry .entry-title a {
  color: #545454;
  transition: 0.3s;
}

.blog .entry .entry-title a:hover {
  /*color: #e96b56;*/
  color: #20c997;
}

.blog .entry .entry-meta {
  margin-bottom: 15px;
  color: #bababa;
}

.blog .entry .entry-meta ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  align-items: center;
  padding: 0;
  margin: 0;
}

.blog .entry .entry-meta ul li + li {
  padding-left: 20px;
}

.blog .entry .entry-meta i {
  font-size: 16px;
  margin-right: 8px;
  line-height: 0;
}

.blog .entry .entry-meta a {
  color: #777777;
  font-size: 14px;
  display: inline-block;
  line-height: 1;
}

.blog .entry .entry-meta span {
  color: #777777;
  font-size: 14px;
  display: inline-block;
  line-height: 1;
}

.blog .entry .entry-content p {
  line-height: 24px;
}

.blog .entry .entry-content .read-more {
  -moz-text-align-last: right;
  text-align-last: right;
}

.blog .entry .entry-content .read-more a {
  display: inline-block;
  background: #e96b56;
  color: #fff;
  padding: 6px 20px;
  transition: 0.3s;
  font-size: 14px;
  border-radius: 4px;
}

.blog .entry .entry-content .read-more a:hover {
  background: #ec7f6d;
}

.blog .entry .entry-content h3 {
  font-size: 22px;
  margin-top: 30px;
  font-weight: bold;
}

.blog .entry .entry-content blockquote {
  overflow: hidden;
  background-color: #fafafa;
  padding: 60px;
  position: relative;
  text-align: center;
  margin: 20px 0;
}

.blog .entry .entry-content blockquote p {
  color: #444444;
  line-height: 1.6;
  margin-bottom: 0;
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
}

.blog .entry .entry-content blockquote::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background-color: #545454;
  margin-top: 20px;
  margin-bottom: 20px;
}

.blog .entry .entry-footer {
  padding-top: 10px;
  border-top: 1px solid #e6e6e6;
}

.blog .entry .entry-footer i {
  color: #a1a1a1;
  display: inline;
}

.blog .entry .entry-footer a {
  color: #616161;
  transition: 0.3s;
}

.blog .entry .entry-footer a:hover {
  color: #e96b56;
}

.blog .entry .entry-footer .cats {
  list-style: none;
  display: inline;
  padding: 0 20px 0 0;
  font-size: 14px;
}

.blog .entry .entry-footer .cats li {
  display: inline-block;
}

.blog .entry .entry-footer .tags {
  list-style: none;
  display: inline;
  padding: 0;
  font-size: 14px;
}

.blog .entry .entry-footer .tags li {
  display: inline-block;
}

.blog .entry .entry-footer .tags li + li::before {
  padding-right: 6px;
  color: #6c757d;
  content: ",";
}

.blog .entry .entry-footer .share {
  font-size: 16px;
}

.blog .entry .entry-footer .share i {
  padding-left: 5px;
}

.blog .entry-single {
  margin-bottom: 30px;
  background: #f0f8ff;
}

.blog .blog-author {
  padding: 20px;
  margin-bottom: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog .blog-author img {
  width: 120px;
  margin-right: 20px;
}

.blog .blog-author h4 {
  font-weight: 600;
  font-size: 22px;
  margin-bottom: 0px;
  padding: 0;
  color: #545454;
}

.blog .blog-author .social-links {
  margin: 0 10px 10px 0;
}

.blog .blog-author .social-links a {
  color: rgba(84, 84, 84, 0.5);
  margin-right: 5px;
}

.blog .blog-author p {
  font-style: italic;
  color: #b7b7b7;
}

.blog .blog-comments {
  margin-bottom: 30px;
}

.blog .blog-comments .comments-count {
  font-weight: bold;
}

.blog .blog-comments .comment {
  margin-top: 30px;
  position: relative;
}

.blog .blog-comments .comment .comment-img {
  margin-right: 14px;
}

.blog .blog-comments .comment .comment-img img {
  width: 60px;
}

.blog .blog-comments .comment h5 {
  font-size: 16px;
  margin-bottom: 2px;
}

.blog .blog-comments .comment h5 a {
  font-weight: bold;
  color: #444444;
  transition: 0.3s;
}

.blog .blog-comments .comment h5 a:hover {
  color: #e96b56;
}

.blog .blog-comments .comment h5 .reply {
  padding-left: 10px;
  color: #545454;
}

.blog .blog-comments .comment h5 .reply i {
  font-size: 20px;
}

.blog .blog-comments .comment time {
  display: block;
  font-size: 14px;
  color: #6e6e6e;
  margin-bottom: 5px;
}

.blog .blog-comments .comment.comment-reply {
  padding-left: 40px;
}

.blog .blog-comments .reply-form {
  margin-top: 30px;
  padding: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog .blog-comments .reply-form h4 {
  font-weight: bold;
  font-size: 22px;
}

.blog .blog-comments .reply-form p {
  font-size: 14px;
}

.blog .blog-comments .reply-form input {
  border-radius: 4px;
  padding: 10px 10px;
  font-size: 14px;
}

.blog .blog-comments .reply-form input:focus {
  box-shadow: none;
  border-color: #f5bab0;
}

.blog .blog-comments .reply-form textarea {
  border-radius: 4px;
  padding: 10px 10px;
  font-size: 14px;
}

.blog .blog-comments .reply-form textarea:focus {
  box-shadow: none;
  border-color: #f5bab0;
}

.blog .blog-comments .reply-form .form-group {
  margin-bottom: 25px;
}

.blog .blog-comments .reply-form .btn-primary {
  border-radius: 4px;
  padding: 10px 20px;
  border: 0;
  background-color: #545454;
}

.blog .blog-comments .reply-form .btn-primary:hover {
  background-color: #616161;
}

.blog .blog-pagination {
  color: #878787;
}

.blog .blog-pagination ul {
  display: flex;
  padding: 0;
  margin: 0;
  list-style: none;
}

.blog .blog-pagination li {
  margin: 0 5px;
  transition: 0.3s;
}

.blog .blog-pagination li a {
  color: #545454;
  padding: 7px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog .blog-pagination li.active, .blog .blog-pagination li:hover {
  background: #e96b56;
}

.blog .blog-pagination li.active a, .blog .blog-pagination li:hover a {
  color: #fff;
}

.blog .sidebar {
  padding: 20px;
  /*margin: 0 0 60px 0px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  background: #91dfcf;
  background: #F5F5FA;
  border-radius: 10px;*/
}
/*.blog .sidebar hr{
  height: 4px;
  box-shadow: 3px 5px 5px #0C0C0F;
  color: #ff8f00;
  margin-bottom: 40px;
}*/

.blog .sidebar .sidebar-title {
  font-size: 20px;
  font-weight: 700;
  padding: 0 0 0 0;
  margin: 0 0 15px 0;
  color: #545454;
  position: relative;
}

.blog .sidebar .sidebar-item {
  margin-bottom: 0px;
}

.blog .sidebar .search-form form {
  background: #fff;
  border: 1px solid #ddd;
  padding: 3px 10px;
  position: relative;
}

.blog .sidebar .search-form form input[type="text"] {
  border: 0;
  padding: 4px;
  border-radius: 4px;
  width: calc(100% - 40px);
}

.blog .sidebar .search-form form button {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 15px;
  margin: -1px;
  background: #e96b56;
  color: #fff;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
  line-height: 0;
}

.blog .sidebar .search-form form button i {
  line-height: 0;
}

.blog .sidebar .search-form form button:hover {
  background: #eb7b68;
}

.blog .sidebar .categories ul {
  list-style: none;
  padding: 0;
}

.blog .sidebar .categories ul li + li {
  padding-top: 10px;
}

.blog .sidebar .categories ul a {
  color: #545454;
  transition: 0.3s;
}

.blog .sidebar .categories ul a:hover {
  color: #e96b56;
}

.blog .sidebar .categories ul a span {
  padding-left: 5px;
  color: #aaaaaa;
  font-size: 14px;
}

.blog .sidebar .recent-posts .post-item + .post-item {
  margin-top: 15px;
}

.blog .sidebar .recent-posts img {
  width: 50px;
  float: left;
}

.blog .sidebar .recent-posts h4 {
  font-size: 15px;
  margin-left: 70px;
  font-weight: bold;
}

.blog .sidebar .recent-posts h4 a {
  color: #545454;
  transition: 0.3s;
}

.blog .sidebar .recent-posts h4 a:hover {
  color: #e96b56;
}

.blog .sidebar .recent-posts time {
  display: block;
  margin-left: 70px;
  font-style: italic;
  font-size: 14px;
  color: #aaaaaa;
}

.blog .sidebar .tags {
  margin-bottom: -10px;
}

.blog .sidebar .tags ul {
  list-style: none;
  padding: 0;
}

.blog .sidebar .tags ul li {
  display: inline-block;
}

.blog .sidebar .tags ul a {
  color: #949494;
  font-size: 14px;
  padding: 6px 14px;
  margin: 0 6px 8px 0;
  border: 1px solid white;
  display: inline-block;
  transition: 0.3s;
}

.blog .sidebar .tags ul a:hover {
  color: #fff;
  border: 1px solid #e96b56;
  background: #e96b56;
}

.blog .sidebar .tags ul a span {
  padding-left: 5px;
  color: #ededed;
  font-size: 14px;
}

.blog .sidebar .sidebar-item .post-item a{
  font-weight: 600;
  font-style: normal;
  font-size: 1rem;
}

.blog .sidebar .entry-date{
  float: right;
}

.blog .sidebar .entry-date span {
  color: #777777;
  font-size: 14px;
  display: inline-block;
  line-height: 1;
}

.blog .sidebar .entry-date i {
  font-size: 14px;
  margin-right: 8px;
  margin-left: 14px;
  line-height: 0;
}

/*Blog movile*/
@media (max-width: 960px){
  .blog .entry .entry-meta ul {
    display: block;
    margin: 20px;
  }

  .blog .entry .entry-meta ul li + li{
    padding: 10px 0px 0px 0px;
  }

  .blog .sidebar .recent-posts img {
    width: 100px;
    float: none;
  }

  .blog .sidebar .recent-posts h4 {
    margin-left: 0px;
  }

  .blog .sidebar .recent-posts time {
    margin-left: 0px;
  }

  .blog .sidebar .recent-posts .post-item .docufrag{
    margin-top: 10px;
  }


}


/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #404040;
  padding: 0 0 30px 0;
  color: #fff;
  font-size: 14px;
}

#footer .footer-newsletter {
  padding: 50px 0;
  background: #404040;
}

#footer .footer-newsletter h4 {
  font-size: 24px;
  margin: 0 0 20px 0;
  padding: 0;
  line-height: 1;
  font-weight: 600;
}

#footer .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 50px;
}

#footer .footer-newsletter form input[type="email"] {
  border: 0;
  padding: 8px;
  width: calc(100% - 140px);
}

#footer .footer-newsletter form input[type="submit"] {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 30px;
  margin: 3px;
  background: #e96b56;
  color: #fff;
  transition: 0.3s;
  border-radius: 50px;
}

#footer .footer-newsletter form input[type="submit"]:hover {
  background: #e6573f;
}

#footer .footer-top {
  background: #3b3b3b;
  border-top: 1px solid #474747;
  border-bottom: 1px solid #474747;
  padding: 60px 0 10px 0;
}

#footer .footer-top .footer-info {
  margin-bottom: 30px;
}

#footer .footer-top .footer-info h3 {
  font-size: 18px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
}

#footer .footer-top .footer-info p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Raleway", sans-serif;
  color: #fff;
}

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #545454;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
  background: #e96b56;
  color: #fff;
  text-decoration: none;
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
  text-align: center;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  /*padding: 0;
  margin: 0;*/
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #ec7f6d;
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #fff;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  color: #e96b56;
}

#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}

#footer .footer-top .footer-contact p {
  line-height: 26px;
}

#footer .copyright {
  text-align: center;
  padding-top: 10px;
  font-size: 13px;
}

#footer .credits {
  padding-top: 20px;
  text-align: center;
  font-size: 13px;
  color: #fff;
}

#footer .footer-top .negative {
  filter: brightness(0) invert(1);
  /* Opcional: ajustes para responsividad y apariencia */
  /*max-height: 80px;
  height: auto;*/
}

#footer .footer-top img{
  max-width: 80%;
  height: auto;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #FF8D00;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #ee8b7a;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}


/*--------------------------------------------------------------
# Responsive Page Inicio
--------------------------------------------------------------*/

@media (max-width: 540px) {

/*--------------------------------------------------------------
# Responsive header
--------------------------------------------------------------*/ 
.hero {
  min-height: 0;
}

.titulo .logos img{
  width: 50%;
  min-height: auto;

}

.txt-titulo {
  text-align: center;
  padding-top: 20px;
}

/*--------------------------------------------------------------
# Responsive que es el Observatorio
--------------------------------------------------------------*/  
.img-opp .img-fluid {
  max-width: 50%;
  height: auto;
}

/*--------------------------------------------------------------
# Responsive Politicas
--------------------------------------------------------------*/
  #politicas .img-xs {
    max-width: 50%;
    height: auto;
  }
  .pppi {
    color: #c70a75;
    text-align: center;
  }
  .ppev {
    color: #fc8c00;
    text-align: center;
  }
  .pphc {
    color: #7abd05;
    text-align: center;
  }
  .ppd{
    color: #820099;
    text-align: center;
  } 

/*--------------------------------------------------------------
# Responsive Destacado
--------------------------------------------------------------*/

  #destacado .widthframe {
    width: 400px;
    height: 650px;
  } 

/*--------------------------------------------------------------
# Responsive Footer
--------------------------------------------------------------*/
  #footer .footer-top {
    padding: 30px 0 10px 0;
  }
  #footer .footer-top .footer-info {
    margin: 30px 0px;
  }
  #footer .footer-top .footer-links {
    margin: 30px 0px;
    text-align: center;
  }

  #footer .footer-top .footer-links ul {
    list-style: none;
  }

  #footer .footer-top .footer-contact {
    margin-top: 30px;
    text-align: center;
  }

  #footer .footer-top img{
    max-width: 60%;
    height: auto;
  }

}

/*--------------------------------------------------------------
# PAGE PPEV
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# objetivos
--------------------------------------------------------------*/

.feature-cards-wrapper {
  margin-top: -40px;
  padding-bottom: 40px;
  position: relative;
  z-index: 10;
}

.feature-cards-wrapper .feature-card {
  background: var(--surface-color);
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  height: 100%;
  transition: all 0.3s ease;
}

.feature-cards-wrapper .feature-card:hover,
.feature-cards-wrapper .feature-card.active {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.feature-cards-wrapper .feature-card.active {
  background: var(--surface-color);
  border-left: 4px solid var(--accent-color);
}

.feature-cards-wrapper .feature-card.active .feature-icon {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.feature-cards-wrapper .feature-card .feature-icon {
  width: 60px;
  height: 60px;
  background: color-mix(in srgb, var(--heading-color), transparent 90%);
  /*color: var(--heading-color);*/
  color: #FF8D00;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  transition: all 0.3s ease;
}

.feature-cards-wrapper .feature-card .feature-content {
  flex: 1;
}

.feature-cards-wrapper .feature-card .feature-content h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  font-weight: 700;
}

.feature-cards-wrapper .feature-card .feature-content p {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 0;
}

.core-values {
  /*margin-top: 30px;*/
}

.core-values h3 {
  font-size: 1.8rem;
  font-weight: 700;
}

.core-values .value-card {
  background-color: var(--surface-color);
  padding: 30px 20px;
  border-radius: 10px;
  text-align: center;
  height: 100%;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.core-values .value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.core-values .value-card .value-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  margin-bottom: 20px;
}

.core-values .value-card .value-icon i {
  font-size: 32px;
  /*color: var(--accent-color);*/
  color: #FF8D00;
}

.core-values .value-card h4 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  font-weight: 600;
}

.core-values .value-card p {
  font-size: 0.95rem;
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Faculty  Staff Section
--------------------------------------------------------------*/
.faculty--staff .faculty-search {
  background-color: var(--surface-color);
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
  margin-bottom: 2rem;
}

.faculty--staff .faculty-search .input-group .form-control {
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 0.8rem 1.2rem;
  font-size: 1rem;
  color: var(--default-color);
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
}

.faculty--staff .faculty-search .input-group .form-control::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.faculty--staff .faculty-search .input-group .form-control:focus {
  box-shadow: none;
  border-color: color-mix(in srgb, var(--accent-color), transparent 40%);
}

.faculty--staff .faculty-search .input-group .search-btn {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border: none;
  padding: 0 1.5rem;
  transition: all 0.3s ease;
}

.faculty--staff .faculty-search .input-group .search-btn:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 15%);
}

.faculty--staff .faculty-search .search-filters {
  gap: 0.8rem;
}

.faculty--staff .faculty-search .search-filters .filter-item {
  padding: 0.4rem 1rem;
  border-radius: 30px;
  font-size: 0.9rem;
  cursor: pointer;
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  transition: all 0.3s ease;
}

.faculty--staff .faculty-search .search-filters .filter-item:hover {
  background-color: #e9e9e9;
}

.faculty--staff .faculty-search .search-filters .filter-item.active {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.faculty--staff .faculty-grid .faculty-card {
  background-color: var(--surface-color);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
}

.faculty--staff .faculty-grid .faculty-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.1);
}

.faculty--staff .faculty-grid .faculty-card:hover .faculty-image .social-links {
  opacity: 1;
}

.faculty--staff .faculty-grid .faculty-card .faculty-image {
  position: relative;
  overflow: hidden;
}

.faculty--staff .faculty-grid .faculty-card .faculty-image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.faculty--staff .faculty-grid .faculty-card .faculty-image .social-links {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  padding: 1.5rem 1rem 0.5rem;
  opacity: 0;
  transition: all 0.3s ease;
  display: flex;
  gap: 0.8rem;
  justify-content: center;
}

.faculty--staff .faculty-grid .faculty-card .faculty-image .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--contrast-color);
  color: var(--accent-color);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.faculty--staff .faculty-grid .faculty-card .faculty-image .social-links a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.faculty--staff .faculty-grid .faculty-card .faculty-info {
  padding: 1.5rem;
}

.faculty--staff .faculty-grid .faculty-card .faculty-info h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.faculty--staff .faculty-grid .faculty-card .faculty-info .position {
  color: var(--accent-color);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.faculty--staff .faculty-grid .faculty-card .faculty-info .department {
  font-size: 0.85rem;
  margin-bottom: 1rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.faculty--staff .faculty-grid .faculty-card .faculty-info .research-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1rem;
}

.faculty--staff .faculty-grid .faculty-card .faculty-info .research-tags span {
  font-size: 0.75rem;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: color-mix(in srgb, var(--accent-color), black 20%);
}

.faculty--staff .faculty-grid .faculty-card .faculty-info .profile-link {
  display: inline-block;
  padding: 0.4rem 1rem;
  border: 1px solid var(--accent-color);
  border-radius: 30px;
  font-size: 0.85rem;
  transition: all 0.3s ease;
  color: var(--accent-color);
}

.faculty--staff .faculty-grid .faculty-card .faculty-info .profile-link:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.faculty--staff .pagination-container .pagination .page-item {
  margin: 0 0.2rem;
}

.faculty--staff .pagination-container .pagination .page-item .page-link {
  border: none;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--default-color);
  transition: all 0.3s ease;
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
}

.faculty--staff .pagination-container .pagination .page-item .page-link:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.faculty--staff .pagination-container .pagination .page-item.active .page-link {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.faculty--staff .pagination-container .pagination .page-item.disabled .page-link {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  background-color: transparent;
}

@media (max-width: 768px) {
  .faculty--staff .faculty-grid .faculty-card .faculty-image .social-links {
    opacity: 1;
  }

  .faculty--staff .search-filters .filter-item {
    font-size: 0.8rem;
    padding: 0.3rem 0.8rem;
  }
}
