/* Poner la barra del menú por encima del slider (si desaparece solo en Inicio) */
.uk-navbar-container {
  position: relative;
  z-index: 2000;
}

/* Fondo blanco y sombra suave a la barra del menú */
.uk-navbar-container {
  background: #ffffff !important;
  box-shadow: 0 4px 18px rgba(0,0,0,.06);
  border-bottom: 1px solid rgba(0,0,0,.06);
}

/* (opcional) ocultar botones sociales dentro de artículos */
.view-article .article-social-share { display: none !important; }

/* Contenedor en grid */
.com-contact-category__items {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

/* Cada tarjeta */
.com-contact-category__item {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.com-contact-category__item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}

/* Foto */
.com-contact-category__item img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 12px;
  border: 3px solid #2c67b1;
}

/* Nombre */
.com-contact-category__item h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1d4c8d;
  margin: 0 0 4px 0;
}

/* Cargo */
.com-contact-category__item .contact-position {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 6px;
}

/* Correo */
.com-contact-category__item .contact-email a {
  color: #2c67b1;
  text-decoration: none;
  font-weight: 500;
}
.com-contact-category__item .contact-email a:hover {
  text-decoration: underline;
}
