/* Contenedor principal */
.on-the-gray {
  margin: 0;
  padding: 0;
}

/* Lista de tabs */
.on-the-gray ul.quicktabs-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap; /* evita que se rompa en pantallas pequeñas */
  gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Cada tab */
.on-the-gray ul.quicktabs-tabs li {
  list-style: none;
}

/* Enlace del tab */
.on-the-gray .quicktabs-tabs > li > a {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 20px;
  background-color: #c5cefb;
  color: #41589b;
  text-decoration: none;
  font-weight: bold;
  border-radius: 25px;
  transition: all 0.3s ease;
}

/* Hover y activo */
.on-the-gray .quicktabs-tabs > li > a:hover,
.on-the-gray .quicktabs-tabs > li.active > a {
  background-color: #41589b;
  color: #ffffff;
}

/* Contenido del tab */
.on-the-gray .quicktabs-tabpage {
  margin: 0;
  padding: 0;
  width: 100%;
}

/* Footer del bloque */
.on-the-gray .block-quicktabs .view-footer {
  position: relative;
  top: -30px;
  left: 12px;
  font-weight: bold;
}

/* Responsive */
@media (max-width: 768px) {
  .on-the-gray ul.quicktabs-tabs {
    flex-direction: column;
    gap: 8px;
  }

  .on-the-gray .quicktabs-tabs > li > a {
    width: 100%;
  }
}