/* =========================================
   NMPT Tudástár Doboz (Knowledge Box)
   ========================================= */

.nmpt-knowledge-box {
  margin-top: 3rem;
  margin-bottom: 3rem;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.15); /* Finom keret */
  border-radius: 12px; /* Lekerekített sarkok */
  background-color: rgba(150, 150, 150, 0.3); /* Sötét, áttetsző háttér */
  backdrop-filter: blur(5px); /* Opcionális: homályosítja a hátteret mögötte */
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2); /* Kiemelés árnyékkal */
}

.nmpt-knowledge-header {
  margin-top: 0;
  margin-bottom: 1.2rem;
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 0.8rem;
}

.nmpt-header-icon {
  margin-right: 12px;
  font-size: 2rem;
  color: var(--co-shade2);
}

.nmpt-knowledge-desc {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  opacity: 0.9;
  line-height: 1.6;
}

.nmpt-knowledge-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.nmpt-knowledge-item {
  margin-bottom: 1rem;
  display: flex;
  align-items: flex-start; /* Ha többsoros a link, az ikon maradjon felül */
  transition: transform 0.2s ease;
}

.nmpt-knowledge-item:hover {
  transform: translateX(5px); /* Kis mozgás rámutatáskor */
}

.nmpt-knowledge-item:last-child {
  margin-bottom: 0;
}

.nmpt-item-icon {
  color: var(--co-shade2);
  margin-right: 12px;
  margin-top: 0.4rem;
  font-size: 1.8rem;
  min-width: 24px; /* Hogy mobilon ne nyomódjon össze */
  transform: translateY(2px); /* Optikai igazítás a szöveghez */
}

.nmpt-knowledge-item a {
  text-decoration: none;
  color: #fff;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s;
}

.nmpt-knowledge-item a:hover {
  border-bottom: 1px solid var(--co-shade1);
}
