/* Bloque de posología */
.nutri-dosage-block {
  margin: 1.5rem 0;
}

.nutri-dosage-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.nutri-dosage-item {
  flex: 1 1 30%;
  min-width: 180px;
  text-align: center;
  background: #fff;
  border: 1px solid #dfe4ea;
  border-radius: 8px;
  padding: 0.8rem 1rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.2s ease;
}

.nutri-dosage-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

.nutri-dosage-title {
  display: block;
  font-size: 0.85rem;
  color: #0b3557;
  opacity: 0.8;
  margin-bottom: 2px;
}

.nutri-dosage-item strong {
  font-size: 1rem;
  font-weight: 600;
  color: #0b3557;
}
