/* =======================================
   AQUALAB - Comparación con el mundo
   ======================================= */

.hh-world {
  margin-top: 2rem;
}

.hh-world__title {
  color: #00a5df;              /* igual que .hh-cat__title */
  font-weight: 700;
  font-size: 1.4rem;
  margin-bottom: 0.25rem;
}

.hh-world__subtitle {
  font-size: 0.95rem;
  color: #5f6b7b;              /* igual que .hh-cat__subtitle */
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1.5rem;
}

/* Grid de cards */
.hh-world__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

/* Desktop / pantallas grandes: dos columnas */
@media (min-width: 992px) {
  .hh-world__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* ---------- CARD (mismo cascarón que .hh-cat-card) ---------- */

.hh-world-card {
  background-color: #eff8fd;               /* igual .hh-cat-card */
  border-radius: 1.5rem;
  border: 3px solid #e1edf5;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  padding: 1.5rem 1.5rem 1.75rem;

  display: flex;
  align-items: center;
  gap: 1.25rem;

  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hh-world-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

/* Mobile: card grande, centrada, imagen arriba */
@media (max-width: 575.98px) {
  .hh-world-card {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding: 1.75rem 1.2rem 1.9rem;
  }
}

/* Imagen redonda tipo avatar de continente */
.hh-world-card__image-wrapper {
  flex-shrink: 0;
  width: 84px;
  height: 84px;
  border-radius: 999px;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hh-world-card__image {
  width: 64px;
  height: 64px;
  object-fit: contain;
}

/* Texto */
.hh-world-card__content {
  flex: 1;
  min-width: 0;
}

.hh-world-card__title {
  font-weight: 700;
  color: #02558b;               /* igual que .hh-cat-card__title */
  margin-bottom: 0.4rem;
  font-size: 1.2rem;
  text-align: center;
}

.hh-world-card__delta {
  font-size: 1rem;
  line-height: 1.45;
  margin: 0;
}

/* Colores para más / menos consumo */
.hh-world-card__delta--more {
  color: #ff6e6e;
  font-weight: 500;
  text-align: center;
}

b.hh-world-card__delta--more {
  color: #ff6e6e;
  font-weight: 700;
  text-align: center;
}

.hh-world-card__delta--less {
  color: #6bc970;
  font-weight: 500;
  text-align: center;
}

b.hh-world-card__delta--less {
  color: #6bc970;
  font-weight: 700;
  text-align: center;
}
