/* SECCION */
.tools-section {
  padding: 40px 20px;
  background: #f3f3f3;
}

/* GRID DE TARJETAS */
.tools-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

/* TARJETA */
.tool-card {
  display: flex;
  align-items: center;
  gap: 25px;
  padding: 30px;
  background: #fff;
  border: 2px solid #3b6edc;
  border-radius: 16px;
  text-decoration: none;
  color: #000;
  position: relative;
  min-height: 200px;
}

/* IMAGEN */
.tool-icon img {
  width: 120px;
  height: auto;
  object-fit: contain;
}

/* CONTENIDO */
.tool-content {
  flex: 1;
}

/* TITULO */
.tool-content h4 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 10px;
}

/* TEXTO */
.tool-content p {
  font-size: 16px;
  line-height: 1.6;
}

/* BOTON CIRCULAR */
.tool-card::after {
  content: "\1F5CE";
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 48px;
  height: 48px;
  background: #3b6edc;
  color: #fff;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

/* HOVER */
.tool-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.node__submitted {
	display:none;
}